/* ==================== WORDLE GAME BOT - MODERN BRIGHT THEME ==================== */
/* A clean, professional, and human-centric design. No gradients. No clutter. */

:root {
    /* Colors - Crisp and Professional */
    --primary: #5865F2; /* Discord Blurple */
    --primary-hover: #4752C4;
    --text-main: #1A1A1B;
    --text-muted: #65676B;
    --bg-main: #FFFFFF;
    --bg-alt: #F8F9FA;
    --border: #E4E6EB;
    --success: #2DB85C;
    
    /* Spacing */
    --container-max: 1100px;
    --section-padding: 6rem 0;
}

/* ==================== BASE & RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.5;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== NAVIGATION ==================== */
.nav {
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    z-index: 100;
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 8rem 0;
    text-align: center;
    background: var(--bg-main);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* ==================== BUTTONS ==================== */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-secondary:hover {
    background-color: #f0f2f5;
    border-color: #d8dadf;
}

/* ==================== STATS ==================== */
.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* ==================== FEATURES GRID ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

/* ==================== CONTENT PAGES (Privacy/Terms) ==================== */
.content-header {
    background: var(--bg-alt);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.content-section {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 3rem 0 1.5rem;
    letter-spacing: -0.03em;
}

.content-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    position: relative;
    list-style: disc;
}

.important {
    padding: 1.5rem;
    background: #fff8e1;
    border-radius: 8px;
    border-left: 4px solid #ffca28;
    color: #856404;
    font-weight: 500;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
}