/* =========================================================
   SYNAPSE '26 — CULTURALS
   SPORTS-MATCHED FINAL CSS
========================================================= */

:root {
    --black: #050505;
    --black-soft: #090909;
    --blue: #00a8ff;
    --red: #ff1744;
    --white: #ffffff;
    --grey: #777777;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font-family: inherit;
}


/* =========================================================
   NAVBAR
========================================================= */

.synapse-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid #181818;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-inner {
    width: min(1400px, 90%);
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.synapse-logo {
    flex-shrink: 0;

    color: #ffffff;

    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.12em;
    white-space: nowrap;

    z-index: 1102;
}

.synapse-logo span {
    color: #777777;
    font-weight: 500;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 34px;

    margin-left: auto;
    margin-right: 30px;
}

.main-nav a {
    position: relative;

    color: #777777;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.22em;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--blue);

    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

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


/* =========================================================
   BACK HOME
========================================================= */

.back-home {
    flex-shrink: 0;

    padding: 12px 20px;

    border: 1px solid #292929;

    color: #aaaaaa;
    background: transparent;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.18em;

    white-space: nowrap;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.back-home:hover {
    color: #ffffff;
    border-color: var(--blue);
    background: rgba(0, 168, 255, 0.04);
}


/* =========================================================
   HAMBURGER
========================================================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    background: transparent;

    cursor: pointer;

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

    flex-direction: column;

    z-index: 1103;
}

.menu-button span {
    display: block;

    width: 22px;
    height: 1px;

    margin: 3px 0;

    background: #ffffff;

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

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

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

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


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

.cultural-main {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background: var(--black);
}


/* =========================================================
   HERO
   MATCHED TO SPORTS
========================================================= */

.cultural-hero {
    position: relative;

    min-height: 780px;

    padding: 180px 5% 100px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

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

    position: absolute;
    inset: 0;

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

    background-size: 80px 80px;

    pointer-events: none;
}

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

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(0, 168, 255, 0.09),
            transparent 70%
        );

    pointer-events: none;
}

.hero-inner {
    position: relative;

    z-index: 2;

    width: min(1400px, 100%);

    margin: auto;
}

.hero-eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

    color: #666666;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.4em;
}

.hero-eyebrow span {
    width: 40px;
    height: 1px;

    background: #444444;
}

.cultural-hero h1 {
    margin-top: 30px;

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

    max-width: 1200px;

    color: #ffffff;

    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(70px, 11vw, 155px);

    line-height: 0.78;
    letter-spacing: -0.08em;
}

.cultural-hero h1 strong {
    display: block;

    color: var(--blue);

    font-weight: 900;
}

.cultural-hero p {
    margin-top: 38px;

    max-width: 560px;

    color: #777777;

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   EVENTS / CATEGORY SECTION
   MATCHED TO SPORTS EVENTS SECTION
========================================================= */

.category-section {
    position: relative;

    width: min(1400px, 90%);

    margin: auto;

    padding: 50px 0 120px;
}


/* =========================================================
   EVENTS HEADING
========================================================= */

.section-heading {
    position: relative;

    z-index: 2;

    margin-bottom: 45px;
}

.section-eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #555555;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.35em;
}

.section-eyebrow span {
    width: 35px;
    height: 1px;

    background: #333333;
}

.section-heading h2 {
    margin-top: 18px;

    color: #ffffff;

    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(55px, 7vw, 100px);

    line-height: 0.82;
    letter-spacing: -0.07em;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading p {
    max-width: 500px;

    margin-top: 25px;

    color: #666666;

    font-size: 11px;
    line-height: 1.8;
}


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

.category-section::before {
    content: "";

    position: absolute;

    inset: 0;

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

    background-size: 80px 80px;

    pointer-events: none;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   CATEGORY CARD
   FIXED 4:5
========================================================= */

.category-card {
    position: relative;

    width: 100%;
    height: auto !important;

    min-height: 0 !important;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #090909;

    border: 1px solid #1b1b1b;

    cursor: pointer;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

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

    border-color: var(--blue);
}


/* =========================================================
   CATEGORY IMAGE
========================================================= */

.category-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #080808;
}

.category-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}


