:root {
    --primary: #045694;
    --secondary: #689abf;
    --text: rgb(15, 23, 41);
    --hover: #045694;

    --white: #ffffff;
    --dark: #07111f;
    --dark-soft: #0f1d33;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --bg-soft: #eef6fb;

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 8px 24px rgba(15, 23, 41, 0.08);
    --shadow-md: 0 18px 50px rgba(15, 23, 41, 0.14);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.25s ease;
}

a:hover {
    color: var(--hover);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.04em;
    box-shadow: 0 12px 26px rgba(4, 86, 148, 0.24);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: -0.03em;
}

.logo-text small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 700;
    font-size: 14px;
}

.main-nav a {
    color: var(--text);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 12px 24px rgba(4, 86, 148, 0.2);
}

.header-cta:hover {
    color: var(--white);
    background: #034a7f;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    padding: 9px;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    border-radius: 999px;
}

/* Intro Section */

.site-main {
    min-height: 70vh;
}

.intro-section {
    position: relative;
    padding: 76px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(104, 154, 191, 0.22), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(4, 86, 148, 0.09);
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
}

.intro-content h1 {
    margin: 0;
    max-width: 780px;
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: var(--text);
}

.intro-content p {
    max-width: 650px;
    margin: 24px 0 0;
    font-size: 18px;
    color: var(--muted);
}

.intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 14px 26px rgba(4, 86, 148, 0.22);
}

.btn-primary:hover {
    color: var(--white);
    background: #034a7f;
    transform: translateY(-1px);
}

.btn-outline {
    background: var(--white);
    color: var(--text);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.intro-card {
    position: relative;
}

.stream-preview {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(7, 17, 31, 0.88), rgba(4, 86, 148, 0.72)),
        url('../images/hero-placeholder.jpg') center/cover no-repeat;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.stream-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.22), transparent 24%),
        linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.7));
}

.stream-top,
.stream-bottom,
.play-button {
    position: absolute;
    z-index: 2;
}

.stream-top {
    top: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-weight: 800;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.2);
}

.play-button {
    width: 86px;
    height: 86px;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.12);
    animation: pulsePlay 1.8s infinite;
}

.play-button span {
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid var(--primary);
}

.stream-bottom {
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.stream-bottom strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.stream-bottom small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.76);
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.32);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Placeholder Section */

.section-placeholder {
    padding: 74px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.section-heading p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.placeholder-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.placeholder-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--bg-soft);
    color: var(--primary);
    font-weight: 900;
}

.placeholder-card h3 {
    margin: 20px 0 8px;
    font-family: var(--font-heading);
    font-size: 23px;
    letter-spacing: -0.04em;
}

.placeholder-card p {
    margin: 0;
    color: var(--muted);
}

/* Footer */

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
}

.footer-logo .logo-text small {
    color: rgba(255, 255, 255, 0.62);
}

.footer-brand p {
    max-width: 360px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links h3 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 18px;
}

.footer-links a {
    display: block;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom-inner {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--white);
}

/* Responsive */

@media (max-width: 980px) {
    .main-nav {
        position: absolute;
        top: 78px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 18px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 12px;
        border-radius: 12px;
    }

    .main-nav a:hover {
        background: var(--bg-soft);
    }

    .mobile-menu-toggle {
        display: inline-block;
    }

    .header-search {
        display: none;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .stream-preview {
        min-height: 360px;
    }

    .placeholder-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        min-height: 70px;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .header-cta {
        display: none;
    }

    .intro-section {
        padding: 52px 0;
    }

    .intro-content h1 {
        font-size: 40px;
    }

    .intro-content p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }

    .stream-preview {
        min-height: 300px;
        border-radius: 24px;
    }

    .play-button {
        width: 72px;
        height: 72px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
    }
}

/* TV Homepage Layout */

.tv-shell-section {
    padding: 34px 0 74px;
}

.tv-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.tv-sidebar-wrap {
    position: sticky;
    top: 102px;
}

.tv-sidebar-card {
    border-radius: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.sidebar-block {
    padding: 22px;
    border-bottom: 1px solid var(--border);
}

.sidebar-block:last-child {
    border-bottom: 0;
}

.sidebar-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(4, 86, 148, 0.09);
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.sidebar-block h3,
.sidebar-block h4 {
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
}

.sidebar-block h3 {
    font-size: 24px;
    line-height: 1.08;
}

.sidebar-block h4 {
    font-size: 17px;
}

.sidebar-block p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.sidebar-nav {
    display: grid;
    gap: 9px;
    margin-top: 14px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border-radius: 15px;
    background: var(--bg);
    border: 1px solid transparent;
}

.sidebar-nav a:hover {
    border-color: rgba(4, 86, 148, 0.18);
    background: var(--bg-soft);
    color: var(--primary);
}

.sidebar-nav span {
    font-weight: 900;
    font-size: 14px;
}

.sidebar-nav small {
    color: var(--muted);
    font-size: 11px;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.sidebar-tags a {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--bg);
    color: var(--text);
    font-weight: 800;
    font-size: 12px;
}

.sidebar-tags a:hover {
    background: var(--primary);
    color: var(--white);
}

.sidebar-cta {
    background:
        radial-gradient(circle at top right, rgba(104, 154, 191, 0.26), transparent 34%),
        linear-gradient(135deg, #ffffff, #eef6fb);
}

.sidebar-btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-weight: 900;
    font-size: 14px;
}

.sidebar-btn:hover {
    color: var(--white);
    background: #034a7f;
}

/* Home Hero */

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 28px;
    min-height: 520px;
    padding: 38px;
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(4, 86, 148, 0.76)),
        url('../images/hero-placeholder.jpg') center/cover no-repeat;
    box-shadow: var(--shadow-md);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 68% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
        linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.72));
}

