:root {
    --watch-bg: #06080f;
    --watch-surface: rgba(14, 18, 30, 0.78);
    --watch-surface-strong: rgba(8, 12, 22, 0.9);
    --watch-card: rgba(255, 255, 255, 0.05);
    --watch-border: rgba(255, 255, 255, 0.1);
    --watch-text: #f6f8ff;
    --watch-muted: #bcc5dc;
    --watch-accent: #ff4f7c;
    --watch-accent-soft: rgba(255, 79, 124, 0.18);
    --watch-highlight: #84f484;
    --watch-highlight-strong: #2dcf67;
    --watch-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --watch-radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--watch-text);
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
    background-color: var(--watch-bg);
}

.bodyy {
    position: relative;
    background-color: var(--watch-bg);
    background-image: url("https://movingstory-prod.imgix.net/movies/headers/suzume.jpg?w=1440&h=602&auto=compress,format&fit=crop");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
}

.page-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(6, 9, 16, 0.3) 0%, rgba(7, 10, 18, 0.84) 58%, rgba(6, 9, 16, 0.96) 100%),
        radial-gradient(circle at top right, rgba(247, 104, 166, 0.18), transparent 28%),
        radial-gradient(circle at left center, rgba(112, 183, 255, 0.12), transparent 24%);
    pointer-events: none;
}

.navbarr,
.watch-layout,
.req,
.end {
    position: relative;
    z-index: 1;
}

.navbarr {
    position: sticky;
    top: 0;
    z-index: 20;
    width: min(1240px, calc(100% - 32px));
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(15, 21, 36, 0.92), rgba(11, 15, 26, 0.78)),
        rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.nav-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
    color: var(--watch-text);
    text-decoration: none;
}

.navbarr .image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.brand-eyebrow,
.brand-title {
    display: block;
}

.brand-eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ff9bbf;
}

.brand-title {
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 79, 124, 0.18), rgba(132, 244, 132, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffe4ee;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.header-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--watch-highlight);
    box-shadow: 0 0 0 6px rgba(132, 244, 132, 0.12);
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--watch-text);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    outline: none;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 0;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--watch-text);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
    background: transparent;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
    outline: none;
}

.navbarr .navic7,
.navbarr .navic8 {
    min-width: 42px;
}

.navbarr .navic7 {
    width: 42px;
    padding: 0;
}

.navbarr .navic7 svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-icon-link {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, #ff7ca8, #ff4f7c);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff7fb;
    box-shadow: 0 12px 24px rgba(255, 79, 124, 0.22);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: linear-gradient(135deg, #ff8eb5, #ff5f89) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.watch-layout {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.95fr);
    align-items: start;
    gap: 28px;
}

.player-panel,
.info-box,
.req,
.end {
    background: var(--watch-surface);
    backdrop-filter: blur(16px);
    border: 1px solid var(--watch-border);
    box-shadow: var(--watch-shadow);
}

.player-panel,
.info-box {
    border-radius: var(--watch-radius);
}

.player-panel {
    padding: 22px;
}

.player-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.player-kicker,
.player-title,
.he2,
.episode-title,
.syn,
.an {
    margin: 0;
}

.player-kicker,
.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ff9cbf;
}

.player-title {
    font-size: clamp(1.28rem, 2vw, 1.7rem);
    line-height: 1.28;
}

.player-frame-shell {
    overflow: hidden;
    border-radius: 22px;
    background: #000000;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

#episode-frame {
    display: block;
    width: 100%;
    height: 100%;
}

.watch-status {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffe5e5;
}

.player-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.action-link,
.download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.action-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--watch-text);
}

.action-link:hover,
.action-link:focus-visible,
.download:hover,
.download:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.info-box {
    display: grid;
    grid-template-columns: 182px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
}

.poster {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.35);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.poster:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.42);
}

.info-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.he2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.1;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.86rem;
    font-weight: 700;
}

