/* WCJ TV Watch Page - Refined Clean Design */

.watch-page {
    background: var(--bg);
}

/* Hero */

.watch-hero-simple {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: #07111f;
}

.watch-hero-simple-bg,
.watch-hero-simple-bg img,
.watch-hero-simple-overlay {
    position: absolute;
    inset: 0;
}

.watch-hero-simple-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.watch-hero-simple-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.92) 0%, rgba(7, 17, 31, 0.72) 36%, rgba(7, 17, 31, 0.22) 70%, rgba(7, 17, 31, 0.70) 100%),
        linear-gradient(180deg, rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.90));
}

.watch-hero-simple-inner {
    position: relative;
    z-index: 2;
    min-height: 340px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
}

.watch-hero-box {
    max-width: 480px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(7, 17, 31, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.watch-hero-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.watch-status-pill,
.watch-category-pill {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
}

.watch-status-pill {
    gap: 7px;
    background: rgba(239, 68, 68, 0.22);
}

.watch-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.14);
}

.watch-status-upcoming {
    background: rgba(4, 86, 148, 0.34);
}

.watch-status-upcoming .watch-status-dot {
    background: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
}

.watch-status-featured {
    background: rgba(255, 255, 255, 0.14);
}

.watch-status-featured .watch-status-dot {
    background: #facc15;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.14);
}

.watch-category-pill {
    background: rgba(255, 255, 255, 0.14);
}

.watch-hero-box h1 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.watch-hero-meta-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}

.watch-hero-meta-mini span {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    font-weight: 700;
}

.watch-hero-box p {
    margin: 9px 0 0;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}

.watch-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.watch-btn-primary,
.watch-btn-secondary,
.watch-inline-btn {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.watch-btn-primary,
.watch-inline-btn {
    border: 0;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
}

.watch-btn-primary:hover,
.watch-inline-btn:hover {
    background: #034a7f;
    color: var(--white);
}

.watch-btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.watch-btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.watch-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 11px;
}

.watch-hero-trust span {
    min-height: 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 700;
}

.watch-hero-trust i {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    position: relative;
}

.watch-hero-trust i::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 1px;
    width: 3px;
    height: 5px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.watch-hero-play-side {
    display: grid;
    place-items: center;
}

.watch-main-play {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.10);
    animation: watchPulse 1.8s infinite;
}

.watch-main-play span {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid var(--primary);
}

@keyframes watchPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.24);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Info Bar */

.watch-info-bar {
    padding: 12px 0 18px;
}

.watch-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.watch-info-card {
    min-height: 64px;
    padding: 11px 12px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.watch-info-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.watch-info-card strong {
    display: block;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 13px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.03em;
}

/* Content */

.watch-content-section {
    padding: 4px 0 24px;
}

.watch-content-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 18px;
    padding: 20px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.watch-content-split.is-reverse {
    grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1fr);
}

.watch-content-split.is-reverse .watch-content-text {
    order: 2;
}

.watch-content-split.is-reverse .watch-content-image {
    order: 1;
}

.watch-eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(4, 86, 148, 0.08);
    font-size: 10px;
    font-weight: 700;
}

.watch-content-text h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.watch-content-text p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
}

.watch-inline-btn {
    margin-top: 14px;
}

.watch-content-image {
    overflow: hidden;
    border-radius: 18px;
    background: var(--dark);
    aspect-ratio: 16 / 10;
}

.watch-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Newsletter */

.watch-newsletter-wrap {
    padding: 4px 0 18px;
}

.watch-page .newsletter-section {
    margin-top: 0;
}

.watch-page .newsletter-card {
    max-width: 100%;
    padding: 24px;
    border-radius: 22px;
}

.watch-page .newsletter-content h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.watch-page .newsletter-content p {
    font-size: 14px;
}

/* Related */

.related-posts-section {
    padding: 16px 0 60px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.empty-related-box {
    padding: 20px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
}

/* Popup */

body.modal-open {
    overflow: hidden;
}

.access-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    padding: 12px;
}

.access-modal.is-open {
    display: grid;
    place-items: center;
}

.access-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 17, 31, 0.76);
    backdrop-filter: blur(8px);
}

