@font-face {
    font-family: "longal";
    src: url("fonts/longal.ttf") format("truetype");
    font-display: swap;
}

/* =========================
   Global
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: white;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
}

/* =========================
   Header / Navigation
========================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    padding: 20px 50px;

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

    background: #000;
}

.logo a {
    display: inline-block;
}

.logo img {
    height: 80px;
    width: auto;

    cursor: pointer;

    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.08);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 25px;

    color: white;

    text-decoration: none;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

nav a:hover {
    color: #ccc;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.55);
}

.discord-nav {
    display: inline-flex;
    align-items: center;
}

.discord-nav img {
    width: 40px;
    height: 40px;

    object-fit: contain;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.discord-nav img:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px white);
}

/* =========================
   Homepage Hero
========================= */

.hero {
    position: relative;

    min-height: 100vh;

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

    padding: 130px 20px 60px;

    overflow: hidden;

    background-image: url("images/stkbackround.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;

    animation: zoomBackground 20s ease-in-out infinite alternate;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.6);

    pointer-events: none;
}

.hero h1,
.hero p,
.hero a,
.hero button {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: "longal", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);

    color: #000;

    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.5);
}

.hero p {
    margin-top: 20px;

    font-size: 1.2rem;
}

button {
    margin-top: 25px;
    padding: 15px 30px;

    background: #000;
    color: #fff;

    border: 1px solid white;

    cursor: pointer;

    font-weight: bold;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

button:hover {
    background: white;
    color: black;

    transform: translateY(-3px);
}

@keyframes zoomBackground {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

/* =========================
   General Roster Sections
========================= */

.roster {
    padding: 80px 50px;
}

.roster h2 {
    margin-bottom: 40px;

    text-align: center;
}

.roster-page {
    padding: 140px 50px 120px;

    text-align: center;
}

.roster-page h1 {
    margin-bottom: 50px;

    font-size: 4rem;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;
}

.card {
    position: relative;

    width: 320px;
    padding: 30px;

    overflow: hidden;

    background: #161616;

    border: 2px solid white;
    border-radius: 15px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);

    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.10);
}

/* Only targets the main player image when it is a direct child of .card.
   Social media icons stay unchanged. */
.card > img {
    width: 150px;
    height: 150px;

    margin-bottom: 15px;

    object-fit: cover;

    border: 2px solid white;
    border-radius: 50%;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.card:hover > img {
    transform: scale(1.08);

    border-color: white;

    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.card h2 {
    transition: letter-spacing 0.3s ease;
}

.card:hover h2 {
    letter-spacing: 2px;
}

.role {
    margin-bottom: 15px;

    font-size: 1.1rem;
    font-weight: bold;
}

/* =========================
   Roster Social Icons
========================= */

.socials {
    margin-top: 20px;

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

    gap: 15px;
}

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

    padding: 0;

    border: none;

    text-decoration: none;
}

.socials img {
    width: 32px;
    height: 32px;

    opacity: 0.8;

    object-fit: contain;

    border: none;
    border-radius: 0;

    box-shadow: none;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        filter 0.3s ease;
}

.socials img:hover {
    opacity: 1;

    transform: scale(1.2);

    filter: drop-shadow(0 0 12px white);
}

/* =========================
   Individual Player Banners
   Image names preserved exactly
========================= */

.richy-card {
    background-image: url("images/banners/richybanner.PNG");
}

.prada-card {
    background-image: url("images/banners/pradabanner.png");
}

.lndn-card {
    background-image: url("images/banners/lndnbanner.png");
}

.salty-card {
    background-image: url("images/banners/saltybanner.png");
}

.shadow-card {
    background-image: url("images/banners/shadowbanner.png");
}

.endless-card {
    background-image: url("images/banners/endless-juice.png");
}

.kiloze-card {
    background-image: url("images/banners/kilozebanner.png");
}

.reborn-card {
    background-image: url("images/banners/rebornbanner.png");
}

.immune-card {
    background-image: url("images/banners/immunebanner.png");
}

.richy-card,
.prada-card,
.lndn-card,
.salty-card,
.shadow-card,
.endless-card,
.kiloze-card,
.reborn-card,
.immune-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.richy-card::before,
.prada-card::before,
.lndn-card::before,
.salty-card::before,
.shadow-card::before,
.endless-card::before,
.kiloze-card::before,
.reborn-card::before,
.immune-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.75);

    pointer-events: none;
}

