/* ==========================================================
   SUCCESS ESPORTS
   Official Website Stylesheet
   Rebuilt 2026
========================================================== */


/* ==========================================================
   ROOT VARIABLES
========================================================== */

:root {
    --background: #050505;
    --background-alt: #0d0d0d;
    --background-soft: #111111;

    --surface: #151515;
    --surface-hover: #1b1b1b;

    --primary: #ff001f;
    --primary-dark: #b80016;
    --primary-light: #ff4057;

    --white: #ffffff;
    --light: #d9d9d9;
    --gray: #929292;
    --dark-gray: #5f5f5f;

    --border: rgba(255, 255, 255, 0.08);
    --border-bright: rgba(255, 255, 255, 0.14);
    --red-border: rgba(255, 0, 31, 0.35);

    --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    --red-shadow: 0 15px 40px rgba(255, 0, 31, 0.16);

    --transition: 0.3s ease;

    --radius-small: 10px;
    --radius: 18px;
    --radius-large: 28px;

    --max-width: 1280px;
    --header-height: 82px;
}


/* ==========================================================
   RESET
========================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top,
            rgba(255, 0, 31, 0.035),
            transparent 34%
        ),
        var(--background);

    color: var(--white);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

section {
    position: relative;
}

main {
    overflow: hidden;
}

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


/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #090909;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}


/* ==========================================================
   GENERAL LAYOUT
========================================================== */

.section {
    position: relative;
    padding: 120px 5%;
}

.section > * {
    width: min(100%, var(--max-width));
    margin-left: auto;
    margin-right: auto;
}

.section.dark {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.01),
            transparent 20%
        ),
        var(--background-alt);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 16px;

    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.eyebrow {
    margin-bottom: 14px;

    color: var(--primary);

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.wide-text {
    max-width: 950px;
    margin: 0 auto 24px;

    color: var(--light);

    font-size: 1.06rem;
    line-height: 1.9;
    text-align: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 42px;
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 9999;

    width: 100%;
    height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    background: rgba(5, 5, 5, 0.55);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid transparent;

    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(5, 5, 5, 0.96);
    border-bottom-color: var(--border);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}


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

.brand {
    position: relative;
    z-index: 10002;

    display: flex;
    align-items: center;
}

.brand img {
    width: auto;
    height: 58px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 14px rgba(255, 0, 31, 0.16));

    transition:
        transform var(--transition),
        filter var(--transition);
}

.brand:hover img {
    transform: scale(1.04);

    filter:
        drop-shadow(0 0 20px rgba(255, 0, 31, 0.32));
}


/* ==========================================================
   NAVIGATION
========================================================== */

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

.nav-links a {
    position: relative;

    color: var(--white);

    font-size: 0.94rem;
    font-weight: 650;

    transition: color var(--transition);
}

.nav-links a:not(.nav-button)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: width var(--transition);
}

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

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

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 10px 22px;

    background: var(--primary);
    color: var(--white) !important;

    border: 1px solid var(--primary);
    border-radius: 999px;

    box-shadow: 0 0 20px rgba(255, 0, 31, 0.24);

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.nav-button:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(255, 0, 31, 0.25);
}


/* ==========================================================
   MOBILE MENU BUTTON
========================================================== */

.menu-toggle {
    position: relative;
    z-index: 10002;

    display: none;

    width: 48px;
    height: 48px;

    align-items: center;
    justify-content: center;

    background: transparent;
    color: var(--white);

    border: 1px solid var(--border-bright);
    border-radius: 12px;

    font-size: 1.75rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    color: var(--primary);
}


/* ==========================================================
   HERO
========================================================== */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 150px 24px 105px;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255, 0, 31, 0.13),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #090909 0%,
            #050505 65%,
            #080808 100%
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85),
        transparent 92%
    );

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -250px;

    width: 900px;
    height: 500px;

    background: rgba(255, 0, 31, 0.08);

    border-radius: 50%;

    filter: blur(120px);

    transform: translateX(-50%);

    pointer-events: none;
}


/* ==========================================================
   HERO BACKGROUND EFFECTS
========================================================== */

.animated-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 20% 25%,
            rgba(255, 0, 31, 0.09),
            transparent 29%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 0, 31, 0.07),
            transparent 35%
        );

    animation: heroGlow 12s ease-in-out infinite;

    pointer-events: none;
}

.particles {
    position: absolute;
    inset: -100px;

    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.8) 1px,
            transparent 1.5px
        );

    background-size: 145px 145px;

    opacity: 0.11;

    animation: particlesMove 50s linear infinite;

    pointer-events: none;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content {
    position: relative;
    z-index: 5;

    width: min(100%, 980px);
    margin: 0 auto;
}

.hero-logo {
    width: min(270px, 68vw);
    margin: 0 auto 34px;

    filter:
        drop-shadow(0 0 28px rgba(255, 0, 31, 0.24))
        drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));

    animation: logoFloat 6s ease-in-out infinite;
}

.hero h1 {
    margin-bottom: 8px;

    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: -3px;

    text-transform: uppercase;

    text-shadow:
        0 10px 35px rgba(0, 0, 0, 0.55);
}

.hero h2 {
    margin-bottom: 30px;

    color: var(--primary);

    font-size: clamp(1.35rem, 3vw, 2.25rem);
    font-weight: 850;
    letter-spacing: 2px;
    text-transform: uppercase;

    text-shadow:
        0 0 22px rgba(255, 0, 31, 0.25);
}

.hero-text {
    max-width: 780px;
    margin: 0 auto;

    color: var(--light);

    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 17px;

    margin-top: 42px;
}