.access-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.modal-access-grid {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
}

.modal-login-panel,
.modal-guide-panel {
    padding: 20px;
}

.modal-guide-panel {
    background:
        radial-gradient(circle at top right, rgba(104, 154, 191, 0.30), transparent 32%),
        linear-gradient(135deg, #07111f, #0f2d46);
    color: var(--white);
}

.modal-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.modal-brand .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.modal-brand strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: -0.03em;
    font-weight: 650;
}

.modal-brand small {
    color: var(--muted);
    font-size: 11px;
}

.modal-login-panel h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.modal-login-panel p {
    margin: 8px 0 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}

.access-form {
    display: grid;
    gap: 9px;
}

.access-form label {
    display: grid;
    gap: 5px;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

.access-form input {
    width: 100%;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    outline: 0;
    font-family: var(--font-body);
    font-size: 13px;
}

.access-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(4, 86, 148, 0.1);
}

.modal-submit,
.modal-signup-btn {
    width: 100%;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.modal-submit {
    margin-top: 4px;
    border: 0;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
}

.modal-signup-btn {
    margin-top: 9px;
    background: var(--dark);
    color: var(--white);
}

.modal-signup-btn:hover {
    color: var(--white);
    background: #111827;
}

.guide-badge {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    font-size: 10px;
    font-weight: 700;
}

.modal-guide-panel h3 {
    margin: 10px 0 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 650;
}

.guide-list {
    display: grid;
    gap: 10px;
}

.guide-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.guide-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.guide-item strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
}

.guide-item small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    line-height: 1.45;
}

.guide-note {
    margin-top: 12px;
    padding: 11px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.10);
    font-size: 10px;
    line-height: 1.55;
}

/* Responsive */

