* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary-color: #00005C;
--secondary-color: #fc744a;
--text-color: #1f2937;
--text-light: #6b7280;
--bg-light: #f9fafb;
--border-color: #e5e7eb;
--code-bg: #1e293b;
--code-text: #e2e8f0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: var(--text-color);
background-color: #ffffff;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
color: white;
padding: 100px 20px;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
font-weight: 700;
}
.subtitle {
font-size: 1.5rem;
margin-bottom: 2rem;
opacity: 0.95;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: transform 0.2s, box-shadow 0.2s;
display: inline-block;
}
.btn-primary {
background: white;
color: var(--primary-color);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.2);
color: white;
border: 2px solid white;
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.3);
}
/* Features Section */
.features {
padding: 80px 20px;
background: var(--bg-light);
}
.features h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--text-color);
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: var(--text-color);
}
.feature-card p {
color: var(--text-light);
}
/* Installation Section */
.installation {
padding: 80px 20px;
}
.installation h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}
.steps {
display: flex;
flex-direction: column;
gap: 3rem;
}
.step {
display: flex;
gap: 2rem;
align-items: flex-start;
}
.step-number {
background: var(--primary-color);
color: white;
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: bold;
flex-shrink: 0;
}
.step-content h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.step-content p {
margin-bottom: 1rem;
color: var(--text-light);
}
pre {
background: var(--code-bg);
color: var(--code-text);
padding: 1rem;
border-radius: 8px;
overflow-x: auto;
margin: 1rem 0;
}
code {
font-family: 'Monaco', 'Courier New', monospace;
font-size: 0.9rem;
}
pre code {
background: transparent;
padding: 0;
}
/* OAuth Setup Section */
.oauth-setup {
padding: 80px 20px;
background: var(--bg-light);
}
.oauth-setup h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}
.oauth-steps ol {
max-width: 800px;
margin: 0 auto;
list-style-position: inside;
}
.oauth-steps li {
background: white;
padding: 1.5rem;
margin-bottom: 1rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.oauth-steps li strong {
display: block;
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: var(--primary-color);
}
.oauth-steps li p {
color: var(--text-light);
margin-bottom: 0.5rem;
}
.oauth-steps ul {
margin-left: 1.5rem;
margin-top: 0.5rem;
}
.oauth-steps code {
background: var(--bg-light);
padding: 2px 6px;
border-radius: 4px;
color: var(--primary-color);
}
.oauth-steps a {
color: var(--primary-color);
text-decoration: none;
}
.oauth-steps a:hover {
text-decoration: underline;
}
/* Usage Section */
.usage {
padding: 80px 20px;
}
.usage h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}
.examples {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.example {
background: var(--bg-light);
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid var(--primary-color);
}
.example h3 {
margin-bottom: 1rem;
color: var(--text-color);
}
.example p {
color: var(--text-light);
font-size: 0.9rem;
margin-top: 0.5rem;
}
/* Template Examples */
.template-examples {
padding: 80px 20px;
background: var(--bg-light);
}
.template-examples h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
}
.template-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.template-card {
background: white;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.template-card h3 {
margin-bottom: 1rem;
color: var(--text-color);
}
.template-note {
text-align: center;
color: var(--text-light);
font-size: 0.9rem;
}
.template-note code {
background: var(--bg-light);
padding: 2px 6px;
border-radius: 4px;
color: var(--primary-color);
}
/* Footer */
footer {
background: var(--text-color);
color: white;
padding: 40px 20px;
text-align: center;
}
.footer-links {
margin-top: 1rem;
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
}
.footer-links a {
color: white;
text-decoration: none;
opacity: 0.8;
transition: opacity 0.2s;
}
.footer-links a:hover {
opacity: 1;
}
/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.subtitle {
font-size: 1.2rem;
}
.step {
flex-direction: column;
}
.template-grid {
grid-template-columns: 1fr;
}
}