:root {
    --primary: #0A66C2;
    --primary-dark: #084C91;
    --primary-light: #2F80ED;
    --primary-soft: rgba(47, 128, 237, 0.12);
    --bg: #EEF4FA;
    --card: #FFFFFF;
    --line: #D9E5F1;
    --line-strong: #C5D6E8;
    --text: #1F2937;
    --text-soft: #6B7280;
    --text-inverse: #E5ECFF;
    --shadow-lg: 0 28px 64px rgba(8, 76, 145, 0.18);
    --shadow-md: 0 16px 34px rgba(10, 102, 194, 0.12);
    --shadow-sm: 0 10px 24px rgba(31, 41, 55, 0.06);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Be Vietnam Pro", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(47, 128, 237, 0.12), transparent 22%),
        linear-gradient(180deg, #F6FAFE 0%, var(--bg) 38%, #EBF2F9 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ion-icon {
    flex: 0 0 auto;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.landing-app {
    position: relative;
    overflow-x: clip;
}

.hero-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
        linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
}

.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 78%);
    opacity: 0.28;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.hero-orb--one {
    top: -120px;
    left: -90px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.16);
}

.hero-orb--two {
    top: 50px;
    right: -70px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.09);
}

.app-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-chip__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    font-size: 1.32rem;
}

.brand-chip__copy {
    display: grid;
    gap: 2px;
}

.brand-chip__copy strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-chip__copy small {
    color: rgba(229, 236, 255, 0.82);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.sport-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    cursor: default;
}

.sport-chip span {
    font-size: 0.95rem;
    font-weight: 700;
}

.app-bar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.round-icon,
.avatar-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transition: transform 0.22s ease, background 0.22s ease;
}

.avatar-icon {
    border-radius: 999px;
    overflow: hidden;
    font-size: 1.78rem;
}

.avatar-icon.has-image {
    padding: 0;
    background: rgba(255, 255, 255, 0.18);
}

.avatar-icon__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

.round-icon:hover,
.avatar-icon:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
}

.web-notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 2px solid var(--primary-dark);
    border-radius: 999px;
    background: #FF5B6E;
    box-shadow: 0 10px 20px rgba(255, 91, 110, 0.28);
    color: #FFFFFF;
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.web-notification-badge[hidden] {
    display: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 28px;
    align-items: center;
    padding: 30px 0 42px;
}

.hero-copy {
    padding: 8px 0 10px;
}