@media (max-width: 1100px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .watch-hero-simple {
        min-height: 380px;
    }

    .watch-hero-simple-inner {
        min-height: 380px;
        grid-template-columns: 1fr;
        align-items: end;
    }

    .watch-hero-play-side {
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .watch-main-play {
        position: absolute;
        top: 29%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: auto;
        width: 60px;
        height: 60px;
    }

    .watch-main-play span {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 16px;
    }

    .watch-hero-box {
        max-width: 100%;
    }

    .watch-hero-trust {
        display: none;
    }

    .watch-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .watch-content-split,
    .watch-content-split.is-reverse {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .watch-content-split.is-reverse .watch-content-text,
    .watch-content-split.is-reverse .watch-content-image {
        order: initial;
    }

    .modal-access-grid {
        grid-template-columns: 1fr;
    }

    .modal-guide-panel {
        display: none;
    }

    .modal-login-panel {
        padding: 18px;
    }
}

@media (max-width: 560px) {
    .watch-hero-simple {
        min-height: 420px;
    }

    .watch-hero-simple-inner {
        min-height: 420px;
        padding: 16px 0;
    }

    .watch-hero-box {
        padding: 14px;
        border-radius: 16px;
    }

    .watch-hero-box h1 {
        font-size: 24px;
    }

    .watch-hero-box p {
        font-size: 12px;
    }

    .watch-hero-meta-mini span:nth-child(3) {
        display: none;
    }

    .watch-btn-primary,
    .watch-btn-secondary,
    .watch-inline-btn {
        width: 100%;
    }

    .watch-hero-btns {
        flex-direction: column;
    }

    .watch-info-grid {
        grid-template-columns: 1fr;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .watch-page .newsletter-card {
        padding: 20px;
    }
}

/* Premium mobile watch page redesign */

@media (max-width: 680px) {

    .watch-hero-simple {
        min-height: 460px !important;
        background: #07111f !important;
    }

    .watch-hero-simple-bg img {
        object-fit: cover !important;
        object-position: center top !important;
    }

    .watch-hero-simple-overlay {
        background:
            linear-gradient(180deg, rgba(7, 17, 31, 0.18) 0%, rgba(7, 17, 31, 0.46) 38%, rgba(7, 17, 31, 0.96) 100%),
            linear-gradient(90deg, rgba(7, 17, 31, 0.54), rgba(7, 17, 31, 0.18), rgba(7, 17, 31, 0.54)) !important;
    }

    .watch-hero-simple-inner {
        min-height: 460px !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: flex-end !important;
        padding: 18px 0 20px !important;
    }

    .watch-hero-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .watch-hero-top {
        gap: 7px !important;
        margin-bottom: 10px !important;
    }

    .watch-status-pill,
    .watch-category-pill {
        min-height: 26px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
        background: rgba(255, 255, 255, 0.14) !important;
        backdrop-filter: blur(10px) !important;
    }

    .watch-status-pill {
        background: rgba(239, 68, 68, 0.24) !important;
    }

    .watch-hero-box h1 {
        max-width: 94% !important;
        font-size: 31px !important;
        line-height: 1.02 !important;
        letter-spacing: -0.052em !important;
        color: #ffffff !important;
        text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32) !important;
    }

    .watch-hero-meta-mini {
        margin-top: 11px !important;
        gap: 7px !important;
    }

    .watch-hero-meta-mini span {
        min-height: 26px !important;
        padding: 0 10px !important;
        font-size: 11px !important;
        background: rgba(255, 255, 255, 0.13) !important;
        color: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(10px) !important;
    }

    .watch-hero-meta-mini span:nth-child(3) {
        display: inline-flex !important;
    }

    .watch-hero-box p {
        max-width: 94% !important;
        margin-top: 12px !important;
        color: rgba(255, 255, 255, 0.78) !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .watch-hero-btns {
        display: grid !important;
        grid-template-columns: 1fr 0.72fr !important;
        gap: 10px !important;
        margin-top: 16px !important;
    }

    .watch-btn-primary,
    .watch-btn-secondary {
        width: 100% !important;
        min-height: 44px !important;
        padding: 0 14px !important;
        font-size: 13px !important;
        border-radius: 999px !important;
    }

    .watch-btn-primary {
        background: var(--primary) !important;
        box-shadow: 0 12px 28px rgba(4, 86, 148, 0.28) !important;
    }

    .watch-btn-secondary {
        background: rgba(255, 255, 255, 0.14) !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        backdrop-filter: blur(10px) !important;
    }

    .watch-hero-trust {
        display: flex !important;
        gap: 7px !important;
        margin-top: 13px !important;
        overflow-x: auto !important;
        scrollbar-width: none !important;
    }

    .watch-hero-trust::-webkit-scrollbar {
        display: none !important;
    }

    .watch-hero-trust span {
        flex: 0 0 auto !important;
        min-height: 25px !important;
        padding: 0 9px !important;
        font-size: 10px !important;
        background: rgba(255, 255, 255, 0.11) !important;
        backdrop-filter: blur(10px) !important;
    }

    .watch-hero-play-side {
        position: absolute !important;
        inset: 0 !important;
        pointer-events: none !important;
    }

    .watch-main-play {
        position: absolute !important;
        top: 31% !important;
        left: 50% !important;
        width: 64px !important;
        height: 64px !important;
        transform: translate(-50%, -50%) !important;
        pointer-events: auto !important;
        background: rgba(255, 255, 255, 0.96) !important;
        box-shadow:
            0 0 0 10px rgba(255, 255, 255, 0.12),
            0 14px 34px rgba(0, 0, 0, 0.32) !important;
    }

    .watch-main-play span {
        margin-left: 5px !important;
        border-top-width: 11px !important;
        border-bottom-width: 11px !important;
        border-left-width: 18px !important;
    }

    .watch-info-bar {
        padding: 14px 0 14px !important;
    }

    .watch-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .watch-info-card {
        min-height: 66px !important;
        padding: 12px !important;
        border-radius: 16px !important;
    }

    .watch-info-card span {
        font-size: 9px !important;
    }

    .watch-info-card strong {
        font-size: 13px !important;
    }

    .watch-content-section {
        padding-top: 2px !important;
    }

    .watch-content-split,
    .watch-content-split.is-reverse {
        padding: 16px !important;
        border-radius: 20px !important;
        gap: 16px !important;
    }

    .watch-content-text h2 {
        font-size: 23px !important;
        line-height: 1.05 !important;
    }

    .watch-content-text p {
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .watch-content-image {
        border-radius: 16px !important;
    }

    .watch-page .newsletter-card {
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .watch-page .newsletter-content h2 {
        font-size: 26px !important;
        line-height: 1.02 !important;
    }

    .watch-page .newsletter-content p {
        font-size: 13px !important;
    }
}

@media (max-width: 420px) {

    .watch-hero-simple {
        min-height: 440px !important;
    }

    .watch-hero-simple-inner {
        min-height: 440px !important;
    }

    .watch-hero-box h1 {
        font-size: 28px !important;
    }

    .watch-hero-box p {
        font-size: 12px !important;
    }

    .watch-hero-btns {
        grid-template-columns: 1fr !important;
    }

    .watch-btn-primary,
    .watch-btn-secondary {
        min-height: 42px !important;
    }

    .watch-main-play {
        top: 29% !important;
        width: 58px !important;
        height: 58px !important;
    }

    .watch-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Watch page player + popup close button fixes */

/* Desktop player alignment */
.watch-hero-simple-inner {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 280px) !important;
}

.watch-hero-play-side {
    justify-self: center !important;
    align-self: center !important;
}

.watch-main-play {
    margin-inline: auto !important;
}

/* Popup close button fix */
.access-modal-dialog {
    position: relative !important;
    overflow: visible !important;
}

.modal-access-grid {
    overflow: hidden !important;
    border-radius: inherit !important;
}

.modal-close {
    position: absolute !important;
    top: -14px !important;
    right: -14px !important;
    z-index: 9999 !important;
    width: 38px !important;
    height: 38px !important;
    display: grid !important;
    place-items: center !important;
    border: 2px solid rgba(226, 232, 240, 0.95) !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #07111f !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    box-shadow: 0 12px 30px rgba(7, 17, 31, 0.22) !important;
    cursor: pointer !important;
}

.modal-close:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

/* Mobile player position: show below visual area and above content */
@media (max-width: 680px) {
    .watch-hero-simple {
        min-height: 470px !important;
    }

    .watch-hero-simple-inner {
        min-height: 470px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-end !important;
        gap: 14px !important;
        padding: 18px 0 20px !important;
    }

    .watch-hero-play-side {
        position: relative !important;
        inset: auto !important;
        order: 1 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 64px !important;
        pointer-events: auto !important;
    }

    .watch-main-play {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 62px !important;
        height: 62px !important;
        pointer-events: auto !important;
    }

    .watch-hero-box {
        order: 2 !important;
    }

    .watch-hero-box h1 {
        font-size: 28px !important;
    }

    .watch-hero-box p {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .modal-close {
        top: -10px !important;
        right: -8px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 22px !important;
    }

    .access-modal {
        padding: 18px !important;
    }
}

@media (max-width: 420px) {
    .watch-hero-simple {
        min-height: 455px !important;
    }

    .watch-hero-simple-inner {
        min-height: 455px !important;
        gap: 12px !important;
    }

    .watch-main-play {
        width: 58px !important;
        height: 58px !important;
    }

    .watch-main-play span {
        margin-left: 5px !important;
        border-top-width: 10px !important;
        border-bottom-width: 10px !important;
        border-left-width: 16px !important;
    }
}

/* Popup close button final fix */

.modal-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    z-index: 10000 !important;

    width: 38px !important;
    height: 38px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    border-radius: 50% !important;

    background: #ffffff !important;
    color: transparent !important;

    font-size: 0 !important;
    line-height: 1 !important;

    box-shadow: 0 10px 28px rgba(7, 17, 31, 0.18) !important;
    cursor: pointer !important;
}

.modal-close::before {
    content: "\00d7" !important;
    color: #07111f !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    display: block !important;
    transform: translateY(-1px);
}

.modal-close:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.modal-close:hover::before {
    color: #ffffff !important;
}

.access-modal-dialog {
    overflow: hidden !important;
}

/* Desktop play button alignment refinement */

@media (min-width: 681px) {
    .watch-hero-simple-inner {
        grid-template-columns: minmax(0, 1fr) 320px !important;
    }

    .watch-hero-play-side {
        justify-self: start !important;
        padding-left: 34px !important;
    }

    .watch-main-play {
        transform: translateX(-24px) !important;
    }
}