.richy-card > *,
.prada-card > *,
.lndn-card > *,
.salty-card > *,
.shadow-card > *,
.endless-card > *,
.kiloze-card > *,
.reborn-card > *,
.immune-card > * {
    position: relative;
    z-index: 1;
}

/* =========================
   Coming Soon
========================= */

.coming-soon {
    min-height: 100vh;

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

    padding: 140px 30px 80px;

    text-align: center;
}

.coming-soon h1 {
    margin-bottom: 10px;

    font-size: 5rem;
}

.coming-soon p {
    margin-bottom: 30px;

    font-size: 2rem;
    letter-spacing: 4px;
}

/* =========================
   Sponsors Page
========================= */

.sponsors-page {
    min-height: 100vh;
    padding: 140px 40px 120px;

    text-align: center;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.8)
        ),
        url("images/stkbackround.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sponsors-page h1 {
    margin-bottom: 20px;

    font-size: 4rem;
}

.sponsor-intro {
    max-width: 700px;
    margin: 0 auto 40px;

    font-size: 1.2rem;
}

.sponsor-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 20px;
    margin-bottom: 60px;
}

.sponsor-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;
}

.feature-card {
    width: 300px;
    padding: 25px;

    background: #161616;

    border: 2px solid white;
    border-radius: 15px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.current-partners {
    margin-top: 75px;
}

/* =========================
   Matches Page
========================= */

.match-hero {
    min-height: 50vh;

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

    padding: 140px 30px 60px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.85)
        ),
        url("images/matches-banner.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.match-hero h1 {
    margin-bottom: 15px;

    font-size: clamp(3rem, 8vw, 7rem);
}

.match-hero p {
    max-width: 650px;

    font-size: 1.2rem;
}

.matches-page {
    padding: 80px 30px 120px;

    text-align: center;
}

.matches-page > h1,
.matches-page > h2 {
    margin-bottom: 40px;

    font-size: clamp(2.2rem, 6vw, 4rem);
}

.match-card {
    max-width: 750px;
    margin: 0 auto;
    padding: 35px;

    background: #161616;

    border: 2px solid white;
    border-radius: 15px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

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

    background: #1d1d1d;

    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.10);
}

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

    gap: 30px;
    margin-bottom: 30px;
}

.team {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;
}