.hero-badge,
.section-chip,
.feature-event__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-badge {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.hero-copy h1 {
    margin: 16px 0 10px;
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.hero-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(229, 236, 255, 0.88);
    font-size: 1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    background: #FFFFFF;
    color: var(--primary-dark);
    box-shadow: 0 12px 28px rgba(8, 76, 145, 0.18);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.button--feature {
    width: 100%;
    margin-top: 18px;
    background: var(--primary);
    color: #FFFFFF;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.metric-pill {
    padding: 14px 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.metric-pill span {
    display: block;
    color: rgba(229, 236, 255, 0.8);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.metric-pill strong {
    display: block;
    margin-top: 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.hero-highlight {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.hero-highlight__media {
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.06);
}

.hero-highlight__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-highlight__body {
    padding: 20px;
}

.section-chip {
    border: 1px solid var(--line-strong);
    background: rgba(10, 102, 194, 0.06);
    color: var(--primary-dark);
}

.section-chip--soft {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

.hero-highlight__body h2 {
    margin: 12px 0 0;
    font-size: 1.4rem;
    line-height: 1.35;
}

.hero-highlight__body p {
    margin: 10px 0 0;
    color: rgba(229, 236, 255, 0.84);
    font-size: 0.92rem;
    line-height: 1.7;
}

.hero-highlight__event {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-highlight__event small {
    display: block;
    color: rgba(229, 236, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-highlight__event strong {
    display: block;
    margin-top: 6px;
    font-size: 1rem;
    line-height: 1.5;
}

.hero-highlight__event span {
    color: rgba(229, 236, 255, 0.82);
    font-size: 0.86rem;
    text-align: right;
}

.landing-main {
    padding: 28px 0 120px;
}

.stack-layout {
    display: grid;
    gap: 20px;
}

.showcase-grid,
.dual-grid {
    display: grid;
    gap: 20px;
}

.showcase-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
}

.dual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.panel--feature {
    padding: 20px;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.section-heading p {
    margin: 0;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 6px 0 0;
    font-size: 1.48rem;
    line-height: 1.25;
}

.section-heading--compact {
    margin-bottom: 14px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 108px;
    padding: 14px 8px;
    border-radius: 12px;
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 14px 26px rgba(10, 102, 194, 0.14);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.menu-card:hover,
.menu-card:focus-visible {
    transform: translateY(-3px);
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: 0 18px 32px rgba(10, 102, 194, 0.18);
}

.menu-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 1.2rem;
}

.menu-card__label {
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.25;
}

.banner-stage {
    display: grid;
    gap: 14px;
}

.banner-viewport {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #FFFFFF;
}

.banner-track {
    display: flex;
    transition: transform 0.45s ease;
}

.banner-slide {
    min-width: 100%;
    padding: 6px;
}

.banner-slide__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(47, 128, 237, 0.16), rgba(10, 102, 194, 0.32));
}

.banner-slide__media img,
.data-card__media img,
.court-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slide__overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 14px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(8, 76, 145, 0.08), rgba(8, 76, 145, 0.74));
    color: #FFFFFF;
}

.banner-slide__overlay span {
    display: block;
    color: rgba(229, 236, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.banner-slide__overlay strong {
    display: block;
    margin-top: 8px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.banner-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #FFFFFF;
    color: var(--primary-dark);
    cursor: pointer;
}

.dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(10, 102, 194, 0.22);
    cursor: pointer;
    appearance: none;
    transition: transform 0.22s ease, background 0.22s ease;
}

.dot.is-active {
    transform: scale(1.2);
    background: var(--primary);
}

.feature-event {
    display: grid;
    gap: 14px;
}

.feature-event__status {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.feature-event h3 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.35;
}

.feature-event p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.feature-event__meta {
    display: grid;
    gap: 12px;
}

.feature-event__meta article {
    padding: 14px;
    border-radius: 16px;
    background: #F8FBFF;
    border: 1px solid var(--line);
}

.feature-event__meta small {
    display: block;
    color: var(--text-soft);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-event__meta strong {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.5;
}

.cards-grid {
    display: grid;
    gap: 14px;
}

.cards-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid--stack {
    grid-template-columns: 1fr;
}

.data-card {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #FFFFFF;
    box-shadow: 0 8px 18px rgba(31, 41, 55, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.data-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(10, 102, 194, 0.1);
}

.data-card__media {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(47, 128, 237, 0.16), rgba(10, 102, 194, 0.28));
}

.data-card__body {
    padding: 14px;
}

.meta-row,
.inline-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.meta-row {
    justify-content: space-between;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.muted {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.data-card h3 {
    margin: 10px 0 0;
    font-size: 1rem;
    line-height: 1.45;
}

.data-card__body p {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.65;
}

.inline-meta {
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 0.84rem;
}

.court-card__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px 14px 0;
}

.court-thumb {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(47, 128, 237, 0.16), rgba(10, 102, 194, 0.28));
}

.court-thumb--fallback,
.media-placeholder,
.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.court-thumb--fallback,
.media-placeholder {
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 700;
}

.media-placeholder {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.video-card .data-card__body {
    padding-top: 12px;
}

.team-stack {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.team-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    overflow: hidden;
    border-radius: 999px;
    background: #DCE8F6;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    flex: 1;
    font-size: 0.92rem;
    font-weight: 700;
}

.team-score {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 800;
}

.link-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.link-tile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #F8FBFF;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.link-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(10, 102, 194, 0.12);
}

.link-tile__copy strong {
    display: block;
    font-size: 1rem;
}

.link-tile__copy span {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.84rem;
    line-height: 1.6;
}

.link-tile ion-icon {
    color: var(--primary);
    font-size: 1.3rem;
}

.loading-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(90deg, #F8FBFF 0%, #EEF4FA 50%, #F8FBFF 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

.loading-card__media {
    height: 150px;
    border-radius: 14px;
    background: rgba(10, 102, 194, 0.08);
}

.loading-card__line {
    height: 12px;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(10, 102, 194, 0.1);
}

.loading-card__line--short {
    width: 50%;
}

.loading-card__line--medium {
    width: 72%;
}

.loading-card__line--tiny {
    width: 38%;
}

.empty-state {
    min-height: 180px;
    padding: 20px;
    border: 1px dashed var(--line-strong);
    border-radius: 18px;
    background: #F8FBFF;
    color: var(--text-soft);
    line-height: 1.7;
}

.mobile-tabbar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 30;
    display: none;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: stretch;
    gap: 2px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(10, 102, 194, 0.96);
    box-shadow: 0 20px 48px rgba(8, 76, 145, 0.3);
    backdrop-filter: blur(14px);
}

.mobile-tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 52px;
    padding: 4px 6px;
    color: rgba(229, 236, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    border-radius: 16px;
}

.mobile-tabbar__item ion-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.mobile-tabbar__item span {
    display: block;
    width: 100%;
    line-height: 1.15;
    white-space: nowrap;
}

.mobile-tabbar--five {
    gap: 1px;
    padding-left: 6px;
    padding-right: 6px;
}

.mobile-tabbar--five .mobile-tabbar__item {
    min-height: 56px;
    padding: 4px 2px;
    font-size: 0.64rem;
}

.mobile-tabbar--five .mobile-tabbar__item ion-icon {
    font-size: 1.12rem;
}

.mobile-tabbar--five .mobile-tabbar__item span {
    white-space: normal;
    line-height: 1.06;
}

.mobile-tabbar__item.is-active {
    color: #FFFFFF;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal--up {
    transform: translateY(26px);
}

.reveal--right {
    transform: translateX(20px);
}

.reveal--delay-1 {
    transition-delay: 0.12s;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 1100px) {
    .hero-grid,
    .showcase-grid,
    .dual-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 24px, 100%);
    }

    .app-bar {
        flex-wrap: wrap;
    }

    .hero-metrics,
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-header {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        padding-bottom: 12px;
    }

    .hero-grid,
    .showcase-grid {
        display: none;
    }

    .app-bar {
        padding-bottom: 4px;
    }

    .sport-chip {
        display: none;
    }

    .hero-grid {
        padding: 24px 0 28px;
    }

    .landing-main {
        padding-top: 16px;
        padding-bottom: 96px;
    }

    .stack-layout {
        gap: 18px;
    }

    .panel {
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }

    .panel--menu .section-heading,
    .showcase-grid,
    [data-links-section][hidden] {
        display: none;
    }

    .menu-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .menu-card {
        min-height: 88px;
        border-radius: 8px;
        padding: 10px 6px;
        box-shadow: 0 10px 18px rgba(10, 102, 194, 0.14);
    }

    .menu-card__icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .menu-card__label {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    #tournaments .section-heading,
    #courts .section-heading,
    #videos .section-heading,
    #community .section-heading {
        margin-bottom: 12px;
    }

    #tournaments .section-heading p,
    #courts .section-heading p,
    #videos .section-heading p,
    #community .section-heading p {
        display: none;
    }

    #tournaments .section-heading h2,
    #courts .section-heading h2,
    #videos .section-heading h2,
    #community .section-heading h2 {
        font-size: 1.24rem;
    }

    .cards-grid--three,
    .cards-grid--two,
    .link-stack {
        grid-template-columns: 1fr;
    }

    #tournaments .cards-grid--three {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #tournaments .cards-grid--three::-webkit-scrollbar {
        display: none;
    }

    #tournaments .tournament-card {
        scroll-snap-align: start;
    }

    #courts .cards-grid--two {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #courts .cards-grid--two::-webkit-scrollbar {
        display: none;
    }

    #courts .court-card {
        scroll-snap-align: start;
    }

    .tournament-card .meta-row,
    .tournament-card p,
    .tournament-card .inline-meta {
        display: none;
    }

    .tournament-card .data-card__body {
        padding: 12px 12px 14px;
    }

    .tournament-card h3 {
        margin: 0;
        font-size: 1rem;
        line-height: 1.45;
    }

    .court-card .inline-meta {
        display: grid;
        gap: 4px;
    }

    .mobile-tabbar {
        display: grid;
    }
}

@media (max-width: 480px) {
    .round-icon,
    .avatar-icon {
        width: 36px;
        height: 36px;
    }

    .hero-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .brand-chip__copy small {
        display: none;
    }

    .section-heading h2 {
        font-size: 1.3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