/* ==========================================================
   BUTTONS
========================================================== */

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 170px;
    min-height: 52px;

    padding: 13px 28px;

    overflow: hidden;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.25px;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn::before {
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.22),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 145%;
}

.btn:hover {
    transform: translateY(-3px);
}

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

    border-color: var(--primary);

    box-shadow:
        0 10px 30px rgba(255, 0, 31, 0.23);
}

.btn.primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);

    box-shadow:
        0 15px 38px rgba(255, 0, 31, 0.29);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.025);
    color: var(--white);

    border-color: rgba(255, 255, 255, 0.28);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: var(--white);
    color: var(--background);

    border-color: var(--white);

    box-shadow:
        0 14px 36px rgba(255, 255, 255, 0.12);
}


/* ==========================================================
   CARDS
========================================================== */

.cards {
    width: min(100%, var(--max-width));
    margin: 58px auto 0;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card {
    position: relative;

    min-height: 100%;

    padding: 34px 30px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        ),
        var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    opacity: 0;

    transition: opacity var(--transition);
}

.card::after {
    content: "";

    position: absolute;
    top: -85px;
    right: -85px;

    width: 170px;
    height: 170px;

    background: rgba(255, 0, 31, 0.08);

    border-radius: 50%;

    filter: blur(30px);

    opacity: 0;

    transition: opacity var(--transition);
}

.card:hover {
    transform: translateY(-8px);

    background: var(--surface-hover);

    border-color: var(--red-border);

    box-shadow:
        var(--shadow),
        var(--red-shadow);
}

.card:hover::before,
.card:hover::after {
    opacity: 1;
}

.card > span {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin-bottom: 22px;

    background: rgba(255, 0, 31, 0.1);
    color: var(--primary);

    border: 1px solid rgba(255, 0, 31, 0.2);
    border-radius: 15px;

    font-size: 1.5rem;
    font-weight: 900;
}

.card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 14px;

    font-size: 1.28rem;
    font-weight: 850;
    line-height: 1.3;
}

.card p {
    position: relative;
    z-index: 2;

    color: var(--light);

    font-size: 0.98rem;
    line-height: 1.8;
}

.card p + p {
    margin-top: 13px;
}

.card strong {
    color: var(--white);
}


/* ==========================================================
   HISTORY SECTION
========================================================== */

#history {
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(255, 0, 31, 0.055),
            transparent 33%
        ),
        var(--background-alt);
}

#history .wide-text {
    max-width: 980px;
}


/* ==========================================================
   STATISTICS GRID
========================================================== */

.stats-grid {
    width: min(100%, 1100px);
    margin: 62px auto 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.stat-card {
    position: relative;

    padding: 32px 20px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    border: 1px solid var(--border);
    border-radius: var(--radius);

    text-align: center;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.stat-card::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -70px;

    width: 140px;
    height: 100px;

    background: rgba(255, 0, 31, 0.14);

    border-radius: 50%;

    filter: blur(35px);

    transform: translateX(-50%);
}

.stat-card:hover {
    transform: translateY(-6px);

    border-color: var(--red-border);

    box-shadow: var(--red-shadow);
}

.stat-card strong {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 950;
    line-height: 1;
}

.stat-card p {
    position: relative;
    z-index: 2;

    color: var(--light);

    font-size: 0.92rem;
    font-weight: 650;
}


/* ==========================================================
   LEADERSHIP SECTION
========================================================== */

#leadership .cards {
    align-items: stretch;
}

#leadership .card {
    border-top: 2px solid rgba(255, 0, 31, 0.42);
}

#leadership .card > span {
    font-size: 1rem;
    letter-spacing: 1px;
}


/* ==========================================================
   RECRUITMENT TIMELINE
========================================================== */

.timeline {
    position: relative;

    width: min(100%, 1180px);
    margin: 65px auto 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.timeline::before {
    content: "";

    position: absolute;
    top: 37px;
    left: 8%;
    right: 8%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 0, 31, 0.5),
            transparent
        );
}

.step {
    position: relative;
    z-index: 2;

    padding: 28px 22px 30px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        ),
        var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    text-align: center;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.step:hover {
    transform: translateY(-7px);

    border-color: var(--red-border);

    box-shadow: var(--red-shadow);
}

.step > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 20px;

    background: var(--primary);
    color: var(--white);

    border: 5px solid var(--background-alt);
    border-radius: 50%;

    box-shadow:
        0 0 0 1px rgba(255, 0, 31, 0.3),
        0 0 22px rgba(255, 0, 31, 0.25);

    font-size: 0.95rem;
    font-weight: 900;
}

.step h3 {
    margin-bottom: 12px;

    font-size: 1.2rem;
    font-weight: 850;
}

.step p {
    color: var(--light);

    font-size: 0.94rem;
    line-height: 1.75;
}


/* ==========================================================
   TWITCH SECTION
========================================================== */

.twitch-panel {
    width: min(100%, 1050px);
    margin: 55px auto 0;

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        ),
        var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow);
}

.twitch-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;
    padding: 8px 13px;

    background: rgba(255, 0, 31, 0.08);
    color: var(--primary);

    border: 1px solid rgba(255, 0, 31, 0.2);
    border-radius: 999px;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.twitch-status::before {
    content: "";

    width: 8px;
    height: 8px;

    background: var(--primary);

    border-radius: 50%;

    box-shadow: 0 0 10px var(--primary);

    animation: livePulse 1.8s ease-in-out infinite;
}

/* Stream status modes */

.twitch-status.is-checking::before {
    background: #f6c344;
    box-shadow: 0 0 10px rgba(246, 195, 68, 0.85);
    animation: livePulse 1.8s ease-in-out infinite;
}

