/* ============================================
   DartMate Website - Styles
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0f;
    --bg-surface: #12121a;
    --bg-card: #1a1a28;
    --bg-card-hover: #222236;
    --border: #2a2a3e;
    --border-light: #3a3a52;
    --text: #e8e8f0;
    --text-muted: #8888a4;
    --text-dim: #5c5c78;
    --red: #e74c3c;
    --red-glow: rgba(231, 76, 60, 0.3);
    --orange: #f39c12;
    --green: #2ecc71;
    --gold: #f1c40f;
    --accent-gradient: linear-gradient(135deg, #e74c3c, #f39c12);
    --accent-gradient-text: linear-gradient(135deg, #ff6b5a, #ffb347);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Canvas Background --- */
#dartboard-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem;
    z-index: 101;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent-gradient);
    color: white !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--border-light);
    background: rgba(255,255,255,0.03);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--text-muted);
    background: rgba(255,255,255,0.05);
}

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-xl { padding: 18px 36px; font-size: 1.05rem; border-radius: 14px; }

/* --- Hero --- */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--text);
}

.hero-stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 500;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* --- Phone Mockup --- */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a28;
    border-radius: 36px;
    border: 3px solid #333;
    padding: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(231,76,60,0.08);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0d0d14;
    border-radius: 24px;
    overflow: hidden;
}

.phone-screen-content {
    padding: 20px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mock-header {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.mock-dartboard {
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #1a1a1a 0deg 18deg,
        #c0392b 18deg 36deg,
        #1a1a1a 36deg 54deg,
        #27ae60 54deg 72deg,
        #1a1a1a 72deg 90deg,
        #c0392b 90deg 108deg,
        #1a1a1a 108deg 126deg,
        #27ae60 126deg 144deg,
        #1a1a1a 144deg 162deg,
        #c0392b 162deg 180deg,
        #1a1a1a 180deg 198deg,
        #27ae60 198deg 216deg,
        #1a1a1a 216deg 234deg,
        #c0392b 234deg 252deg,
        #1a1a1a 252deg 270deg,
        #27ae60 270deg 288deg,
        #1a1a1a 288deg 306deg,
        #c0392b 306deg 324deg,
        #1a1a1a 324deg 342deg,
        #27ae60 342deg 360deg
    );
    position: relative;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.mock-dartboard::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #c0392b;
    border: 3px solid #27ae60;
}

.mock-scores {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.mock-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--bg-card);
    border-radius: 8px;
}

.mock-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mock-score {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1.3rem;
}

.mock-input {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: auto;
}

.mock-key {
    padding: 10px 0;
    text-align: center;
    background: var(--bg-card);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.mock-key.active {
    background: var(--accent-gradient);
    color: white;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231,76,60,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* --- Sections --- */
.section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(231, 76, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--red);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* --- Games Carousel --- */
.games-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.game-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.game-card-number {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 12px;
}

.game-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.game-card-tag {
    display: inline-block;
    margin-top: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(231, 76, 60, 0.1);
    color: var(--red);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* --- AI Section --- */
.ai-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.ai-text {
    flex: 1;
}

.ai-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ai-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.ai-features-list li svg {
    color: var(--green);
    flex-shrink: 0;
}

.ai-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-orb {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: orb-spin 12s linear infinite;
}

.ai-orb-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    border-color: rgba(231, 76, 60, 0.2);
    animation-duration: 12s;
}

.ai-orb-ring:nth-child(2) {
    width: 75%;
    height: 75%;
    border-color: rgba(243, 156, 18, 0.2);
    animation-duration: 8s;
    animation-direction: reverse;
}

.ai-orb-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    border-color: rgba(46, 204, 113, 0.2);
    animation-duration: 6s;
}

@keyframes orb-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ai-orb-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(231,76,60,0.15);
    animation: orb-pulse 3s ease-in-out infinite;
}

@keyframes orb-pulse {
    0%, 100% { box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(231,76,60,0.15); }
    50% { box-shadow: 0 0 60px var(--red-glow), 0 0 120px rgba(231,76,60,0.25); }
}

/* --- Tournament Bracket --- */
.bracket-demo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    overflow-x: auto;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.bracket-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bracket-match {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px;
    width: 160px;
}

.bracket-match.final {
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.1);
}

.bracket-player {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.2s;
}

.bracket-player.winner {
    color: var(--text);
    background: rgba(231, 76, 60, 0.1);
    font-weight: 600;
}

.bracket-champion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
}

.trophy {
    font-size: 2.5rem;
    animation: trophy-bounce 2s ease-in-out infinite;
}

@keyframes trophy-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.champion-name {
    font-weight: 800;
    font-size: 1.1rem;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tournament-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.tournament-feature {
    text-align: center;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.tournament-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tournament-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- Stats Showcase --- */
.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card-big {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.stat-card-header h4 {
    font-weight: 700;
}

.stat-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(231, 76, 60, 0.1);
    color: var(--red);
}

.heatmap-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.heatmap-dartboard {
    width: 200px;
    height: 200px;
}

.heat-spot {
    animation: heat-pulse 3s ease-in-out infinite;
}

.heat-spot:nth-child(even) {
    animation-delay: 1.5s;
}

@keyframes heat-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.stat-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.stats-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card-small {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    flex: 1;
}

.stat-card-small h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-card-small p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.stat-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 48px;
    margin-bottom: 14px;
}

.stat-mini-chart .bar {
    flex: 1;
    height: var(--h);
    background: var(--border);
    border-radius: 3px;
    transition: all 0.3s;
}

.stat-mini-chart .bar.highlight {
    background: var(--accent-gradient);
}

.stat-ring-chart {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 14px;
}

.ring-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.95rem;
}

.stat-number-highlight {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
}

.big-stat {
    font-family: var(--mono);
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

/* --- Ceremonies --- */
.ceremony-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ceremony-text {
    max-width: 560px;
    margin-bottom: 48px;
}

.ceremony-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 16px;
}

.ceremony-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.ceremony-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s ease;
}

.ceremony-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-md);
}

.ceremony-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.ceremony-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.ceremony-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Download --- */
.download {
    padding: 80px 0 120px;
}

.download-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(231,76,60,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.download-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.download-card > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
    position: relative;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 20px;
}

.download-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    position: relative;
}

/* --- Footer --- */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

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

.footer-brand .logo-text {
    font-weight: 800;
    font-size: 1.2rem;
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 0.88rem;
    margin-top: 8px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h5 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-dim);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .games-carousel { grid-template-columns: repeat(2, 1fr); }
    .stats-showcase { grid-template-columns: 1fr; }
    .ai-content { flex-direction: column; gap: 48px; }
    .ai-text { text-align: center; }
    .ai-features-list { align-items: center; }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 100px 24px 60px;
        text-align: center;
        gap: 40px;
    }

    .hero-content { max-width: 100%; }
    .hero-subtitle { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .nav-toggle {
        display: flex;
    }

    .features-grid { grid-template-columns: 1fr; }
    .games-carousel { grid-template-columns: 1fr; }
    .tournament-features { grid-template-columns: 1fr; }
    .ceremony-cards { grid-template-columns: 1fr; }

    .bracket-demo {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .bracket-round { flex-direction: column; }

    .download-card { padding: 48px 24px; }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links { gap: 40px; }

    .section { padding: 80px 0; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { gap: 16px; }
    .phone-frame { width: 240px; height: 480px; }
}