.home-hero-content,
.home-hero-player {
    position: relative;
    z-index: 2;
}

.home-hero-content {
    align-self: end;
    max-width: 720px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.status-pill,
.hero-category {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
    font-size: 12px;
    backdrop-filter: blur(12px);
}

.status-pill {
    gap: 8px;
    background: rgba(239, 68, 68, 0.24);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.22);
}

.hero-category {
    background: rgba(255, 255, 255, 0.14);
}

.home-hero h1 {
    margin: 0;
    max-width: 760px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.home-hero p {
    max-width: 640px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn-light {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.btn-light:hover {
    background: var(--white);
    color: var(--primary);
}

.home-hero-player {
    display: grid;
    place-items: center;
    min-height: 360px;
}

.hero-play-button {
    width: 108px;
    height: 108px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.12);
    animation: pulsePlayLarge 1.8s infinite;
}

.hero-play-button span {
    width: 0;
    height: 0;
    margin-left: 8px;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 28px solid var(--primary);
}

.player-glass-card {
    position: absolute;
    right: 28px;
    bottom: 28px;
    max-width: 290px;
    padding: 18px;
    border-radius: 20px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.player-glass-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 21px;
    letter-spacing: -0.04em;
}

.player-glass-card small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
}

@keyframes pulsePlayLarge {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.34);
    }

    70% {
        box-shadow: 0 0 0 28px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Sports Sections */

.sports-sections {
    display: grid;
    gap: 34px;
    margin-top: 34px;
}

.sports-section {
    padding: 28px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.section-header h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.section-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    background: var(--bg-soft);
    color: var(--primary);
    font-weight: 900;
    font-size: 13px;
}

.section-link:hover {
    background: var(--primary);
    color: var(--white);
}

.post-grid {
    display: grid;
    gap: 20px;
}

.post-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stream-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: 0.25s ease;
}

.stream-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.stream-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--dark);
}

.stream-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(7, 17, 31, 0.74));
}

.stream-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.stream-card:hover .stream-thumb img {
    transform: scale(1.06);
}

.stream-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
    font-size: 11px;
}

.stream-badge.live {
    background: #ef4444;
}

.stream-badge.upcoming {
    background: var(--primary);
}

.stream-badge.featured {
    background: #111827;
}

.mini-play {
    position: absolute;
    z-index: 2;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
}

.mini-play span {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--primary);
}

.stream-card-body {
    padding: 18px;
}

.card-category {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.stream-card-body h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.stream-card-body h3 a:hover {
    color: var(--primary);
}

.stream-card-body p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* Newsletter */

.newsletter-section {
    margin-top: 34px;
}

.newsletter-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 28px;
    align-items: center;
    padding: 36px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.newsletter-content h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.newsletter-content p {
    max-width: 640px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.newsletter-card .eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: var(--white);
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 16px;
    font-family: var(--font-body);
    font-size: 15px;
}

.newsletter-form button {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: var(--dark);
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
}

/* Homepage Responsive */

@media (max-width: 1100px) {
    .tv-shell {
        grid-template-columns: 1fr;
    }

    .tv-sidebar-wrap {
        position: static;
    }

    .tv-sidebar-card {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
    }

    .sidebar-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .home-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-hero-content {
        align-self: auto;
    }

    .home-hero-player {
        min-height: 260px;
    }

    .post-grid-3 {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tv-shell-section {
        padding-top: 22px;
    }

    .tv-sidebar-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .home-hero {
        padding: 24px;
        border-radius: 24px;
    }

    .home-hero h1 {
        font-size: 40px;
    }

    .home-hero p {
        font-size: 16px;
    }

    .home-hero-player {
        min-height: 220px;
    }

    .hero-play-button {
        width: 82px;
        height: 82px;
    }

    .hero-play-button span {
        border-top-width: 14px;
        border-bottom-width: 14px;
        border-left-width: 22px;
    }

    .player-glass-card {
        position: static;
        margin-top: 18px;
    }

    .sports-section {
        padding: 20px;
        border-radius: 22px;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .newsletter-card {
        padding: 24px;
        border-radius: 24px;
    }

    .newsletter-form {
        border-radius: 20px;
        flex-direction: column;
    }

    .newsletter-form input {
        min-height: 46px;
    }
}


/* Single Watch Page */

.watch-page {
    background: var(--bg);
}

.watch-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.watch-hero-bg,
.watch-hero-bg img,
.watch-hero-overlay {
    position: absolute;
    inset: 0;
}

.watch-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(7, 17, 31, 0.42);
}

.watch-hero-overlay {
    background:
        radial-gradient(circle at 78% 38%, rgba(104, 154, 191, 0.34), transparent 25%),
        linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.78) 44%, rgba(7, 17, 31, 0.36) 100%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.2), rgba(7, 17, 31, 0.94));
    z-index: 1;
}

