/* ==============================================
   SHARED STYLES - Sunday Squad
   ============================================== */

:root {
    --bg: #07090c;
    --bg-2: #0c1118;
    --ink: #f8fafc;
    --muted: #94a3b8;
    --accent: #2dd4bf;
    --accent-2: #f59e0b;
    --stroke: rgba(148, 163, 184, 0.18);
}

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

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(ellipse 80% 60% at 70% -20%, rgba(45, 212, 191, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at -10% 60%, rgba(245, 158, 11, 0.08), transparent),
        var(--bg);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

/* ==============================================
   GRID BACKGROUND
   ============================================== */

.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* ==============================================
   MAIN CONTAINER
   ============================================== */

.page {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 28px 56px;
    position: relative;
    z-index: 1;
}

/* ==============================================
   BRAND
   ============================================== */

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.brand-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.2em;
    color: var(--accent);
}

.brand-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--muted);
}

/* ==============================================
   FOOTER
   ============================================== */

.footer {
    padding: 48px 24px;
    text-align: center;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.footer-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}

.footer-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: var(--stroke);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 0 32px;
}

.social-link {
    color: var(--accent);
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
    opacity: 0.7;
}

/* ==============================================
   MOBILE
   ============================================== */

@media (max-width: 580px) {
    .page {
        padding: 56px 20px 40px;
    }

    .brand-mark {
        font-size: 28px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}
