:root {
    --color-bg: #080c14;
    --color-surface: #0d1520;
    --color-accent: #f59e0b;
    --color-accent-2: #fbbf24;
    --color-accent-glow: rgba(245, 158, 11, 0.25);
    --color-accent-2-glow: rgba(251, 191, 36, 0.2);
    --color-accent-blue: #63b3ed;
    --color-text: #e2e8f0;
    --color-text-muted: #64748b;
    --color-border: #1a2235;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
}

/* Gold horizontal rule divider */
.neon-rule {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-2), transparent);
    opacity: 0.35;
    margin: 0;
}

/* Marquee identifier line above logo */
.hero-marquee {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.5em;
    color: var(--color-accent-2);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.75;
    animation: fadeInDown 0.6s ease-out;
}

/* Thin gold accent rule below logo */
.hero-rule {
    width: 100%;
    max-width: 480px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-2), transparent);
    margin: 0 auto 2rem;
    opacity: 0.35;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Hero ── */
.hero {
    text-align: center;
    padding: 3.5rem 2rem 2.5rem;
    background: radial-gradient(ellipse at 50% -10%, rgba(99, 179, 237, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    position: relative;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.logo-icon img {
    width: 460px;
    max-width: 90vw;
    height: auto;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero h1 span {
    display: block;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    letter-spacing: 0.06em;
    color: var(--color-accent-2);
    margin-top: 0.5rem;
    font-family: var(--font-display);
}

.hero-tagline {
    max-width: 680px;
    margin: 0 auto 2.25rem;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    animation: fadeInUp 0.7s ease-out 0.3s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    color: #080c14;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 0.85rem 2.2rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    animation: fadeInUp 0.7s ease-out 0.4s both;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    fill: #080c14;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--color-accent-glow);
}

.poster-preview {
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.poster-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.15);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(99, 179, 237, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.poster-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Community Bar ── */
.community-bar {
    background: rgba(13, 21, 32, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
}

.community-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.community-bar__link--facebook {
    color: #7eaadd;
}
.community-bar__link--facebook:hover { color: #9ec0ee; }

.community-bar__link--guide {
    color: var(--color-accent);
}
.community-bar__link--guide:hover { color: var(--color-accent-2); }

.community-bar__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.community-bar__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
}

.community-bar__divider {
    color: var(--color-text-muted);
    font-size: 1rem;
    user-select: none;
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-accent-2);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 0.3rem 1rem;
    border-radius: 2px;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    letter-spacing: 0.04em;
    color: var(--color-text);
    line-height: 1.1;
}

/* ── Features Section ── */
.features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.75rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-accent);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

.feature-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-accent-2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
}

.sport-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.sport-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(99, 179, 237, 0.12);
    color: var(--color-accent-blue);
    border: 1px solid rgba(99, 179, 237, 0.25);
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
}

/* ── Showcase Section ── */
.showcase {
    padding: 5rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.showcase-grid--reverse {
    direction: rtl;
}
.showcase-grid--reverse > * {
    direction: ltr;
}

.showcase-image {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    letter-spacing: 0.04em;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.showcase-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.showcase-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
}

.showcase-content li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.showcase-content li svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* ── Screenshots Grid ── */
.screenshots-section {
    padding: 5rem 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.screenshot-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.screenshot-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-3px);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    padding: 1rem 1.25rem;
}

.screenshot-caption h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

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

/* ── Why Section ── */
.why-section {
    padding: 5rem 0;
}

.comparison-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 2.5rem;
    max-width: 820px;
    margin: 0 auto;
}

.comparison-title {
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    font-size: 1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.icon-x {
    width: 18px;
    height: 18px;
    fill: #ef4444;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.icon-check {
    width: 18px;
    height: 18px;
    fill: #22c55e;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
}

.highlight-box svg {
    width: 22px;
    height: 22px;
    fill: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.highlight-box p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ── Get Section ── */
.get-section {
    padding: 5rem 0;
}

.store-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 780px;
    margin: 0 auto;
}

.store-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.25s ease;
}

.store-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.store-badge {
    height: 48px;
    width: auto;
    display: block;
}

.store-card p {
    font-size: 0.87rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

.store-search-demo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: var(--color-accent-2);
}

.store-search-demo svg {
    width: 16px;
    height: 16px;
    fill: var(--color-accent);
    flex-shrink: 0;
}

/* ── Footer ── */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(245, 158, 11, 0.15);
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 28px;
    width: auto;
}

footer p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1.25rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-link--facebook { color: #7eaadd; }
.footer-link--facebook:hover { color: #9ec0ee; }
.footer-link--guide { color: var(--color-accent); }
.footer-link--guide:hover { color: var(--color-accent-2); }
.footer-link:hover { color: var(--color-text); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .showcase-grid,
    .screenshots-grid,
    .store-cards {
        grid-template-columns: 1fr;
    }

    .showcase-grid--reverse {
        direction: ltr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .comparison-box {
        padding: 1.5rem;
    }
}

/* ── Animations ── */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