.twitch-status.is-live {
    background: rgba(255, 0, 31, 0.1);
    color: var(--primary);
    border-color: rgba(255, 0, 31, 0.32);
}

.twitch-status.is-live::before {
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
    animation: livePulse 1.2s ease-in-out infinite;
}

.twitch-status.is-live::after {
    content: "LIVE";
    margin-left: 4px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 0.68rem;
    letter-spacing: 1.4px;
}

.twitch-status.is-offline {
    background: rgba(146, 146, 146, 0.08);
    color: var(--gray);
    border-color: rgba(146, 146, 146, 0.22);
}

.twitch-status.is-offline::before {
    background: var(--gray);
    box-shadow: none;
    animation: none;
}

.twitch-status.is-offline::after {
    content: "OFFLINE";
    margin-left: 4px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gray);
    font-size: 0.68rem;
    letter-spacing: 1.4px;
}


.twitch-embed {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #111111,
            #080808
        );

    border: 1px solid var(--border);
    border-radius: 16px;
}

.twitch-embed iframe {
    width: 100% !important;
    height: 100% !important;

    border: 0 !important;
}


/* ==========================================================
   SOCIAL LINKS
========================================================== */

.social-grid {
    width: min(100%, 1050px);
    margin: 55px auto 0;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.social-grid a {
    position: relative;

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        ),
        var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.social-grid a::before {
    content: "";

    position: absolute;
    inset: auto 15% 0;

    height: 2px;

    background: var(--primary);

    transform: scaleX(0);

    transition: transform var(--transition);
}

.social-grid a:hover {
    transform: translateY(-6px);

    background: var(--surface-hover);
    color: var(--primary);

    border-color: var(--red-border);

    box-shadow: var(--red-shadow);
}

.social-grid a:hover::before {
    transform: scaleX(1);
}


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

.footer {
    position: relative;

    padding: 75px 24px 34px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 0, 31, 0.08),
            transparent 34%
        ),
        #030303;

    border-top: 1px solid var(--border);

    text-align: center;
}

.footer::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(560px, 70%);
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--primary),
            transparent
        );

    transform: translateX(-50%);
}

.footer img {
    width: min(220px, 60vw);
    margin: 0 auto 24px;

    filter:
        drop-shadow(0 0 20px rgba(255, 0, 31, 0.2));
}

.footer-tagline {
    margin-bottom: 15px;

    color: var(--primary) !important;

    font-size: 1.25rem !important;
    font-weight: 900 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer p {
    margin: 7px 0;

    color: var(--gray);

    font-size: 0.9rem;
}

.footer p:last-child {
    margin-top: 26px;
    padding-top: 25px;

    border-top: 1px solid var(--border);

    font-size: 0.82rem;
}


/* ==========================================================
   REVEAL ANIMATION
========================================================== */

.reveal {
    opacity: 0;

    transform: translateY(38px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* ==========================================================
   KEYFRAME ANIMATIONS
========================================================== */

@keyframes heroGlow {
    0%,
    100% {
        opacity: 0.75;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes particlesMove {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-145px, -145px, 0);
    }
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.8);
    }
}


/* ==========================================================
   LARGE TABLET RESPONSIVE
========================================================== */

@media (max-width: 1100px) {

    .nav-links {
        gap: 21px;
    }

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

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline::before {
        display: none;
    }

    .social-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


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

@media (max-width: 900px) {

    :root {
        --header-height: 74px;
    }

    .site-header {
        height: var(--header-height);
        padding: 0 22px;
    }

    .brand img {
        height: 49px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;

        z-index: 10001;

        width: min(390px, 88vw);
        height: 100vh;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 26px;

        padding: 100px 40px 50px;

        background:
            radial-gradient(
                circle at top right,
                rgba(255, 0, 31, 0.09),
                transparent 34%
            ),
            rgba(7, 7, 7, 0.985);

        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        border-left: 1px solid var(--border);

        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);

        transition: right 0.36s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;

        font-size: 1.08rem;
    }

    .nav-links a:not(.nav-button)::after {
        bottom: -5px;
    }

    .nav-button {
        width: auto;
        min-width: 155px;
    }

    .hero {
        min-height: 100svh;
        padding-top: 125px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .section {
        padding: 95px 24px;
    }
}


/* ==========================================================
   SMALL TABLET RESPONSIVE
========================================================== */

@media (max-width: 700px) {

    .section-header {
        margin-bottom: 42px;
    }

    .section-header h2 {
        font-size: clamp(2rem, 9vw, 2.75rem);
        letter-spacing: -1px;
    }

    .wide-text {
        font-size: 1rem;
        text-align: left;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card {
        padding: 28px 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .stat-card {
        padding: 26px 14px;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .step {
        text-align: left;
    }

    .step > span {
        margin-bottom: 16px;
    }

    .twitch-panel {
        padding: 14px;
        border-radius: 20px;
    }

    .social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .social-grid a {
        min-height: 82px;
    }
}


/* ==========================================================
   PHONE RESPONSIVE
========================================================== */

@media (max-width: 520px) {

    .site-header {
        padding: 0 16px;
    }

    .brand img {
        height: 44px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        font-size: 1.55rem;
    }

    .nav-links {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero {
        padding:
            120px
            18px
            85px;
    }

    .hero-logo {
        width: min(225px, 72vw);
        margin-bottom: 28px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 15vw, 4rem);
        letter-spacing: -1.5px;
    }

    .hero h2 {
        margin-bottom: 24px;

        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .hero-text {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;

        margin-top: 34px;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }

    .section {
        padding: 80px 18px;
    }

    .eyebrow {
        letter-spacing: 2px;
    }

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

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

    .footer {
        padding-top: 62px;
    }
}


/* ==========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================
   CURRENT LEADERSHIP LAYOUT
========================================================== */

.leadership-cards {
    max-width: 880px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 700px) {
    .leadership-cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   JAVASCRIPT SUPPORT STYLES
========================================================== */

.nav-links a.active-link:not(.nav-button) {
    color: var(--primary);
}

.nav-links a.active-link:not(.nav-button)::after {
    width: 100%;
}

.twitch-fallback {
    width: 100%;
    height: 100%;
    min-height: 320px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;

    padding: 30px;

    color: var(--light);
    text-align: center;
}

@media (max-width: 520px) {
    .twitch-fallback {
        min-height: 220px;
    }
}

/* ==========================================================
   SUCCESS ESPORTS
   MULTI-PAGE + RECRUITMENT FORM UPGRADES
========================================================== */


/* ==========================================================
   PAGE HERO
========================================================== */

.page-hero {
    position: relative;

    min-height: 62vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 145px 24px 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(255, 0, 31, 0.15),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #090909 0%,
            #050505 68%,
            #080808 100%
        );

    border-bottom: 1px solid var(--border);

    text-align: center;
}

.page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.95),
            transparent 100%
        );

    pointer-events: none;
}

.page-hero::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: -250px;

    width: min(900px, 90vw);
    height: 500px;

    background: rgba(255, 0, 31, 0.09);

    border-radius: 50%;

    filter: blur(120px);

    transform: translateX(-50%);

    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 5;

    width: min(100%, 920px);
    margin: 0 auto;
}

.page-hero-content .hero-logo {
    width: min(220px, 60vw);
    margin-bottom: 28px;
}

.page-hero-content h1 {
    margin-bottom: 20px;

    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -2.5px;
    text-transform: uppercase;
}

.page-hero-content > p:last-child {
    max-width: 760px;
    margin: 0 auto;

    color: var(--light);

    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.85;
}


/* ==========================================================
   CARD LINKS
========================================================== */

.card-link {
    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 24px;

    color: var(--primary);

    font-size: 0.92rem;
    font-weight: 850;
    letter-spacing: 0.3px;

    transition:
        gap var(--transition),
        color var(--transition);
}

.card-link::after {
    content: "→";

    font-size: 1.1rem;
}

.card-link:hover {
    gap: 13px;
    color: var(--primary-light);
}


/* ==========================================================
   FOOTER PAGE LINKS
========================================================== */

.footer-page-links {
    width: min(100%, 850px);
    margin: 28px auto 0;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
}

.footer-page-links a {
    position: relative;

    color: var(--light);

    font-size: 0.88rem;
    font-weight: 700;

    transition: color var(--transition);
}

.footer-page-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: var(--primary);

    transition: width var(--transition);
}

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

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


/* ==========================================================
   MISSION VALUES
========================================================== */

.mission-values {
    width: min(100%, 1050px);
    margin: 58px auto 0;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        ),
        var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);

    border-color: var(--red-border);

    box-shadow: var(--red-shadow);
}

