:root {
    --primary-color: #5865F2;
    --secondary-color: #424752;
    --accent-color: #E67E22;
    --dark-color: #2C2F33;
    --light-color: #F9F9F9;
    --success-color: #57F287;
    --danger-color: #ED4245;
    --text-color: #23272A;
    --text-muted: #72767D;
    --border-color: #E3E5E8;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #4752c4;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary {
    background-color: var(--primary-color);
    color: white;
}

.primary:hover {
    background-color: #4752c4;
    color: white;
}

.secondary {
    background-color: #e9eaec;
    color: var(--secondary-color);
}

.secondary:hover {
    background-color: #dcdee2;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 32px;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.github-link {
    display: flex;
    align-items: center;
}

.github-link i {
    margin-right: 6px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #f5f7fa;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: #eef2ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Commands Section */
.commands {
    padding: 80px 0;
    background-color: #f7f9fc;
}

.commands h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.commands-table {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.command {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid var(--border-color);
}

.command:last-child {
    border-bottom: none;
}

.command-name, .command-desc {
    padding: 20px;
}

.command-name {
    font-weight: 600;
    background-color: #f7f9fc;
    border-right: 1px solid var(--border-color);
}

/* Setup Section */
.setup {
    padding: 80px 0;
    background-color: white;
}

.setup h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.setup-steps {
    max-width: 800px;
    margin: 0 auto 40px;
}

.step {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.setup-code {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #f7f9fc;
    border-radius: var(--border-radius);
    padding: 24px;
}

.setup-code h3 {
    margin-bottom: 16px;
}

.setup-code pre {
    background-color: var(--dark-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
}

/* Deployment Options */
.deployment-options {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #f7f9fc;
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
}

.deployment-options h3 {
    margin-bottom: 20px;
}

.deployment-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.deployment-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.deployment-buttons .btn i {
    font-size: 1.1rem;
}

.readme-link {
    color: var(--text-muted);
    margin-top: 20px;
    font-size: 0.95rem;
}

.readme-link a {
    font-weight: 600;
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta .btn.primary {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn.primary:hover {
    background-color: #f0f0f0;
}

.cta .btn.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta .btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #b9bbbe;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    border-top: 1px solid #3e4146;
    padding-top: 20px;
    text-align: center;
    color: #b9bbbe;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .command {
        grid-template-columns: 1fr;
    }
    
    .command-name {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .deployment-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta .cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
} 