/* =========================================================
   CATEGORY OVERLAY
========================================================= */

.category-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 15%,
            rgba(0, 0, 0, 0.92) 100%
        );
}


/* =========================================================
   CATEGORY NUMBER
========================================================= */

.category-number {
    position: absolute;

    top: 22px;
    right: 24px;

    z-index: 2;

    color: #333333;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.2em;
}


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.category-content {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 24px;

    z-index: 3;
}

.category-content > span {
    display: block;

    color: var(--blue);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.28em;
}

.category-content h2 {
    margin-top: 10px;

    color: #ffffff;

    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 32px;

    line-height: 0.9;
    letter-spacing: -0.05em;
}

.category-content h2 strong {
    display: block;

    color: #ffffff;
}

.category-content p {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 8px;
    line-height: 1.6;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.explore-button {
    margin-top: 22px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #ffffff;

    cursor: pointer;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.explore-button b {
    margin-left: 8px;

    color: var(--red);

    font-size: 11px;
}


/* =========================================================
   EVENT PAGE
========================================================= */

.event-page {
    display: none;

    position: relative;

    width: 100%;

    padding: 50px 5% 120px;
}

.event-page.active {
    display: block;
}

.event-page-header {
    width: min(1400px, 100%);

    margin: 0 auto 40px;

    padding-bottom: 25px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid #181818;
}

.event-page-header > div {
    text-align: right;
}

.event-page-header span {
    display: block;

    margin-bottom: 8px;

    color: #666666;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.3em;
}

.event-page-header h2 {
    margin-top: 8px;

    color: #ffffff;

    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(45px, 6vw, 85px);

    line-height: 0.82;
    letter-spacing: -0.07em;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.back-button {
    display: inline-flex;

    align-items: center;

    padding: 12px 20px;

    border: 1px solid #292929;

    background: transparent;

    color: #aaaaaa;

    cursor: pointer;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.18em;

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

.back-button:hover {
    color: #ffffff;

    border-color: var(--blue);

    transform: translateX(-4px);
}


/* =========================================================
   EVENT GRID
========================================================= */

.events-grid {
    width: min(1400px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   EVENT CARD
   FIXED 4:5
========================================================= */

.event-card {
    position: relative;

    width: 100%;
    height: auto !important;

    min-height: 0 !important;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #090909;

    border: 1px solid #1b1b1b;

    cursor: pointer;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

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

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

.event-card-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #080808;
}

.event-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.65s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 10%,
            rgba(0, 0, 0, 0.95) 100%
        );
}

.event-card-content {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    z-index: 2;
}

.event-card-content > span {
    color: var(--blue);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.2em;
}

.event-card-content h3 {
    margin-top: 8px;

    color: #ffffff;

    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 20px;

    line-height: 1;
    letter-spacing: -0.03em;
}

.event-card-action {
    margin-top: 17px;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #ffffff;

    font-family: inherit;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.18em;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
}

.event-card-action b {
    margin-left: 8px;

    color: var(--red);

    font-size: 11px;
}


/* =========================================================
   EVENT DETAILS
========================================================= */

.event-details {
    display: none;

    width: 100%;

    padding: 50px 5% 120px;
}

.event-details.active {
    display: block;
}

.details-layout {
    width: min(1400px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: start;
}

.details-image {
    position: sticky;

    top: 110px;

    width: 100%;
    height: auto !important;

    min-height: 0 !important;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #090909;

    border: 1px solid #1b1b1b;
}

.details-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.details-information {
    padding-top: 5px;

    min-width: 0;
}

.details-information > span {
    color: var(--blue);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.25em;
}

.details-information h1 {
    margin-top: 15px;

    color: #ffffff;

    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(48px, 6vw, 85px);

    line-height: 0.82;
    letter-spacing: -0.06em;
}

.details-line {
    width: 70px;
    height: 2px;

    margin-top: 25px;

    background: var(--red);
}

.details-information h3 {
    margin-top: 28px;

    color: #ffffff;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.25em;
}

.rules-list {
    margin-top: 30px;

    padding-left: 0;

    list-style: none;
}

.rules-list li {
    position: relative;

    padding-left: 20px;

    margin-bottom: 14px;

    color: #777777;

    font-size: 11px;

    line-height: 1.7;
}

.rules-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--blue);
}


/* =========================================================
   REGISTRATION FEE
========================================================= */

.registration-fee {
    display: flex;

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

    gap: 20px;

    margin-top: 30px;

    padding: 18px 20px;

    background: #090909;

    border: 1px solid #292929;
}

.registration-fee span {
    color: #555555;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.22em;
}

.registration-fee strong {
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.08em;
}


/* =========================================================
   DETAIL ACTION ROW
========================================================= */

.details-action-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    align-items: stretch;

    margin-top: 30px;
}

.details-action-row .register-button,
.details-action-row .back-to-categories {
    width: 100%;
    height: 48px;

    margin-top: 0;

    display: inline-flex;

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


/* =========================================================
   REGISTER
========================================================= */

.register-button,
.register-btn {
    display: inline-flex;

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

    gap: 20px;

    margin-top: 30px;

    padding: 15px 22px;

    border: 1px solid #ffffff;

    color: #ffffff;

    background: transparent;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.2em;

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

.register-button:hover,
.register-btn:hover {
    background: #ffffff;

    color: #050505;
}

.register-button span,
.register-btn span {
    color: var(--blue);

    font-size: 13px;
}


/* =========================================================
   BACK TO CATEGORIES
========================================================= */

.back-to-categories {
    display: block;

    margin-top: 14px;

    padding: 13px 21px;

    border: 1px solid #292929;

    background: transparent;

    color: #777777;

    cursor: pointer;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 0.18em;

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

.back-to-categories:hover {
    color: #ffffff;

    border-color: var(--blue);

    background: rgba(0, 168, 255, 0.04);

    transform: translateX(4px);
}


/* =========================================================
   CONTACTS
========================================================= */

.details-contacts {
    width: 100%;

    margin-top: 35px;

    padding-top: 35px;

    border-top: 1px solid #181818;
}

.details-section-label {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #555555;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.35em;
}

.details-section-label span {
    width: 35px;
    height: 1px;

    background: #333333;
}

.contacts-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 18px;
}

.contact-card {
    display: flex;

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

    gap: 15px;

    min-width: 0;
    min-height: 70px;

    padding: 18px;

    background: #090909;

    border: 1px solid #191919;
}

.contact-card strong {
    display: block;

    color: #ffffff;

    font-size: 10px;

    letter-spacing: 0.12em;
}

.contact-card span {
    display: block;

    margin-top: 7px;

    color: #555555;

    font-size: 7px;

    letter-spacing: 0.12em;
}

.contact-buttons {
    display: flex;

    gap: 6px;
}

.contact-buttons a {
    padding: 9px 12px;

    border: 1px solid #292929;

    color: #777777;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.12em;

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

.contact-buttons a:hover {
    color: #ffffff;

    border-color: var(--blue);
}


/* =========================================================
   CTA
========================================================= */

.cultural-cta {
    position: relative;

    padding: 120px 5% 110px;

    text-align: center;

    border-top: 1px solid #181818;

    overflow: hidden;
}

.cultural-cta::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: 50%;
    bottom: -470px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(0, 168, 255, 0.08),
            transparent 70%
        );

    pointer-events: none;
}

.cta-inner {
    position: relative;

    z-index: 2;

    width: min(1200px, 100%);

    margin: auto;
}

.cta-inner > span {
    color: #555555;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.35em;
}

.cta-inner h2 {
    margin-top: 20px;

    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(55px, 9vw, 120px);

    line-height: 0.82;
    letter-spacing: -0.07em;
}

.cta-inner h2 strong {
    color: var(--blue);
}

.cta-inner p {
    margin: 28px auto;

    color: #666666;

    font-size: 10px;
}

.cta-button {
    display: inline-flex;

    align-items: center;

    gap: 30px;

    padding: 15px 22px;

    border: 1px solid #ffffff;

    color: #ffffff;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.2em;

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

.cta-button:hover {
    background: #ffffff;

    color: #050505;
}

.cta-button span {
    color: var(--blue);

    font-size: 13px;
}


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

.synapse-footer {
    position: relative;

    width: 100%;

    padding: 90px 5% 30px;

    background: #030303;

    color: #ffffff;

    border-top: 1px solid #181818;

    overflow: hidden;
}

.synapse-footer::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    bottom: -520px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(0, 168, 255, 0.08),
            transparent 70%
        );

    pointer-events: none;
}

.synapse-footer::after {
    content: "";

    position: absolute;

    inset: 0;

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

    background-size: 70px 70px;

    pointer-events: none;
}

.footer-top {
    position: relative;

    z-index: 2;

    width: min(1400px, 100%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        0.8fr;

    gap: 60px;

    padding-bottom: 70px;

    border-bottom: 1px solid #171717;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    font-family:
        "Arial Black",
        Arial,
        Helvetica,
        sans-serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -0.06em;
}

.footer-logo span {
    color: #666666;

    font-weight: 300;
}

.footer-brand p {
    max-width: 330px;

    margin-top: 25px;

    color: #555555;

    font-size: 8px;

    line-height: 1.9;

    font-weight: 600;

    letter-spacing: 0.20em;
}

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer-heading {
    margin-bottom: 10px;

    color: #555555;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.35em;
}

.footer-column a {
    color: #777777;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.15em;

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

.footer-column a:hover {
    color: #ffffff;

    transform: translateX(3px);
}

.footer-social a {
    color: #ffffff;
}

.footer-social span {
    color: #444444;

    font-size: 7px;

    letter-spacing: 0.15em;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 20px;

        margin-right: 20px;
    }

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

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

    .details-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .details-image {
        position: relative;

        top: auto;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MOBILE
   MATCHED TO SPORTS
========================================================= */

@media (max-width: 700px) {

    /* NAVBAR */

    .synapse-navbar {
        height: 75px;
    }

    .navbar-inner {
        width: 90%;
    }

    .synapse-logo {
        font-size: 15px;
    }

    .back-home {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .main-nav {
        position: fixed;

        inset: 0;

        width: 100%;

        height: 100vh;
        height: 100dvh;

        margin: 0;

        padding: 100px 9% 45px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 0;

        background: #050505;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-20px);

        transition:
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;

        z-index: 1100;

        overflow-y: auto;
    }

    .main-nav.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }

    .main-nav a {
        width: 100%;

        padding: 15px 0;

        color: #888888;

        font-size: 21px;

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

        transform: translateX(-20px);

        opacity: 0;

        transition:
            color .25s ease,
            transform .4s ease,
            opacity .4s ease;
    }

    .main-nav.active a {
        transform: translateX(0);

        opacity: 1;
    }

    .main-nav a::after {
        display: none;
    }


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

    .cultural-hero {
        min-height: 650px;

        padding: 130px 6% 80px;

        align-items: center;
    }

    .hero-inner {
        width: 88%;
    }

    .hero-eyebrow {
        font-size: 5px;

        letter-spacing: .22em;
    }

    .hero-eyebrow span {
        width: 20px;
    }

    .cultural-hero h1 {
        margin-top: 30px;

        font-size: 62px;
    }

    .cultural-hero p {
        margin-top: 38px;

        font-size: 10px;
    }


    /* =====================================================
       EVENTS SECTION
    ===================================================== */

    .category-section {
        width: 88%;

        padding: 50px 0 75px;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-eyebrow {
        font-size: 7px;

        letter-spacing: .30em;
    }

    .section-eyebrow span {
        width: 25px;
    }

    .section-heading h2 {
        font-size: 55px;
    }

    .section-heading p {
        margin-top: 25px;

        font-size: 10px;
    }


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

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

        gap: 8px;
    }

    .category-card {
        width: 100%;

        height: auto !important;

        min-height: 0 !important;

        aspect-ratio: 4 / 5;
    }

    .category-content {
        left: 20px;

        right: 20px;

        bottom: 20px;
    }

    .category-content h2 {
        font-size: 28px;
    }


    /* =====================================================
       EVENT PAGE
    ===================================================== */

    .event-page {
        padding: 50px 5% 75px;
    }

    .event-page-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-bottom: 28px;
    }

    .event-page-header > div {
        order: 2;

        text-align: left;
    }

    .event-page-header .back-button {
        order: 1;
    }

    .event-page-header h2 {
        font-size: 32px;
    }

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

        gap: 8px;
    }

    .event-card-content {
        left: 14px;

        right: 14px;

        bottom: 15px;
    }

    .event-card-content h3 {
        font-size: 16px;
    }


    /* =====================================================
       EVENT DETAILS
    ===================================================== */

    .event-details {
        padding: 50px 5% 75px;
    }

    .details-layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .details-image {
        position: relative;

        top: auto;

        aspect-ratio: 4 / 5;
    }

    .details-information h1 {
        font-size: 48px;
    }


    /* =====================================================
       REGISTRATION
    ===================================================== */

    .registration-fee {
        padding: 16px;
    }

    .registration-fee strong {
        font-size: 12px;
    }

    .details-action-row {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .details-action-row .register-button,
    .details-action-row .back-to-categories {
        width: 100%;

        min-width: 0;

        padding: 13px 10px;

        font-size: 7px;
    }


    /* =====================================================
       CONTACTS
    ===================================================== */

    .details-contacts {
        margin-top: 30px;

        padding-top: 30px;
    }

    .details-contacts .contacts-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .contact-card {
        flex-direction: column;

        align-items: flex-start;
    }

    .contact-buttons {
        width: 100%;
    }

    .contact-buttons a {
        flex: 1;

        text-align: center;
    }

    .back-to-categories {
        width: 100%;

        text-align: center;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .cultural-cta {
        padding: 80px 5% 80px;
    }

    .cta-inner h2 {
        font-size: 48px;
    }


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

    .synapse-footer {
        padding: 75px 7% 25px;
    }

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

        gap: 40px;

        padding-bottom: 55px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-logo {
        font-size: 48px;
    }

    .footer-brand p {
        font-size: 7px;

        max-width: 280px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;

        gap: 12px;

        line-height: 1.5;
    }
}


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

@media (max-width: 430px) {

    .cultural-hero {
        min-height: 650px;

        padding: 130px 6% 80px;
    }

    .cultural-hero h1 {
        font-size: 52px;
    }

    .cultural-hero p {
        font-size: 10px;
    }

    .category-section {
        width: 88%;

        padding: 50px 0 75px;
    }

    .section-heading h2 {
        font-size: 52px;
    }
	
	.category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

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

    .category-card,
    .event-card {
        aspect-ratio: 4 / 5;
    }
}

    .category-card,
    .event-card,
    .details-image {
        aspect-ratio: 4 / 5;
    }

    .event-page {
        padding: 45px 5% 65px;
    }

    .event-details {
        padding: 45px 5% 65px;
    }

    .details-information h1 {
        font-size: 40px;
    }

    .cta-inner h2 {
        font-size: 43px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .cultural-hero {
        min-height: 650px;

        padding: 125px 6% 75px;
    }

    .cultural-hero h1 {
        font-size: 48px;
    }

    .category-section {
        padding: 50px 0 70px;
    }
	
	.category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

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

    .category-card,
    .event-card {
        aspect-ratio: 4 / 5;
    }
}

    .category-card,
    .event-card,
    .details-image {
        aspect-ratio: 4 / 5;
    }

    .footer-logo {
        font-size: 43px;
    }
}

/* =========================================================
   FINAL MOBILE GRID OVERRIDE
   2 CARDS PER ROW — CATEGORY + EVENTS
========================================================= */

@media (max-width: 700px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .category-card,
    .event-card {
        width: 100%;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 430px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .category-card,
    .event-card {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 380px) {
    .category-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .category-card,
    .event-card {
        aspect-ratio: 4 / 5;
    }
}