.value-item > span {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    background: rgba(255, 0, 31, 0.1);
    color: var(--primary);

    border: 1px solid rgba(255, 0, 31, 0.24);
    border-radius: 14px;

    font-size: 0.9rem;
    font-weight: 900;
}

.value-item h3 {
    margin-bottom: 8px;

    font-size: 1.15rem;
    font-weight: 850;
}

.value-item p {
    color: var(--light);

    font-size: 0.95rem;
    line-height: 1.75;
}


/* ==========================================================
   MISSION STATEMENT FEATURE PANEL
========================================================== */

.mission-statement {
    width: min(100%, 1120px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    gap: 65px;

    padding: 48px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 0, 31, 0.11),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.038),
            rgba(255, 255, 255, 0.012)
        ),
        var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow);
}

.mission-statement > img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;

    filter:
        drop-shadow(0 0 28px rgba(255, 0, 31, 0.2));
}

.mission-statement h2 {
    margin-bottom: 20px;

    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.mission-statement > div > p:not(.eyebrow) {
    max-width: 720px;

    color: var(--light);

    font-size: 1.04rem;
    line-height: 1.85;
}

.mission-statement .hero-buttons {
    justify-content: flex-start;
    margin-top: 30px;
}


/* ==========================================================
   HISTORY TIMELINE
========================================================== */

.history-timeline {
    position: relative;

    width: min(100%, 1050px);
    margin: 60px auto 0;
}

.history-timeline::before {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;
    left: 92px;

    width: 2px;

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--primary) 8%,
            var(--primary) 92%,
            transparent
        );

    opacity: 0.65;
}

.history-entry {
    position: relative;

    display: grid;
    grid-template-columns: 185px minmax(0, 1fr);
    gap: 34px;

    margin-bottom: 36px;
}

.history-entry:last-child {
    margin-bottom: 0;
}

.history-year {
    position: relative;
    z-index: 2;

    width: 112px;
    height: 112px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 37px;

    background: var(--primary);
    color: var(--white);

    border: 8px solid var(--background-alt);
    border-radius: 50%;

    box-shadow:
        0 0 0 1px rgba(255, 0, 31, 0.35),
        0 0 30px rgba(255, 0, 31, 0.25);

    font-size: 1.25rem;
    font-weight: 950;
}

.history-content {
    padding: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        ),
        var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.history-content:hover {
    transform: translateX(5px);

    border-color: var(--red-border);

    box-shadow: var(--red-shadow);
}