.se {
    background: linear-gradient(135deg, #e33d6f, #ff5c8a);
    border-color: transparent;
}

.hindi {
    color: #7ed6ff;
}

.episode-title {
    font-size: 1.18rem;
    color: #ffd7e8;
}

.syn {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 0.97rem;
}

.info-actions {
    margin-top: 6px;
}

.download {
    width: 100%;
    max-width: 320px;
    background: linear-gradient(135deg, var(--watch-highlight), var(--watch-highlight-strong));
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #07110b;
    box-shadow: 0 16px 28px rgba(45, 207, 103, 0.2);
}

.req {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1240px, calc(100% - 32px));
    min-height: 58px;
    margin: 0 auto 22px;
    padding: 0 24px;
    border-radius: 22px;
    border: none;
    background: linear-gradient(135deg, #ff4545, #ff0b0b);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.req:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(255, 11, 11, 0.22);
}

.end {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 28px;
    padding: 22px 24px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.an {
    color: var(--watch-text);
    font-size: 1.2rem;
    line-height: 1.3;
}

.yt,
.x,
.ins {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background-color: #ffffff;
    color: #0a0e18;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yt:hover,
.x:hover,
.ins:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.yt svg,
.x svg,
.ins svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 1180px) {
    .navbarr {
        align-items: stretch;
        flex-direction: column;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .watch-layout {
        grid-template-columns: 1fr;
    }

    .info-box {
        grid-template-columns: 160px minmax(0, 1fr);
    }
}

@media (max-width: 820px) {
    .navbarr,
    .watch-layout,
    .req,
    .end {
        width: min(100% - 24px, 1240px);
    }

    .navbarr {
        margin-top: 12px;
        padding: 14px;
        border-radius: 22px;
    }

    .nav-topbar {
        gap: 12px;
    }

    .brand-link {
        justify-content: flex-start;
    }

    .brand-copy {
        align-items: flex-start;
        text-align: left;
    }

    .nav-links {
        gap: 8px;
        padding: 10px;
        border-radius: 24px;
    }

    .nav-links a {
        flex: 1 1 calc(50% - 8px);
        min-width: 120px;
        min-height: 44px;
        padding: 0 14px;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .watch-layout {
        gap: 22px;
        padding: 24px 0 34px;
    }

    .player-panel,
    .info-box {
        border-radius: 24px;
    }

    .info-box {
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 18px;
        padding: 18px;
    }

    .he2 {
        font-size: 1.7rem;
    }

    .syn {
        font-size: 0.93rem;
    }

    .end {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .bodyy {
        background-attachment: scroll;
        background-position: center top;
    }

    .navbarr,
    .watch-layout,
    .req,
    .end {
        width: min(100% - 16px, 1240px);
    }

    .navbarr {
        gap: 14px;
        padding: 12px;
        border-radius: 20px;
    }

    .nav-topbar {
        align-items: center;
        gap: 10px;
    }

    .brand-link {
        gap: 10px;
        flex: 1 1 auto;
        min-width: 0;
    }

    .navbarr .image {
        width: 48px;
        height: 48px;
    }

    .brand-eyebrow {
        font-size: 0.72rem;
    }

    .brand-title {
        font-size: 0.98rem;
    }

    .header-badge {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
        gap: 8px;
        padding: 8px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 20px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
        min-height: 44px;
    }

    .watch-layout {
        gap: 18px;
        padding: 18px 0 28px;
    }

    .player-panel {
        padding: 14px;
    }

    .player-header {
        gap: 6px;
        margin-bottom: 14px;
    }

    .player-title {
        font-size: 1.06rem;
    }

    .player-actions {
        gap: 10px;
    }

    .action-link,
    .download {
        width: 100%;
        min-height: 46px;
    }

    .info-box {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }

    .poster {
        max-width: 220px;
        margin: 0 auto;
    }

    .info-copy {
        gap: 12px;
    }

    .he2 {
        font-size: 1.5rem;
    }

    .episode-title {
        font-size: 1.05rem;
    }

    .meta-row {
        gap: 8px;
    }

    .badge {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .req {
        min-height: 54px;
        padding: 0 18px;
        font-size: 0.94rem;
        border-radius: 18px;
    }

    .end {
        padding: 18px 16px;
        border-radius: 22px;
    }

    .an {
        width: 100%;
        font-size: 1.05rem;
    }
}