.team-logo {
    width: 130px;
    height: 130px;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.match-card:hover .team-logo {
    transform: scale(1.08);
}

.team h3 {
    font-size: 1.5rem;
}

.teams h2 {
    font-size: 2.5rem;
}

.teams span,
.versus {
    font-size: 2rem;
    font-weight: bold;
}

.match-details p {
    margin: 10px 0;
}

.status {
    display: inline-block;

    margin-top: 25px;
    padding: 10px 24px;

    border: 2px solid white;
    border-radius: 30px;

    font-weight: bold;
    letter-spacing: 2px;
}

.section-title {
    margin-top: 80px;
    margin-bottom: 35px;

    font-size: 2.5rem;
}

.record {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;
}

.record-box {
    width: 210px;
    padding: 30px;

    background: #161616;

    border: 2px solid white;
    border-radius: 15px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.record-box h3 {
    font-size: 3rem;
}

.record-box p {
    margin-top: 8px;

    letter-spacing: 2px;
}

.results {
    max-width: 750px;
    margin: 0 auto;
}

.result {
    margin: 15px 0;
    padding: 20px;

    border-radius: 10px;

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

.result.pending {
    background: #161616;
    border-left: 6px solid white;
}

.result.win {
    background: #16321d;
    border-left: 6px solid limegreen;
}

.result.loss {
    background: #331717;
    border-left: 6px solid red;
}

.tournament {
    max-width: 650px;
    margin: 0 auto;
    padding: 35px;

    background: #161616;

    border: 2px solid white;
    border-radius: 15px;
}

.tournament h3 {
    margin-bottom: 12px;
}

/* =========================
   Homepage Upcoming Match
========================= */

.home-match {
    padding: 90px 30px;

    background: #0a0a0a;
    color: white;

    text-align: center;
}

.eyebrow {
    margin-bottom: 10px;

    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 4px;

    opacity: 0.7;
}

.home-match > h2 {
    margin-bottom: 40px;

    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.home-match-card {
    max-width: 900px;
    margin: 0 auto 35px;
    padding: 40px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 35px;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0)
        ),
        #151515;

    border: 2px solid white;
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.15),
        0 0 35px rgba(255, 255, 255, 0.08);
}

.home-team {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 14px;
}

.home-team img {
    width: 135px;
    height: 135px;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.home-match-card:hover .home-team img {
    transform: scale(1.07);
}

.home-team h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.home-match-center {
    min-width: 180px;
}

.home-match-center p {
    margin: 7px 0;
}

.home-vs {
    display: block;

    margin-bottom: 15px;

    font-size: 2.3rem;
    font-weight: bold;
}

.home-status {
    display: inline-block;

    margin-top: 15px;
    padding: 8px 17px;

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

    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.home-link-button {
    display: inline-block;

    padding: 14px 26px;

    background: white;
    color: black;

    border: 2px solid white;

    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.home-link-button:hover {
    background: transparent;
    color: white;

    transform: translateY(-3px);
}

/* =========================
   Homepage Featured Roster
========================= */

.featured-roster {
    padding: 90px 30px;

    background: #111;
    color: white;

    text-align: center;
}

.featured-roster > h2 {
    margin-bottom: 45px;

    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.featured-roster-grid {
    max-width: 1100px;
    margin: 0 auto 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.featured-player {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background: #181818;

    border: 2px solid white;
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.featured-player:hover {
    transform: translateY(-10px);

    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.18),
        0 0 35px rgba(255, 255, 255, 0.08);
}

.featured-player-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.featured-player:hover .featured-player-image {
    transform: scale(1.07);
    filter: brightness(0.75);
}

.featured-player::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.05) 100%
        );
}

.featured-player-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    padding: 28px 22px;

    text-align: left;
}

.featured-player-info h3 {
    margin: 5px 0 8px;

    font-size: 2rem;
    letter-spacing: 2px;
}

.featured-player-info p {
    margin: 0;
}

.featured-role {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 3px;

    opacity: 0.8;
}

/* =========================
   Footer
========================= */

footer {
    padding: 70px 30px;

    background: #050505;

    border-top: 2px solid white;

    text-align: center;
}

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

    margin-bottom: 20px;
}

.footer-logo h2 {
    margin-bottom: 10px;

    font-size: 2.5rem;
}

.footer-logo p {
    margin-bottom: 40px;

    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 30px;
    margin-bottom: 35px;
}

.footer-links a {
    color: white;

    text-decoration: none;
    font-weight: bold;

    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ccc;
}

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

    gap: 25px;
    margin-bottom: 35px;
}

.footer-socials a {
    display: inline-flex;
}