.history-content h3 {
    margin-bottom: 14px;

    font-size: 1.45rem;
    font-weight: 900;
}

.history-content p:not(.eyebrow) {
    color: var(--light);

    line-height: 1.8;
}

.history-content p + p {
    margin-top: 15px;
}


/* ==========================================================
   HISTORY QUOTE
========================================================== */

.history-quote {
    width: min(100%, 1050px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: center;
    gap: 58px;

    padding: 46px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        ),
        var(--surface);

    border-left: 4px solid var(--primary);
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.history-quote img {
    width: 100%;
    max-width: 230px;
    margin: 0 auto;

    filter:
        drop-shadow(0 0 25px rgba(255, 0, 31, 0.2));
}

.history-quote blockquote {
    margin-bottom: 22px;

    color: var(--white);

    font-size: clamp(1.3rem, 2.7vw, 2rem);
    font-weight: 800;
    line-height: 1.5;
}

.history-quote div > p:last-child {
    color: var(--light);

    line-height: 1.85;
}


/* ==========================================================
   RECRUITMENT NOTICE
========================================================== */

.recruitment-notice {
    width: min(100%, 850px);
    margin: 45px auto 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    padding: 30px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 0, 31, 0.1),
            transparent 60%
        ),
        var(--surface);

    border: 1px solid var(--red-border);
    border-radius: var(--radius);

    text-align: center;

    box-shadow: var(--red-shadow);
}

.recruitment-notice strong {
    color: var(--primary);

    font-size: 1.05rem;
    font-weight: 900;
}

.recruitment-notice p {
    max-width: 660px;

    color: var(--light);

    line-height: 1.75;
}

.recruitment-notice .btn {
    margin-top: 8px;
}


/* ==========================================================
   APPLICATION FORM CONTAINER
========================================================== */

.application-form {
    width: min(100%, 1050px);
    margin: 55px auto 0;
}

.form-section {
    position: relative;

    margin: 0 0 32px;
    padding: 36px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        ),
        var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow);

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}


/* ==========================================================
   SOCIAL PLATFORM CARDS
========================================================== */

.social-platform-grid {
    width: min(100%, 1050px);
    margin: 55px auto 0;

    display: grid;
    gap: 18px;
}

.social-platform-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;

    padding: 25px 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        ),
        var(--surface);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.social-platform-card:hover {
    transform: translateY(-5px);

    background: var(--surface-hover);
    border-color: var(--red-border);

    box-shadow:
        var(--shadow),
        var(--red-shadow);
}

.social-platform-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    background: rgba(255, 0, 31, 0.1);
    color: var(--primary);

    border: 1px solid rgba(255, 0, 31, 0.25);
    border-radius: 18px;

    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: 1px;
}