.watch-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 44px;
    align-items: center;
    padding: 80px 0;
}

.watch-hero-content {
    max-width: 760px;
}

.watch-hero-content h1 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 82px);
    line-height: 0.92;
    letter-spacing: -0.075em;
}

.watch-hero-content p {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
}

.watch-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.watch-player-box {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.watch-player-box::before {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 26px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
}

.watch-play-button {
    position: relative;
    z-index: 2;
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.13);
    animation: pulseWatchPlay 1.8s infinite;
}

.watch-play-button span {
    width: 0;
    height: 0;
    margin-left: 9px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 31px solid var(--primary);
}

.watch-player-info {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;
    padding: 18px;
    border-radius: 20px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.watch-player-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: -0.04em;
}

.watch-player-info small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes pulseWatchPlay {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Match Info */

.match-info-section {
    position: relative;
    z-index: 4;
    margin-top: -54px;
    padding-bottom: 36px;
}

.match-info-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.match-info-card {
    min-height: 116px;
    padding: 18px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.match-info-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.match-info-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

/* Content Blocks */

.watch-content-section {
    padding: 36px 0 24px;
}

.content-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 38px;
    padding: 32px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.content-split.reverse {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.content-split.reverse .content-split-text {
    order: 2;
}

.content-split.reverse .content-split-image {
    order: 1;
}

.content-split-text h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.content-split-text p {
    color: var(--muted);
    font-size: 16px;
}

.content-split-text .btn {
    margin-top: 10px;
}

.content-split-image {
    overflow: hidden;
    border-radius: 24px;
    background: var(--dark);
    aspect-ratio: 16 / 11;
}

.content-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Related Posts */

.related-posts-section {
    padding: 34px 0 76px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

/* Access Modal */

body.modal-open {
    overflow: hidden;
}

.access-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    padding: 18px;
}

.access-modal.is-open {
    display: grid;
    place-items: center;
}

.access-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 17, 31, 0.72);
    backdrop-filter: blur(8px);
}

.access-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 460px);
    padding: 28px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: var(--bg);
    color: var(--text);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.modal-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-brand strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: -0.04em;
}

.modal-brand small {
    color: var(--muted);
}

.access-modal-dialog h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.access-modal-dialog p {
    margin: 12px 0 20px;
    color: var(--muted);
}

.access-form {
    display: grid;
    gap: 14px;
}

.access-form label {
    display: grid;
    gap: 7px;
    color: var(--text);
    font-weight: 800;
    font-size: 13px;
}

.access-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    outline: 0;
    font-family: var(--font-body);
    font-size: 15px;
}

.access-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(4, 86, 148, 0.1);
}

.modal-submit,
.partner-access-link {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
}

.modal-submit {
    border: 0;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    font-size: 15px;
}

.modal-divider {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 18px 0;
    color: var(--muted);
    font-size: 13px;
}

.modal-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.modal-divider span {
    position: relative;
    z-index: 2;
    padding: 0 10px;
    background: var(--white);
}

.partner-access-link {
    width: 100%;
    background: var(--dark);
    color: var(--white);
}

.partner-access-link:hover {
    color: var(--white);
    background: #111827;
}

.modal-note {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

/* Watch Responsive */

@media (max-width: 1100px) {
    .match-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .watch-hero {
        min-height: auto;
    }

    .watch-hero-inner {
        grid-template-columns: 1fr;
        padding: 58px 0 90px;
    }

    .watch-player-box {
        min-height: 320px;
    }

    .content-split,
    .content-split.reverse {
        grid-template-columns: 1fr;
    }

    .content-split.reverse .content-split-text,
    .content-split.reverse .content-split-image {
        order: initial;
    }
}

@media (max-width: 640px) {
    .watch-hero-content h1 {
        font-size: 42px;
    }

    .watch-hero-content p {
        font-size: 16px;
    }

    .watch-player-box {
        min-height: 260px;
        border-radius: 24px;
    }

    .watch-play-button {
        width: 86px;
        height: 86px;
    }

    .watch-play-button span {
        border-top-width: 14px;
        border-bottom-width: 14px;
        border-left-width: 22px;
    }

    .match-info-grid {
        grid-template-columns: 1fr;
    }

    .match-info-section {
        margin-top: -34px;
    }

    .content-split {
        padding: 22px;
        border-radius: 24px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .access-modal-dialog {
        padding: 24px;
        border-radius: 24px;
    }
}