.footer-socials img {
    width: 35px;
    height: 35px;

    object-fit: contain;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.footer-socials img:hover {
    transform: scale(1.2);

    filter: drop-shadow(0 0 10px white);
}

.copyright {
    opacity: 0.5;

    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* =========================
   Responsive Design
========================= */

@media (max-width: 900px) {
    .featured-roster-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    header {
        padding: 12px 18px;
    }

    .logo img {
        height: 65px;
    }

    nav {
        justify-content: flex-end;
        flex-wrap: wrap;

        gap: 10px;
    }

    nav a {
        margin-left: 0;

        font-size: 0.85rem;
    }

    .discord-nav img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 700px) {
    .teams {
        flex-direction: column;
    }

    .versus {
        margin: 5px 0;
    }

    .team-logo {
        width: 100px;
        height: 100px;
    }

    .match-card {
        padding: 25px 18px;
    }

    .home-match {
        padding: 70px 18px;
    }

    .home-match-card {
        padding: 30px 18px;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .home-match-center {
        order: 2;
    }

    .home-team img {
        width: 105px;
        height: 105px;
    }
}

@media (max-width: 650px) {
    .featured-roster {
        padding: 70px 18px;
    }

    .featured-roster-grid {
        grid-template-columns: 1fr;
    }

    .featured-player {
        min-height: 400px;
    }

    .roster-page {
        padding: 130px 18px 80px;
    }

    .roster-page h1 {
        font-size: 3rem;
    }

    .sponsors-page {
        padding: 130px 18px 80px;
    }

    .sponsors-page h1 {
        font-size: 3rem;
    }
}

@media (max-width: 520px) {
    header {
        align-items: flex-start;
    }

    nav {
        max-width: 70%;
    }

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

    .card,
    .feature-card {
        width: 100%;
        max-width: 340px;
    }

    .footer-links {
        gap: 18px;
    }
}

.join-button {
    position: relative;
    z-index: 1;

    display: inline-block;

    margin-top: 25px;
    padding: 15px 30px;

    background: black;
    color: white;

    border: 1px solid white;

    text-decoration: none;
    font-weight: bold;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.join-button:hover {
    background: white;
    color: black;

    transform: translateY(-3px);
}

/* =========================
   Contact Page
========================= */

.contact-hero {
    min-height: 55vh;

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

    padding: 150px 30px 70px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.9)
        ),
        url("images/stkbackround.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero h1 {
    margin: 10px 0 20px;

    font-family: "longal", sans-serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
}

.contact-hero > p:last-child {
    max-width: 700px;

    font-size: 1.15rem;
    line-height: 1.7;

    opacity: 0.85;
}

.contact-page {
    padding: 90px 30px 120px;

    background: #0a0a0a;
}

.contact-options {
    max-width: 1100px;
    margin: 0 auto 100px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.contact-card {
    padding: 35px 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: #161616;

    border: 2px solid white;
    border-radius: 15px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

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

    background: #1d1d1d;

    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.08);
}

.contact-card h2 {
    margin-bottom: 18px;

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

.contact-card p {
    margin-bottom: 28px;

    line-height: 1.6;

    opacity: 0.8;
}

.contact-button {
    margin-top: auto;
    padding: 13px 22px;

    display: inline-block;

    background: white;
    color: black;

    border: 2px solid white;

    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-button:hover {
    background: transparent;
    color: white;

    transform: translateY(-3px);
}

.contact-form-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;

    background: #141414;

    border: 2px solid white;
    border-radius: 16px;
}

.contact-form-intro {
    margin-bottom: 40px;

    text-align: center;
}

.contact-form-intro h2 {
    margin: 10px 0 15px;

    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.contact-form-intro > p:last-child {
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.form-group label {
    font-weight: bold;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;

    background: #080808;
    color: white;

    border: 1px solid #666;
    border-radius: 4px;

    font-family: inherit;
    font-size: 1rem;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: white;

    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-group select option {
    background: #111;
    color: white;
}

.contact-submit {
    align-self: center;

    min-width: 220px;
    margin-top: 10px;
    padding: 15px 28px;

    background: white;
    color: black;

    border: 2px solid white;

    font-weight: bold;
    letter-spacing: 1px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-submit:hover {
    background: transparent;
    color: white;

    transform: translateY(-3px);
}

@media (max-width: 850px) {

    .contact-options {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 650px) {

    .contact-hero {
        padding: 135px 18px 60px;
    }

    .contact-page {
        padding: 70px 18px 90px;
    }

    .contact-form-section {
        padding: 35px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}

/* =========================
   About Page
========================= */

.about-hero {
    min-height: 60vh;

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

    padding: 150px 30px 70px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.9)
        ),
        url("images/stkbackround.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero h1 {
    margin: 10px 0 20px;

    font-family: "longal", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
}

.about-hero > p:last-child {
    max-width: 750px;

    font-size: 1.2rem;
    line-height: 1.7;

    opacity: 0.85;
}

.about-page {
    padding: 100px 30px 120px;

    background: #0a0a0a;
}

.about-story {
    max-width: 1100px;
    margin: 0 auto 110px;

    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;

    gap: 70px;
}

.about-story-text h2 {
    margin: 10px 0 25px;

    font-size: clamp(2.8rem, 6vw, 5rem);
}

.about-story-text > p:not(.eyebrow) {
    margin-bottom: 18px;

    font-size: 1.08rem;
    line-height: 1.8;

    opacity: 0.82;
}

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

    min-height: 380px;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0) 65%
        );

    border: 2px solid white;
    border-radius: 16px;
}

.about-story-logo img {
    width: 70%;
    max-width: 300px;

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

    transition: transform 0.35s ease;
}

.about-story-logo:hover img {
    transform: scale(1.06);
}

.about-values-section {
    max-width: 1100px;
    margin: 0 auto 110px;

    text-align: center;
}

.about-values-section > h2 {
    margin: 10px 0 45px;

    font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}

.value-card {
    padding: 32px 24px;

    background: #161616;

    border: 2px solid white;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

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

    background: #1d1d1d;

    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.14),
        0 0 35px rgba(255, 255, 255, 0.07);
}

.value-card h3 {
    margin-bottom: 16px;

    font-size: 1.4rem;
    letter-spacing: 2px;
}

.value-card p {
    line-height: 1.65;

    opacity: 0.78;
}

.about-games {
    max-width: 1100px;
    margin: 0 auto 110px;
    padding: 70px 40px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.9)
        ),
        url("images/matches-banner.jpg");

    background-size: cover;
    background-position: center;

    border: 2px solid white;
    border-radius: 16px;

    text-align: center;
}

.about-games-content {
    max-width: 750px;
    margin: 0 auto;
}

.about-games h2 {
    margin: 10px 0 20px;

    font-size: clamp(3rem, 7vw, 5rem);
}

.about-games-content > p:not(.eyebrow) {
    margin-bottom: 30px;

    font-size: 1.1rem;
    line-height: 1.7;

    opacity: 0.85;
}

.game-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;
}

.game-tags span {
    padding: 10px 18px;

    background: rgba(0, 0, 0, 0.65);

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

    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.about-cta {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 35px;

    background: #151515;

    border: 2px solid white;
    border-radius: 16px;

    text-align: center;
}

.about-cta h2 {
    margin: 10px 0 18px;

    font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.about-cta > p:not(.eyebrow) {
    max-width: 600px;
    margin: 0 auto 30px;

    font-size: 1.05rem;
    line-height: 1.7;

    opacity: 0.8;
}

.about-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 16px;
}

.outline-button {
    display: inline-block;

    padding: 14px 26px;

    background: transparent;
    color: white;

    border: 2px solid white;

    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.outline-button:hover {
    background: white;
    color: black;

    transform: translateY(-3px);
}

@media (max-width: 950px) {

    .about-story {
        grid-template-columns: 1fr;
    }

    .about-story-text {
        text-align: center;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 650px) {

    .about-hero {
        padding: 135px 18px 60px;
    }

    .about-page {
        padding: 75px 18px 90px;
    }

    .about-story {
        gap: 40px;
        margin-bottom: 80px;
    }

    .about-story-logo {
        min-height: 300px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-games {
        padding: 55px 20px;
    }

    .about-cta {
        padding: 45px 20px;
    }

}

/* =========================
   Polished Matches Page
========================= */

.match-hero {
    position: relative;

    min-height: 60vh;

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

    padding: 155px 30px 80px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.52),
            rgba(0, 0, 0, 0.92)
        ),
        url("images/stkbackround.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
}

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

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: white;

    opacity: 0.7;
}

.match-hero h1,
.match-hero p {
    position: relative;
    z-index: 1;
}

.match-hero h1 {
    margin: 10px 0 20px;

    font-family: "longal", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);

    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.7),
        0 0 12px rgba(255, 255, 255, 0.35);
}

.match-hero-description {
    max-width: 720px;

    font-size: 1.15rem;
    line-height: 1.7;

    opacity: 0.85;
}

.matches-page {
    padding: 95px 30px 130px;

    background:
        linear-gradient(
            to bottom,
            #0a0a0a,
            #111 50%,
            #0a0a0a
        );

    text-align: center;
}

.matches-page > h2 {
    margin: 10px 0 45px;

    font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.match-card {
    position: relative;

    max-width: 820px;
    margin: 0 auto;
    padding: 45px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0)
        ),
        #141414;

    border: 2px solid white;
    border-radius: 18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.match-card::before {
    content: "";

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

    width: 130px;
    height: 3px;

    background: white;

    transform: translateX(-50%);
}

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

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0)
        ),
        #1b1b1b;

    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(255, 255, 255, 0.07);
}

.teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 35px;
    margin-bottom: 35px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;
}

.team-logo {
    width: 145px;
    height: 145px;

    object-fit: contain;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.match-card:hover .team-logo {
    transform: scale(1.07);

    filter: drop-shadow(
        0 0 14px rgba(255, 255, 255, 0.18)
    );
}

.team h3 {
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.versus {
    width: 72px;
    height: 72px;

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

    border: 2px solid white;
    border-radius: 50%;

    font-size: 1.6rem;
    font-weight: bold;
}

.match-details {
    padding: 25px 20px;

    background: rgba(0, 0, 0, 0.32);

    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
}

.match-details p {
    margin: 10px 0;

    line-height: 1.5;
}

.match-details strong {
    letter-spacing: 1px;
}

.status {
    display: inline-block;

    margin-top: 27px;
    padding: 10px 24px;

    background: transparent;
    color: white;

    border: 2px solid white;
    border-radius: 999px;

    font-size: 0.82rem;
    font-weight: bold;
    letter-spacing: 3px;
}

.match-section {
    max-width: 1050px;
    margin: 110px auto 0;
}

.match-section .section-title {
    margin: 10px 0 40px;

    font-size: clamp(2.5rem, 6vw, 4rem);
}

.record {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.record-box {
    width: auto;
    padding: 35px 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0)
        ),
        #151515;

    border: 2px solid white;
    border-radius: 15px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

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

    background: #1d1d1d;

    box-shadow:
        0 0 17px rgba(255, 255, 255, 0.14),
        0 0 34px rgba(255, 255, 255, 0.06);
}

.record-box h3 {
    margin-bottom: 8px;

    font-size: 3.5rem;
}

.record-box p {
    letter-spacing: 3px;

    opacity: 0.8;
}

.results {
    max-width: 820px;
    margin: 0 auto;
}

.result {
    padding: 23px;

    background: #151515;

    border: 2px solid white;
    border-radius: 12px;

    font-size: 1.1rem;
    font-weight: bold;
}

.result.pending {
    border-left: 6px solid white;
}

.tournament {
    max-width: 760px;
    margin: 0 auto;
    padding: 45px 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0)
        ),
        #151515;

    border: 2px solid white;
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

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

    background: #1d1d1d;

    box-shadow:
        0 0 17px rgba(255, 255, 255, 0.14),
        0 0 34px rgba(255, 255, 255, 0.06);
}