.social-platform-label {
    margin-bottom: 3px;

    color: var(--primary);

    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.social-platform-card h3 {
    margin-bottom: 6px;

    color: var(--white);

    font-size: 1.27rem;
    font-weight: 900;
}

.social-platform-card div > p:last-child {
    color: var(--light);

    font-size: 0.94rem;
    line-height: 1.7;
}

.social-platform-card > strong {
    color: var(--primary);

    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .social-platform-card {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 18px;

        padding: 22px;
    }

    .social-platform-icon {
        width: 54px;
        height: 54px;

        border-radius: 15px;
    }

    .social-platform-card > strong {
        grid-column: 2;
    }
}

@media (max-width: 480px) {
    .social-platform-card {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .social-platform-icon {
        margin: 0 auto;
    }

    .social-platform-card > strong {
        grid-column: auto;
    }
}


/* ==========================================================
   RECRUITMENT APPLICATION — TWO-COLUMN EXPERIENCE
========================================================== */
.application-shell {
    width: min(100%, 1320px);
    margin: 58px auto 0;
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    align-items: start;
    gap: 30px;
}
.application-sidebar { position: relative; }
.application-sidebar-card {
    position: sticky;
    top: calc(var(--header-height) + 28px);
    padding: 32px;
    background: linear-gradient(155deg, rgba(255,0,31,.09), rgba(255,255,255,.025) 42%, rgba(255,255,255,.01)), var(--surface);
    border: 1px solid var(--red-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow), var(--red-shadow);
}
.application-sidebar-card img { width: min(190px, 75%); margin: 0 auto 26px; filter: drop-shadow(0 0 22px rgba(255,0,31,.2)); }
.application-sidebar-card h2 { margin-bottom: 14px; font-size: clamp(1.7rem, 3vw, 2.25rem); line-height: 1.12; }
.application-sidebar-card > p:not(.eyebrow) { color: var(--light); font-size: .96rem; line-height: 1.75; }
.application-sidebar-steps { display: grid; gap: 0; margin: 26px 0; border-top: 1px solid var(--border); }
.application-sidebar-steps span { padding: 11px 0; color: var(--gray); border-bottom: 1px solid var(--border); font-size: .78rem; font-weight: 800; letter-spacing: .45px; text-transform: uppercase; }
.application-sidebar-card .btn { width: 100%; min-width: 0; }
.application-shell .application-form { width: 100%; margin: 0; }
.application-shell .form-section { margin-bottom: 22px; padding: 32px; border-radius: 20px; box-shadow: 0 12px 36px rgba(0,0,0,.33); }
.application-shell .form-section:focus-within { border-color: var(--red-border); box-shadow: 0 14px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(255,0,31,.08); }
.application-shell .form-section legend { display: flex; align-items: center; gap: 14px; padding: 0 12px; color: var(--white); font-size: 1.22rem; font-weight: 900; }
.application-shell .form-section legend span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--primary); border-radius: 12px; box-shadow: 0 8px 24px rgba(255,0,31,.23); font-size: .82rem; }
.form-help { margin: 4px 0 22px; color: var(--gray); font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { color: var(--light); font-size: .88rem; font-weight: 800; }
.form-group label em { color: var(--primary); font-style: normal; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 15px; background: #0b0b0b; color: var(--white); border: 1px solid rgba(255,255,255,.12); border-radius: 11px; outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #686868; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { background: #0e0e0e; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,0,31,.1); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.check-option, .agreement-option { display: flex; align-items: flex-start; gap: 12px; padding: 14px 15px; background: #0c0c0c; border: 1px solid var(--border); border-radius: 11px; cursor: pointer; transition: border-color var(--transition), background var(--transition), transform var(--transition); }
.check-option:hover, .agreement-option:hover { background: #111; border-color: var(--red-border); transform: translateY(-1px); }
.check-option input, .agreement-option input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--primary); }
.check-option span, .agreement-option span { color: var(--light); font-size: .9rem; line-height: 1.55; }
.agreement-list { display: grid; gap: 13px; }
.application-submit { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 26px 30px; background: linear-gradient(135deg, rgba(255,0,31,.08), rgba(255,255,255,.02)), var(--surface); border: 1px solid var(--red-border); border-radius: var(--radius); }
.application-submit p { color: var(--light); }
.form-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

/* ==========================================================
   CONTENT CREATOR PAGE
========================================================== */
.creator-feature { width: min(100%, 1180px); margin: 55px auto 0; display: grid; grid-template-columns: minmax(280px,.8fr) minmax(0,1.4fr); gap: 28px; align-items: stretch; }
.creator-brand-panel { padding: 38px; background: radial-gradient(circle at top left, rgba(255,0,31,.12), transparent 45%), var(--surface); border: 1px solid var(--red-border); border-radius: var(--radius-large); box-shadow: var(--shadow), var(--red-shadow); }
.creator-avatar { width: 96px; height: 96px; display: grid; place-items: center; margin-bottom: 25px; background: var(--primary); color: #fff; border-radius: 24px; font-size: 3rem; font-weight: 950; box-shadow: 0 14px 34px rgba(255,0,31,.25); }
.creator-brand-panel h2 { margin-bottom: 14px; font-size: clamp(2.4rem,5vw,4.2rem); line-height: 1; }
.creator-brand-panel > p:not(.eyebrow) { color: var(--light); line-height: 1.8; }
.creator-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.creator-tags span { padding: 7px 11px; background: rgba(255,0,31,.09); color: var(--primary-light); border: 1px solid rgba(255,0,31,.22); border-radius: 999px; font-size: .76rem; font-weight: 800; }
.creator-actions { justify-content: flex-start; margin-top: 28px; }
.creator-video-main, .video-frame { position: relative; overflow: hidden; aspect-ratio: 16/9; background: #000; border: 1px solid var(--border); border-radius: var(--radius-large); box-shadow: var(--shadow); }
.creator-video-main iframe, .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid { width: min(100%,1180px); margin: 55px auto 0; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.video-card { overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition); }
.video-card:hover { transform: translateY(-7px); border-color: var(--red-border); box-shadow: var(--shadow),var(--red-shadow); }
.video-card .video-frame { border: 0; border-radius: 0; box-shadow: none; }
.video-card-copy { padding: 24px; }
.video-card-copy h3 { margin-bottom: 10px; font-size: 1.25rem; }
.video-card-copy > p:last-child { color: var(--light); font-size: .93rem; line-height: 1.7; }

@media (max-width: 1000px) {
  .application-shell { grid-template-columns: 1fr; }
  .application-sidebar-card { position: static; }
  .application-sidebar-steps { grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 18px; }
  .creator-feature { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 700px) {
  .application-shell .form-section { padding: 25px 20px; }
  .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: auto; }
  .application-submit { flex-direction: column; align-items: stretch; text-align: center; }
  .application-submit .btn { width: 100%; }
  .video-grid { grid-template-columns: 1fr; }
  .creator-brand-panel { padding: 28px 22px; }
}
@media (max-width: 520px) {
  .application-sidebar-card { padding: 25px 20px; }
  .application-sidebar-steps { grid-template-columns: 1fr; }
  .creator-actions { flex-direction: column; align-items: stretch; }
}


/* ==========================================================
   RECRUITMENT APPLICATION — SILENT REVENGE INSPIRED
========================================================== */
.recruitment-form-shell {
    width: min(100%, 1040px);
    margin: 52px auto 0;
}

.recruitment-form-intro {
    margin-bottom: 26px;
    padding: 28px 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
    border: 1px solid var(--red-border);
    border-radius: 22px;
    box-shadow: 0 0 32px rgba(255,0,31,.12);
}

.recruitment-form-intro h3 {
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.recruitment-form-intro > p:not(.eyebrow) {
    max-width: 790px;
    color: var(--light);
    line-height: 1.75;
}

.recruitment-form-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.recruitment-form-meta span {
    padding: 8px 12px;
    background: rgba(255,0,31,.08);
    color: var(--primary-light);
    border: 1px solid rgba(255,0,31,.22);
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.recruitment-form-shell .application-form {
    width: 100%;
    margin: 0;
    display: grid;
    gap: 22px;
}

.recruitment-form-shell .form-section {
    margin: 0;
    padding: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
    border: 1px solid var(--red-border);
    border-radius: 22px;
    box-shadow: 0 0 28px rgba(0,0,0,.28);
}

.recruitment-form-shell .form-section:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 34px rgba(255,0,31,.16);
}

.recruitment-form-shell .form-section legend {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
    color: var(--primary-light);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.recruitment-form-shell .form-section legend span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255,0,31,.26);
    font-size: .78rem;
    letter-spacing: 0;
}

.recruitment-form-shell .form-help {
    margin: 4px 0 20px;
    color: var(--gray);
    font-size: .9rem;
}

.recruitment-form-shell .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.recruitment-form-shell .form-group {
    display: grid;
    gap: 8px;
}

.recruitment-form-shell .form-group-full {
    grid-column: 1 / -1;
}

.recruitment-form-shell .form-group label {
    color: var(--white);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .9px;
}

.recruitment-form-shell .form-group label em {
    color: var(--primary);
    font-style: normal;
}

.recruitment-form-shell input,
.recruitment-form-shell select,
.recruitment-form-shell textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,.045);
    color: var(--white);
    border: 1px solid rgba(255,0,31,.38);
    border-radius: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.recruitment-form-shell input::placeholder,
.recruitment-form-shell textarea::placeholder {
    color: rgba(255,255,255,.38);
}

.recruitment-form-shell select option {
    color: #080808;
}

.recruitment-form-shell input:focus,
.recruitment-form-shell select:focus,
.recruitment-form-shell textarea:focus {
    background: rgba(255,255,255,.065);
    border-color: var(--primary-light);
    box-shadow: 0 0 18px rgba(255,0,31,.18);
}

.recruitment-form-shell textarea {
    min-height: 125px;
    resize: vertical;
}

.recruitment-form-shell .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.recruitment-form-shell .check-option,
.recruitment-form-shell .agreement-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 15px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,0,31,.3);
    border-radius: 14px;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.recruitment-form-shell .check-option:hover,
.recruitment-form-shell .agreement-option:hover {
    transform: translateY(-2px);
    background: rgba(255,0,31,.065);
    border-color: var(--primary);
}

.recruitment-form-shell .check-option input,
.recruitment-form-shell .agreement-option input {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin-top: 3px;
    padding: 0;
    accent-color: var(--primary);
}

.recruitment-form-shell .check-option span,
.recruitment-form-shell .agreement-option span {
    color: var(--light);
    font-size: .92rem;
    line-height: 1.55;
}

.recruitment-form-shell .agreement-list {
    display: grid;
    gap: 12px;
}

.recruitment-form-shell .application-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 25px 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
    border: 1px solid var(--red-border);
    border-radius: 22px;
    box-shadow: 0 0 30px rgba(255,0,31,.1);
}

