:root {
    --bg: #f8fbfc;
    --bg-deep: #eef5f7;
    --bg-soft: #dcecf1;
    --text: #153243;
    --muted: #4a6570;
    --accent: #2387c8;
    --accent-strong: #ff4fa0;
    --surface: #ffffff;
    --surface-text: #153243;
    --border: rgba(21, 50, 67, 0.12);
    --wrap: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top, rgba(35, 135, 200, 0.14), transparent 36%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
    color: var(--text);
}

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

.wrap {
    width: min(calc(100% - 32px), var(--wrap));
    margin: 0 auto;
}

.site-header,
.site-footer {
    border-bottom: 1px solid var(--border);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(248, 251, 252, 0.88);
    box-shadow: 0 1px 0 rgba(21, 50, 67, 0.08);
}

.site-footer {
    border-top: 1px solid var(--border);
    border-bottom: 0;
    margin-top: 80px;
    background: #0a0f12;
}

.site-header .wrap,
.site-footer .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    width: 100%;
    align-items: center;
}

.footer-grid-main {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: stretch;
    gap: 32px;
}

.footer-social-panel {
    display: grid;
    gap: 18px;
    padding: 20px 0;
    background: #05090b;
    color: #ffffff;
    justify-items: start;
}

.footer-logo {
    display: block;
    width: auto;
    height: 34px;
}

.footer-social-panel h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 600;
}

.footer-social-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.footer-brand-panel {
    display: grid;
    gap: 18px;
    padding: 20px 0;
    background: transparent;
    align-content: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

.footer-legal {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal .wrap {
    justify-content: center;
    padding: 22px 0;
}

.footer-legal p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.site-brand {
    display: inline-flex;
    align-items: center;
}

.site-brand img {
    display: block;
    width: auto;
    height: 42px;
}

.site-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--text);
    font-weight: 700;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    background: #257d8d;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
}

.page-hero {
    position: relative;
    padding: 120px 0 90px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.28), rgba(21, 50, 67, 0.12)),
        url("../img/home-hero.png") center 80% / cover no-repeat;
}

.hero-panel {
    max-width: 840px;
    padding: 40px 42px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(135deg, rgba(17, 30, 38, 0.72), rgba(25, 43, 55, 0.68));
    box-shadow: 0 28px 80px rgba(21, 50, 67, 0.16);
}

.page-hero h1,
.section-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 0.95;
}

.section-heading h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.hero-copy,
.text-block p,
.feature-card p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.page-hero h1,
.page-hero .hero-copy,
.page-hero .eyebrow {
    color: #ffffff;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 2px solid transparent;
    font-weight: 700;
    transition: 0.2s ease;
}

.button-primary {
    background: var(--accent-strong);
    color: #ffffff;
}

.button-secondary {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.82);
    color: var(--accent);
}

.button:hover {
    transform: translateY(-1px);
}

.content-section {
    padding: 72px 0;
}

.news-hero {
    padding: 92px 0 40px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(220, 236, 241, 0.72));
}

.news-hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 0.96;
}

.news-story-section {
    padding: 72px 0;
    background: #ffffff;
}

.news-story-section-alt {
    background:
        linear-gradient(180deg, rgba(244, 248, 253, 0.96), rgba(235, 243, 247, 0.94));
}

.news-story-card {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.news-story-card-alt {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.news-story-media {
    margin: 0;
    border: 1px solid rgba(21, 50, 67, 0.16);
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(21, 50, 67, 0.08);
}

.news-story-media img {
    display: block;
    width: 100%;
    height: auto;
}

.news-story-copy {
    display: grid;
    gap: 18px;
    align-content: start;
    max-width: 620px;
    padding-top: 8px;
}

.news-story-card-alt .news-story-copy {
    justify-self: start;
}

.news-story-copy h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    line-height: 1.05;
    text-transform: uppercase;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.news-story-copy h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
}

.news-divider {
    display: block;
    width: 42px;
    height: 3px;
    background: #da0a4b;
}

.news-divider-green {
    background: #3ec9a7;
}

.news-text,
.news-links {
    display: grid;
    gap: 14px;
}

.news-text p,
.news-links p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}

.news-links strong {
    color: var(--text);
}

.news-links a {
    color: #718aa0;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.drivers-section {
    padding: 72px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 247, 0.98));
}

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

.driver-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(21, 50, 67, 0.1);
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(21, 50, 67, 0.06);
}

.driver-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: 280px minmax(0, 1fr);
    padding: 34px;
}

.driver-media {
    margin: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 280px;
    background:
        linear-gradient(180deg, rgba(244, 248, 253, 0.7), rgba(220, 236, 241, 0.9));
}

.driver-card-featured .driver-media {
    min-height: 360px;
}