.tournament h3 {
    margin-bottom: 15px;

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

.tournament p {
    line-height: 1.7;

    opacity: 0.8;
}

@media (max-width: 750px) {
    .match-hero {
        padding: 140px 18px 65px;
    }

    .matches-page {
        padding: 75px 18px 95px;
    }

    .match-card {
        padding: 35px 20px;
    }

    .teams {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .versus {
        width: 60px;
        height: 60px;

        margin: 0 auto;
    }

    .team-logo {
        width: 110px;
        height: 110px;
    }

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

    .match-section {
        margin-top: 80px;
    }
}

/* =========================
   Polished Sponsors Page
========================= */

.sponsor-hero {
    position: relative;

    min-height: 60vh;

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

    padding: 155px 30px 80px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.52),
            rgba(0, 0, 0, 0.92)
        ),
        url("images/stkbackround.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
}

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

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: white;

    opacity: 0.7;
}

.sponsor-hero h1,
.sponsor-hero p {
    position: relative;
    z-index: 1;
}

.sponsor-hero h1 {
    margin: 10px 0 20px;

    font-family: "longal", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);

    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.7),
        0 0 12px rgba(255, 255, 255, 0.35);
}

.sponsor-hero-description {
    max-width: 760px;

    font-size: 1.15rem;
    line-height: 1.7;

    opacity: 0.85;
}