.recruitment-form-shell .application-submit p {
    color: var(--light);
}

@media (max-width: 700px) {
    .recruitment-form-intro,
    .recruitment-form-shell .form-section {
        padding: 24px 20px;
    }

    .recruitment-form-shell .form-grid,
    .recruitment-form-shell .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .recruitment-form-shell .form-group-full {
        grid-column: auto;
    }

    .recruitment-form-shell .application-submit {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .recruitment-form-shell .application-submit .btn {
        width: 100%;
    }
}

/* ==========================================================
   RECRUITMENT FORM — FLAT SILENT REVENGE STYLE
   Final overrides for recruitment.html
========================================================== */

#recruitment-form,
.application-heading {
    width: min(100%, 1050px);
}

.application-heading {
    margin-bottom: 70px;
    text-align: left;
}

.application-heading .eyebrow {
    color: var(--primary);
    letter-spacing: 5px;
    font-size: 0.74rem;
    text-align: center;
}

.application-heading h2 {
    margin-top: 24px;
    color: #dce6ee;
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
}

.recruitment-form-shell {
    width: min(100%, 1050px);
    margin: 0 auto;
}

.recruitment-form-shell .application-form {
    display: block;
    width: 100%;
    margin: 0;
}

.recruitment-form-shell .form-section {
    margin: 0;
    padding: 0 0 44px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 0;
    box-shadow: none;
}

.recruitment-form-shell .form-section + .form-section {
    padding-top: 38px;
}

.recruitment-form-shell .form-section:focus-within {
    border-color: rgba(255, 255, 255, 0.07);
    box-shadow: none;
}

.recruitment-form-shell .form-section legend {
    display: block;
    width: 100%;
    margin: 0 0 24px;
    padding: 0;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 2.3px;
    line-height: 1.4;
    text-transform: uppercase;
}

.recruitment-form-shell .form-section legend span {
    display: none;
}

.recruitment-form-shell .form-help {
    margin: -12px 0 24px;
    color: #7c858d;
    font-size: 0.84rem;
}

.recruitment-form-shell .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
}

.recruitment-form-shell .form-group {
    gap: 9px;
}

.recruitment-form-shell .form-group label {
    color: #dce6ee;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 1.45px;
    text-transform: uppercase;
}

.recruitment-form-shell input,
.recruitment-form-shell select,
.recruitment-form-shell textarea {
    min-height: 46px;
    padding: 13px 16px;
    background: #090b0d;
    color: #edf4f8;
    border: 1px solid rgba(255, 0, 31, 0.5);
    border-radius: 14px;
    box-shadow: none;
}

.recruitment-form-shell textarea {
    min-height: 130px;
}

.recruitment-form-shell input:hover,
.recruitment-form-shell select:hover,
.recruitment-form-shell textarea:hover {
    border-color: rgba(255, 0, 31, 0.78);
}

.recruitment-form-shell input:focus,
.recruitment-form-shell select:focus,
.recruitment-form-shell textarea:focus {
    background: #0b0d10;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 0, 31, 0.08);
}

.recruitment-form-shell input::placeholder,
.recruitment-form-shell textarea::placeholder {
    color: #4f565c;
    font-size: 0.77rem;
}