.driver-media img {
    display: block;
    max-width: 100%;
    max-height: 360px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.driver-copy {
    display: grid;
    gap: 12px;
    align-content: center;
}

.driver-copy h2,
.driver-copy h3 {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.02;
}

.driver-copy h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.driver-copy h3 {
    font-size: 1.7rem;
}

.driver-role {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 600;
}

.driver-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.driver-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(35, 135, 200, 0.34);
    background: rgba(255, 255, 255, 0.88);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.content-section-light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(220, 236, 241, 0.92));
}

.stack {
    display: grid;
    gap: 28px;
}

.dual-story {
    display: grid;
    gap: 56px;
}

.section-heading {
    display: grid;
    gap: 8px;
}

.split-story {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: start;
}

.split-story-alt {
    padding-top: 8px;
}

.split-story-alt .section-heading {
    order: 2;
}

.split-story-alt .story-frame {
    order: 1;
}

.story-frame {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(21, 50, 67, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 250, 0.98));
}

.story-frame-alt {
    background:
        linear-gradient(180deg, rgba(243, 248, 250, 0.98), rgba(232, 241, 245, 0.98));
}

.story-frame::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 120px;
    height: 120px;
    border-top: 4px solid var(--accent-strong);
    border-left: 4px solid var(--accent);
    pointer-events: none;
}

.story-frame-alt::before {
    left: auto;
    right: -1px;
    border-left: 0;
    border-right: 4px solid var(--accent);
}

.story-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(35, 135, 200, 0.55);
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.story-frame-alt .story-chip {
    margin-left: auto;
}

.text-block {
    display: grid;
    gap: 18px;
    max-width: 860px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 249, 0.96));
}

.feature-card h3 {
    margin: 0;
    font-size: 1.3rem;
}

.showcase-band {
    position: relative;
    overflow: hidden;
    height: 420px;
    background: #000000;
}

.showcase-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
    filter: brightness(0.72);
    transform: scale(1.08);
    transform-origin: center center;
}

.showcase-copy {
    position: absolute;
    inset: 0;
    z-index: 1;
    max-width: 980px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.showcase-copy p {
    margin: 0;
    max-width: 1100px;
    padding: 28px 34px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: linear-gradient(135deg, rgba(10, 16, 21, 0.62), rgba(18, 28, 35, 0.54));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.45;
    letter-spacing: 0.04em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.gallery-card {
    margin: 0;
    min-height: 280px;
    overflow: hidden;
    border: 1px solid rgba(21, 50, 67, 0.08);
    background: #ffffff;
}

.gallery-card-large {
    grid-row: auto;
    min-height: 280px;
}

.gallery-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-section-stats {
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.stats-heading h2 {
    margin: 0;
    max-width: 260px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 0.98;
    text-transform: uppercase;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.stat-card {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
}

.stat-card strong {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 600;
}

.stat-card span {
    color: var(--muted);
    font-size: 1.1rem;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
}

.race-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
}

.streamers-section {
    margin-top: 36px;
    padding: 42px 28px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
        url("../img/streamers-bg.png") center center / cover no-repeat;
}

.streamers-overlay {
    display: grid;
    grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.8fr);
    gap: 26px;
    align-items: start;
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.streamer-card {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    align-content: start;
    gap: 14px;
    min-height: 360px;
    padding: 22px;
    border-radius: 12px;
    background: rgba(14, 18, 22, 0.82);
    color: #ffffff;
}

.streamer-card-no-photo {
    grid-template-rows: auto 1fr auto;
    min-height: 220px;
}

.streamer-card-title {
    align-content: center;
    grid-template-rows: 1fr;
    min-height: 100%;
}

.streamer-card-title h3 {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
    font-weight: 400;
    text-transform: lowercase;
}

.streamer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 8px;
    background: #ffffff;
    color: #2f2f39;
    font-weight: 700;
    font-size: 0.85rem;
    align-self: start;
}

.streamer-link {
    text-decoration: none;
}

.streamer-card img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    align-self: end;
}

.streamer-card h4 {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 1.15rem;
    line-height: 1.05;
    font-weight: 600;
}

.streamer-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.race-strip-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(21, 50, 67, 0.08);
    background: #ffffff;
}

.race-strip-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.65 / 1;
    object-fit: cover;
}

.content-section-platforms {
    background: #ffffff;
    padding-top: 20px;
}

.platform-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
    padding: 48px 32px;
    border: 1px solid rgba(21, 50, 67, 0.08);
    background: #ffffff;
}

.platform-logo {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.platform-logo img {
    display: block;
    max-width: min(100%, 280px);
    max-height: 180px;
    width: auto;
    height: auto;
}

.text-link {
    color: var(--accent-strong);
    font-weight: 700;
}

.contact-section {
    padding: 24px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 48px;
    align-items: start;
}

.contact-copy {
    display: grid;
    gap: 20px;
    align-content: start;
}

.contact-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 0.98;
}