.sponsors-page {
    padding: 95px 30px 130px;

    background:
        linear-gradient(
            to bottom,
            #0a0a0a,
            #111 50%,
            #0a0a0a
        );

    text-align: center;
}

.sponsor-introduction {
    max-width: 900px;
    margin: 0 auto 110px;
}

.sponsor-introduction h2,
.sponsor-section h2 {
    margin: 10px 0 30px;

    font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.sponsor-introduction > p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto 35px;

    font-size: 1.08rem;
    line-height: 1.8;

    opacity: 0.82;
}

.sponsor-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 16px;
}

.sponsor-section {
    max-width: 1100px;
    margin: 110px auto 0;
}

.sponsor-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.feature-card {
    padding: 38px 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0)
        ),
        #151515;

    border: 2px solid white;
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

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

    background: #1d1d1d;

    box-shadow:
        0 0 17px rgba(255, 255, 255, 0.14),
        0 0 34px rgba(255, 255, 255, 0.06);
}

.feature-card h3 {
    margin-bottom: 16px;

    font-size: 1.45rem;
    letter-spacing: 2px;
}

.feature-card p {
    line-height: 1.7;

    opacity: 0.8;
}

.current-partners {
    max-width: 760px;
    margin: 0 auto;
    padding: 45px 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0)
        ),
        #151515;

    border: 2px solid white;
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

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

    background: #1d1d1d;

    box-shadow:
        0 0 17px rgba(255, 255, 255, 0.14),
        0 0 34px rgba(255, 255, 255, 0.06);
}

.current-partners p {
    margin-bottom: 28px;

    font-size: 1.05rem;
    line-height: 1.7;

    opacity: 0.82;
}

@media (max-width: 850px) {
    .sponsor-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .sponsor-hero {
        padding: 140px 18px 65px;
    }

    .sponsors-page {
        padding: 75px 18px 95px;
    }

    .sponsor-section {
        margin-top: 80px;
    }

    .current-partners {
        padding: 35px 20px;
    }
}

/* =========================
   Polished Roster Page
========================= */

.roster-hero {
    position: relative;

    min-height: 60vh;

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

    padding: 155px 30px 80px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.52),
            rgba(0, 0, 0, 0.92)
        ),
        url("images/stkbackround.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
}

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

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: white;

    opacity: 0.7;
}

.roster-hero h1,
.roster-hero p {
    position: relative;
    z-index: 1;
}

.roster-hero h1 {
    margin: 10px 0 20px;

    font-family: "longal", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);

    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.7),
        0 0 12px rgba(255, 255, 255, 0.35);
}

.roster-hero-description {
    max-width: 760px;

    font-size: 1.15rem;
    line-height: 1.7;

    opacity: 0.85;
}

.roster-page {
    min-height: 100vh;
    padding: 95px 30px 130px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.92)
        ),
        url("images/stkbackround.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    text-align: center;
}