.recruitment-form-shell .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.recruitment-form-shell .check-option,
.recruitment-form-shell .agreement-option {
    padding: 13px 15px;
    background: #090b0d;
    border: 1px solid rgba(255, 0, 31, 0.38);
    border-radius: 12px;
    box-shadow: none;
}

.recruitment-form-shell .check-option:hover,
.recruitment-form-shell .agreement-option:hover {
    transform: none;
    background: rgba(255, 0, 31, 0.035);
    border-color: var(--primary);
}

.recruitment-form-shell .check-option span,
.recruitment-form-shell .agreement-option span {
    color: #cbd5dc;
    font-size: 0.84rem;
}

.recruitment-form-shell .application-submit {
    margin-top: 42px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.recruitment-form-shell .application-submit p {
    color: #727b82;
    font-size: 0.84rem;
}

@media (max-width: 700px) {
    .application-heading {
        margin-bottom: 46px;
    }

    .application-heading h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .recruitment-form-shell .form-grid,
    .recruitment-form-shell .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .recruitment-form-shell .form-section {
        padding-bottom: 36px;
    }

    .recruitment-form-shell .form-section + .form-section {
        padding-top: 32px;
    }
}


/* ==========================================================
   SUCCESS ESPORTS V1.0 — FINAL LAUNCH POLISH
========================================================== */

/* Premium hero depth and scroll cue */
.hero::before,
.page-hero::before { animation: gridDrift 28s linear infinite; }
.hero-content::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%; top: 22%;
    width: min(780px, 90vw); height: 230px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(255,0,31,.16), transparent 68%);
    filter: blur(20px);
    pointer-events: none;
}
.hero-logo { will-change: transform, filter; }
.hero .hero-buttons::after {
    content: "SCROLL TO EXPLORE";
    position: absolute;
    left: 50%; bottom: -88px;
    transform: translateX(-50%);
    color: rgba(255,255,255,.42);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: 3px;
    white-space: nowrap;
}
.hero .hero-buttons { position: relative; }
@keyframes gridDrift { to { background-position: 60px 60px, 60px 60px; } }

/* Leadership profile treatment */
.page-leadership .leadership-cards { max-width: 980px; gap: 28px; }
.page-leadership .leadership-cards .card {
    padding: 42px 36px;
    background:
      radial-gradient(circle at 85% 10%, rgba(255,0,31,.11), transparent 35%),
      linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01)),
      var(--surface);
}
.page-leadership .leadership-cards .card > span {
    width: 68px; height: 68px; border-radius: 50%;
    font-size: 1rem;
    box-shadow: 0 0 0 6px rgba(255,0,31,.05), 0 0 28px rgba(255,0,31,.15);
}
.page-leadership .leadership-cards .card h3 { font-size: 1.5rem; }
.page-leadership .leadership-cards .card p strong {
    display: inline-block; color: var(--primary); font-size: 1.15rem; letter-spacing: .4px;
}

/* Content creator cards and live treatment */
.page-content .creator-feature {
    box-shadow: 0 24px 70px rgba(0,0,0,.48), 0 0 0 1px rgba(255,0,31,.08);
}
.page-content .creator-avatar {
    position: relative;
    box-shadow: 0 0 0 7px rgba(255,0,31,.06), 0 0 32px rgba(255,0,31,.22);
}
.page-content .creator-avatar::after {
    content: "FEATURED";
    position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%);
    padding: 4px 9px; background: var(--primary); color: #fff; border-radius: 999px;
    font-size: .55rem; font-weight: 900; letter-spacing: 1.5px;
}
.page-content .twitch-status { position: relative; }
.page-content .twitch-status::after {
    content: none;
}

/* Stronger footer hierarchy */
.footer { padding-top: 86px; }
.footer-page-links {
    padding: 22px 0 8px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.footer-page-links a { text-transform: uppercase; letter-spacing: 1px; font-size: .76rem; }

/* Silent Revenge-inspired recruitment: flatter, wider, cleaner */
.page-recruitment .section.dark { background: #07090a; }
.page-recruitment .application-heading { margin-bottom: 76px; }
.page-recruitment .application-heading h2 {
    font-size: clamp(2.6rem, 5.6vw, 4.8rem);
    letter-spacing: 1px;
}
.page-recruitment .recruitment-form-shell { max-width: 1120px; }
.page-recruitment .recruitment-form-shell .form-section {
    padding-bottom: 50px;
}
.page-recruitment .recruitment-form-shell .form-section + .form-section { padding-top: 46px; }
.page-recruitment .recruitment-form-shell .form-section legend {
    color: var(--primary);
    letter-spacing: 2.6px;
    font-size: .82rem;
}
.page-recruitment .recruitment-form-shell input,
.page-recruitment .recruitment-form-shell select,
.page-recruitment .recruitment-form-shell textarea {
    border-radius: 12px;
    border-color: rgba(255,0,31,.52);
    background: #080a0c;
}
.page-recruitment .recruitment-form-shell input:focus,
.page-recruitment .recruitment-form-shell select:focus,
.page-recruitment .recruitment-form-shell textarea:focus {
    box-shadow: 0 0 0 2px rgba(255,0,31,.09), 0 10px 28px rgba(0,0,0,.22);
}
.page-recruitment .application-submit .btn { min-width: 230px; }

/* Accessibility and motion refinement */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
}
@media (max-width: 700px) {
    .hero .hero-buttons::after { display: none; }
    .page-leadership .leadership-cards .card { padding: 32px 25px; }
    .page-recruitment .application-heading { margin-bottom: 50px; }
}