.contact-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-card {
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    border: 1px solid rgba(21, 50, 67, 0.12);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 44px rgba(21, 50, 67, 0.05);
}

.contact-card-label {
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.contact-card-text {
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(21, 50, 67, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 60px rgba(21, 50, 67, 0.08);
}

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

.form-field {
    display: grid;
    gap: 8px;
}

.form-field span {
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(21, 50, 67, 0.14);
    background: #ffffff;
    color: var(--text);
    padding: 14px 16px;
    font: inherit;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: 2px solid rgba(35, 135, 200, 0.16);
    border-color: rgba(35, 135, 200, 0.34);
}

.muted {
    color: var(--muted);
}

.gallery-page-section {
    padding: 24px 0 80px;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-thumb {
    display: block;
    width: 100%;
    height: 260px;
    padding: 0;
    border: 0;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 20px 52px rgba(21, 50, 67, 0.08);
}

.gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.02);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 13, 17, 0.92);
}

.gallery-lightbox-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 16px;
    width: min(100% - 48px, 1380px);
    height: calc(100vh - 48px);
    margin: 24px auto;
    padding: 24px 0 88px;
}

.gallery-lightbox-figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.gallery-lightbox-figure img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 180px);
    width: auto;
    height: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    border: 0;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    cursor: pointer;
}

.gallery-lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
    border-radius: 999px;
}

.gallery-lightbox-nav {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    font-size: 2.2rem;
    line-height: 1;
}

.gallery-lightbox-counter {
    position: absolute;
    top: 12px;
    left: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

.gallery-lightbox-strip {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 120px;
    gap: 12px;
    overflow-x: auto;
    padding: 12px 0 0;
}

.gallery-lightbox-strip button {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0.55;
}

.gallery-lightbox-strip button.is-active {
    opacity: 1;
}

.gallery-lightbox-strip img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-lightbox-noscript {
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.sponsors-section {
    padding: 24px 0 72px;
}

.sponsors-section-alt {
    background: rgba(255, 255, 255, 0.58);
}

.sponsors-stack {
    display: grid;
    gap: 28px;
}

.sponsor-highlight {
    display: grid;
    gap: 14px;
    max-width: 760px;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sponsor-grid-secondary {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(21, 50, 67, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 52px rgba(21, 50, 67, 0.06);
}

.sponsor-card-dark {
    background: #0a0f12;
}

.sponsor-card-text span {
    color: var(--text);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.sponsor-card img {
    display: block;
    max-width: 100%;
    max-height: 92px;
    width: auto;
    height: auto;
}

@media (max-width: 760px) {
    .site-header .wrap,
    .site-footer .wrap {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-grid-main {
        gap: 0;
    }

    .footer-brand-panel {
        padding: 28px 20px;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .site-nav {
        flex-wrap: wrap;
    }

    .hero-panel {
        padding: 24px;
    }

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

    .news-story-card,
    .news-story-card-alt {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .drivers-grid,
    .driver-card,
    .driver-card-featured,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .driver-card,
    .driver-card-featured {
        padding: 24px;
    }

    .split-story-alt .section-heading,
    .split-story-alt .story-frame {
        order: initial;
    }

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

    .showcase-band {
        height: 320px;
    }

    .showcase-media {
        height: 100%;
    }

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

    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-grid,
    .sponsor-grid-secondary {
        grid-template-columns: 1fr;
    }

    .gallery-thumb {
        height: 220px;
    }

    .gallery-lightbox-shell {
        grid-template-columns: 1fr;
        width: min(100% - 24px, 1380px);
        height: calc(100vh - 24px);
        margin: 12px auto;
        padding: 52px 0 92px;
    }

    .gallery-lightbox-nav {
        position: absolute;
        bottom: 116px;
        z-index: 2;
    }

    .gallery-lightbox-prev {
        left: 0;
    }

    .gallery-lightbox-next {
        right: 0;
    }

    .gallery-lightbox-figure img {
        max-height: calc(100vh - 220px);
    }

    .stats-grid,
    .race-strip,
    .platform-card,
    .streamers-overlay {
        grid-template-columns: 1fr;
    }

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

    .streamer-card {
        min-height: 240px;
    }

    .streamers-section {
        padding: 24px 16px;
    }

    .streamers-overlay {
        gap: 16px;
    }

    .streamer-card-title h3 {
        font-size: 2.3rem;
    }

    .streamer-card img {
        max-height: 120px;
    }

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

    .gallery-card,
    .gallery-card-large {
        min-height: 240px;
    }

    .content-section {
        padding: 56px 0;
    }
}