.roster-page > h2 {
    margin: 10px 0 50px;

    font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.player-stats {
    margin-top: 15px;
}

.player-stats p {
    margin: 8px 0;
}

.card {
    min-height: 430px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.card .socials {
    margin-top: auto;
    padding-top: 20px;
}

@media (max-width: 700px) {

    .roster-hero {
        padding: 140px 18px 65px;
    }

    .roster-page {
        padding: 75px 18px 95px;

        background-attachment: scroll;
    }

}

/* =========================
   Mobile Navigation
========================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 42px;

    margin: 0;
    padding: 8px;

    background: transparent;

    border: 1px solid white;
    border-radius: 4px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: white;

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

@media (max-width: 850px) {

    header {
        padding: 12px 18px;
    }

    .logo img {
        height: 65px;
    }

    .menu-toggle {
        display: block;

        position: relative;
        z-index: 1002;
    }

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

        z-index: 1001;

        width: min(320px, 82%);
        height: 100vh;

        padding: 110px 30px 40px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 22px;

        background: rgba(0, 0, 0, 0.97);

        border-left: 2px solid white;

        transition: right 0.35s ease;
    }

    nav.open {
        right: 0;
    }

    nav a {
        width: 100%;

        margin-left: 0;

        color: white;

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

    .discord-nav {
        width: auto;
    }

    .discord-nav img {
        width: 38px;
        height: 38px;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* =========================================================
   STK LAUNCH POLISH — GLOBAL WEBSITE
========================================================= */

:root {
    --stk-header-height: 120px;
    --stk-panel: #121212;
    --stk-panel-light: #181818;
    --stk-border: rgba(255, 255, 255, 0.72);
    --stk-muted: rgba(255, 255, 255, 0.68);
    --stk-transition: 0.28s ease;
}

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

body {
    overflow-x: hidden;
}

body.page-enter {
    opacity: 0;
    transform: translateY(8px);
}

body.page-enter.page-ready {
    opacity: 1;
    transform: translateY(0);

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;

    padding: 11px 15px;

    background: white;
    color: black;

    border-radius: 4px;

    text-decoration: none;
    font-weight: bold;

    transform: translateY(-180%);

    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

header {
    transition:
        padding var(--stk-transition),
        background var(--stk-transition),
        box-shadow var(--stk-transition),
        border-color var(--stk-transition);
}

header.site-header-scrolled {
    padding-top: 11px;
    padding-bottom: 11px;

    background: rgba(0, 0, 0, 0.94);

    border-bottom: 1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.52);

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

header.site-header-scrolled .logo img {
    height: 65px;
}

nav a {
    position: relative;

    padding: 7px 0;

    font-weight: 700;
    letter-spacing: 0.45px;
}

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

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: white;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform var(--stk-transition);
}

nav a:not(.discord-nav):hover::after,
nav a:not(.discord-nav).active::after {
    transform: scaleX(1);
}

nav a.active {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.42);
}

button,
.join-button,
.home-link-button,
.contact-button,
.outline-button {
    border-radius: 4px;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
}

main {
    min-height: 65vh;
}

footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";

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

    width: min(900px, 80%);
    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.55),
            transparent
        );

    transform: translateX(-50%);
}

.footer-links a {
    position: relative;
}

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

    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;

    height: 1px;

    background: white;

    transform: scaleX(0);

    transition: transform var(--stk-transition);
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

img {
    height: auto;
}

.dynamic-player-card,
.public-match-card,
.public-sponsor-card,
.public-news-card,
.featured-news-card,
.contact-card,
.value-card,
.feature-card,
.match-card,
.home-match-card,
.featured-player,
.home-news-card,
.home-sponsor-card {
    transform: translateZ(0);
}

@media (max-width: 850px) {
    :root {
        --stk-header-height: 90px;
    }

    header.site-header-scrolled {
        padding: 9px 16px;
    }

    header.site-header-scrolled .logo img {
        height: 56px;
    }

    nav a {
        padding: 10px 0;
    }

    nav a:not(.discord-nav)::after {
        left: 0;
        right: auto;

        width: 42px;
    }
}

@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;
        scroll-behavior: auto !important;
    }

    body.page-enter {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   HOMEPAGE HERO TAGLINE — BLACK WITH THIN WHITE OUTLINE
========================================================= */

.hero > p {
    margin-top: 20px;

    color: #000;

    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;

    -webkit-text-stroke: 0.8px #fff;

    text-shadow:
        0 0 2px rgba(255, 255, 255, 0.9),
        0 0 8px rgba(255, 255, 255, 0.35);
}

@media (max-width: 650px) {
    .hero > p {
        font-size: 1rem;
        letter-spacing: 1.4px;
        line-height: 1.55;

        -webkit-text-stroke: 0.6px #fff;
    }
}
