:root {
    --primary: #CF2448;
    --primary-dark: #8F1630;
    --secondary: #F0B34F;
    --accent: #3F5862;
    --bg-color: #1E1D1E;
    --card-bg: #302A2B;
    --text-color: #F5F1E8;
    --cream: #E8DCC8;
    --cream-light: #F5F1E8;
    --frame: #F0E8D8;
    --muted-bg: #4E4442;
    --header-bg: rgba(24, 22, 23, 0.88);
    --paw-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23000000' opacity='.34' transform='rotate(-45 90 90)'%3E%3Cg transform='translate(42 34)'%3E%3Cellipse cx='28' cy='42' rx='16' ry='13'/%3E%3Ccircle cx='13' cy='22' r='6'/%3E%3Ccircle cx='24' cy='13' r='6'/%3E%3Ccircle cx='36' cy='13' r='6'/%3E%3Ccircle cx='47' cy='22' r='6'/%3E%3C/g%3E%3Cg transform='translate(94 92)'%3E%3Cellipse cx='28' cy='42' rx='16' ry='13'/%3E%3Ccircle cx='13' cy='22' r='6'/%3E%3Ccircle cx='24' cy='13' r='6'/%3E%3Ccircle cx='36' cy='13' r='6'/%3E%3Ccircle cx='47' cy='22' r='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    --paw-trail: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='520' viewBox='0 0 720 520'%3E%3Cdefs%3E%3Cg id='paw' fill='%23000000'%3E%3Cellipse cx='0' cy='30' rx='24' ry='20'/%3E%3Cellipse cx='-29' cy='-1' rx='10' ry='13'/%3E%3Cellipse cx='-10' cy='-18' rx='10' ry='14'/%3E%3Cellipse cx='12' cy='-18' rx='10' ry='14'/%3E%3Cellipse cx='31' cy='-1' rx='10' ry='13'/%3E%3Cpath d='M-42 -38l12 23-22-5zM-16 -61l9 25-21-10zM18 -61l-9 25 21-10zM44 -38L32 -15l22-5z'/%3E%3C/g%3E%3C/defs%3E%3Cg opacity='.38' transform='rotate(-45 360 260)'%3E%3Cuse href='%23paw' x='92' y='414' transform='rotate(-8 92 414)'/%3E%3Cuse href='%23paw' x='170' y='346' transform='rotate(9 170 346)'/%3E%3Cuse href='%23paw' x='254' y='292' transform='rotate(-6 254 292)'/%3E%3Cuse href='%23paw' x='344' y='232' transform='rotate(8 344 232)'/%3E%3Cuse href='%23paw' x='430' y='176' transform='rotate(-7 430 176)'/%3E%3Cuse href='%23paw' x='526' y='116' transform='rotate(10 526 116)'/%3E%3Cuse href='%23paw' x='618' y='58' transform='rotate(-6 618 58)'/%3E%3C/g%3E%3C/svg%3E");
    --button-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 46%), linear-gradient(135deg, var(--primary), var(--primary-dark));
    --button-bg-hover: linear-gradient(180deg, rgba(255, 255, 255, 0.20), transparent 46%), linear-gradient(135deg, #F03D62, var(--primary-dark));
    --button-border: 2px solid rgba(255, 247, 236, 0.54);
    --button-shadow: 0 12px 24px rgba(143, 22, 48, 0.36), 5px 5px 0 rgba(0, 0, 0, 0.28);
    --button-shadow-hover: 0 18px 34px rgba(207, 36, 72, 0.50), 5px 5px 0 rgba(0, 0, 0, 0.28);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle at 18% 0%, rgba(207, 36, 72, 0.12), transparent 34%),
        radial-gradient(circle at 84% 10%, rgba(63, 88, 98, 0.18), transparent 30%),
        linear-gradient(160deg, #141414 0%, #232323 46%, #303030 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.3s ease;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(rgba(255, 247, 236, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 247, 236, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 50% 35%, transparent 0 45%, rgba(0, 0, 0, 0.36) 100%);
    background-size: 100% 3px, 4px 100%, auto;
    mix-blend-mode: normal;
}
body > * {
    position: relative;
    z-index: 1;
}
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-img {
    width: 50px;
    height: 50px; 
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 247, 236, 0.08);
}
.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.logo-main,
.title-main,
.footer-logo-main {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: 0;
    background: linear-gradient(180deg, #FFEAF1 0%, #F04B6B 54%, #CF2448 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.logo-main,
.footer-logo-main {
    max-width: 280px;
}
.logo-main,
.logo-sub,
.footer-logo-main,
.footer-logo-sub {
    overflow-wrap: anywhere;
}
.logo-sub,
.title-sub,
.footer-logo-sub {
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 3px;
    background: linear-gradient(180deg, #FFF7EC 0%, #F3C168 58%, #F0B34F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: nowrap;
    align-items: center;
}
.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}
.nav-links a:hover {
    color: var(--secondary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.language-selector {
    margin-left: 30px;
    position: relative;
    display: inline-block;
}
.language-btn {
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 8px 15px;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.language-btn:hover {
    background: rgba(214, 68, 85, 0.1);
}
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 150px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: block;
}
.language-dropdown::-webkit-scrollbar {
    width: 6px;
}
.language-dropdown::-webkit-scrollbar-track {
    background: rgba(214, 68, 85, 0.1);
    border-radius: 3px;
}
.language-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}
.language-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}
.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.language-option {
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
}
.language-option:hover {
    background: rgba(214, 68, 85, 0.2);
    color: var(--secondary);
}
.language-option.active {
    background: rgba(214, 68, 85, 0.3);
    color: var(--secondary);
    font-weight: 600;
}
.lang-flag img {
    width: 20px;
    height: 14px;
    object-fit: contain;
    border-radius: 2px;
    display: block;
}
.lang-name {
    font-size: 0.9rem;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 18% 0%, rgba(207, 36, 72, 0.22), transparent 34%),
        radial-gradient(circle at 78% 12%, rgba(240, 179, 79, 0.10), transparent 28%),
        linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(36, 36, 36, 0.96) 48%, rgba(18, 18, 18, 0.98) 100%);
    z-index: -1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.hero-title {
    font-size: 4rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}
.title-main {
    font-size: 5rem;
    line-height: 1.1;
    display: block;
}
.title-sub {
    font-size: 5rem;
    line-height: 1.2;
    display: block;
    margin-top: 5px;
}
.title-season {
    color: var(--cream-light);
    font-size: 1.8rem;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}
html[lang="ko"] .logo-main,
html[lang^="zh"] .logo-main,
html[lang="ja"] .logo-main {
    font-size: 1.18rem;
    line-height: 1.12;
}
html[lang="ko"] .footer-logo-main,
html[lang^="zh"] .footer-logo-main,
html[lang="ja"] .footer-logo-main {
    font-size: 1.28rem;
    line-height: 1.14;
}
html[lang="ko"] .title-main,
html[lang^="zh"] .title-main,
html[lang="ja"] .title-main {
    max-width: 980px;
    margin: 0 auto;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.14;
    overflow-wrap: anywhere;
}
.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.8s;
}
.section .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.download-layout {
    max-width: 1100px;
    margin: 0 auto;
}

.download-subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 35px;
}

.download-card {
    background: linear-gradient(160deg, rgba(48, 48, 48, 0.96), rgba(24, 24, 24, 0.98));
    border-radius: 6px;
    padding: 26px 22px 22px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 410px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.download-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.download-card-header {
    text-align: center;
    margin-bottom: 16px;
}

.download-card-title {
    font-size: 1.35rem;
    margin-top: 10px;
    margin-bottom: 4px;
}

.download-card-tagline {
    font-size: 0.9rem;
    opacity: 0.85;
}

.download-card-size {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

.download-card-footer {
    margin-top: 18px;
}

.download-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    padding: 16px 30px;
    border-radius: 4px;
    border: var(--button-border);
    background: var(--button-bg);
    color: #F5F1E8;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--button-shadow);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    min-height: 58px;
}

.download-card-btn:hover {
    transform: translateY(-3px);
    background: var(--button-bg-hover);
    box-shadow: var(--button-shadow-hover);
}

.download-card-btn-outline {
    background: var(--button-bg);
    border: var(--button-border);
    color: var(--cream-light);
    box-shadow: var(--button-shadow);
}

.download-warning-box {
    margin-top: 46px;
    border-radius: 6px;
    padding: 22px 24px;
    background: linear-gradient(160deg, rgba(48, 48, 48, 0.96), rgba(24, 24, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.download-warning-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.download-warning-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .download-layout {
        padding: 0 4px;
    }
}
.trailer-container {
    width: 100%;
    max-width: 900px;
    border-radius: 4px;
    overflow: visible;
    padding: 12px;
    background: var(--frame);
    border: 1px solid rgba(255, 247, 236, 0.88);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.58), 12px 12px 0 rgba(143, 22, 48, 0.36);
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 1s ease forwards 1s;
}
.trailer-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 128px;
    height: 32px;
    transform: translateX(-50%) rotate(-3deg);
    background: rgba(255, 247, 236, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
    z-index: 3;
}
.local-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: #0F0E0F;
}
.local-video::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.30), transparent 38%),
        radial-gradient(circle at 50% 50%, transparent 0 58%, rgba(0, 0, 0, 0.28) 100%);
    z-index: 2;
}
.local-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    filter: saturate(1.08) contrast(1.06) brightness(0.94);
}
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}
.video-btn {
    background: rgba(107, 91, 86, 0.78);
    border: 1px solid rgba(240, 232, 216, 0.35);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--cream-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.video-btn:hover {
    background: rgba(214, 68, 85, 0.86);
    transform: scale(1.1);
}
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1.2s;
}
.btn {
    padding: 16px 30px;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: var(--button-border);
    background: var(--button-bg);
    color: var(--cream-light);
    box-shadow: var(--button-shadow);
    text-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    min-height: 58px;
}

.btn,
.download-btn,
.download-card-btn,
.mirror-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 4px;
    min-height: 58px;
    border: var(--button-border);
    background: var(--button-bg);
    color: var(--cream-light);
    box-shadow: var(--button-shadow);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btn:hover,
.download-btn:hover,
.download-card-btn:hover,
.mirror-btn:hover {
    transform: translateY(-3px);
    background: var(--button-bg-hover);
    box-shadow: var(--button-shadow-hover);
    color: var(--cream-light);
}
.btn-primary {
    background: var(--button-bg);
    color: var(--cream-light);
    box-shadow: var(--button-shadow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--button-bg-hover);
    box-shadow: var(--button-shadow-hover);
}
.btn-secondary {
    background: var(--button-bg);
    color: var(--cream-light);
    border: var(--button-border);
    box-shadow: var(--button-shadow);
}
.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--button-bg-hover);
    box-shadow: var(--button-shadow-hover);
}
.section {
    padding: 80px 0;
    position: relative;
}

.section::after,
footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 72px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.44), transparent);
}

.section > .container,
footer > .container {
    position: relative;
    z-index: 2;
}
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 38px;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 18px;
    background: transparent;
    border: 0;
    color: var(--cream-light);
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.54);
    box-shadow: none;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(180px, 62%);
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    border-radius: 2px;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 46px;
}
.feature-card {
    background: linear-gradient(160deg, rgba(48, 42, 43, 0.94), rgba(28, 27, 28, 0.95));
    border-radius: 6px;
    padding: 28px;
    border: 1px solid rgba(255, 247, 236, 0.18);
    border-left: 4px solid var(--primary);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 179, 79, 0.42);
    border-left-color: var(--secondary);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.36);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
    color: var(--cream-light);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 22px rgba(207, 36, 72, 0.28);
}
.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary);
}
.characters {
    background:
        linear-gradient(135deg, rgba(240, 232, 216, 0.055), transparent 26%),
        radial-gradient(circle at 65% 18%, rgba(201, 51, 79, 0.16), transparent 38%),
        linear-gradient(to bottom, #181617, #261D1F);
    position: relative;
    overflow: hidden;
}
.characters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(-18deg, transparent 0 18px, rgba(240, 232, 216, 0.045) 18px 20px),
        radial-gradient(circle at 22% 16%, rgba(207, 36, 72, 0.12), transparent 28%),
        radial-gradient(circle at 78% 10%, rgba(240, 179, 79, 0.08), transparent 24%);
    background-size: 260px, auto, auto;
    background-position: 0 0, center, center;
    background-repeat: repeat, no-repeat, no-repeat;
    opacity: 0.6;
    z-index: 0;
}
.characters-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    gap: 24px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}
.character-card {
    background: #F0E8D8;
    border-radius: 0;
    overflow: visible;
    border: 8px solid rgba(240, 232, 216, 0.78);
    box-shadow: 12px 18px 24px rgba(34, 28, 27, 0.34);
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 420px;
}
.character-card::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    width: 88px;
    height: 28px;
    transform: translateX(-50%) rotate(-4deg);
    background: rgba(240, 232, 216, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    z-index: 3;
}
.character-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 28%, transparent 0 40%, rgba(0, 0, 0, 0.34) 100%);
    pointer-events: none;
    z-index: 1;
}
.character-card:nth-child(2n) {
    --tilt: -1.2deg;
    transform: rotate(var(--tilt)) translateY(20px);
}
.character-card:nth-child(3n) {
    --tilt: 1deg;
    transform: rotate(var(--tilt)) translateY(20px);
}
.character-card.visible {
    opacity: 1;
    transform: translateY(0) rotate(var(--tilt, 0deg));
}
.character-card:hover {
    transform: translateY(-12px) rotate(0deg) scale(1.035);
    border-color: rgba(245, 168, 51, 0.62);
    box-shadow: 0 18px 36px rgba(82, 45, 42, 0.45);
}
.character-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: 50% 25%;
    display: block;
    filter: saturate(0.9) contrast(0.96);
}
.character-info {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    min-height: 136px;
    padding: 62px 12px 12px;
    background: linear-gradient(to top, rgba(22, 20, 20, 0.74), transparent);
    display: grid;
    grid-template-rows: 42px 12px 38px;
    align-items: center;
    row-gap: 14px;
}
.character-name {
    font-size: clamp(1.45rem, 1.85vw, 1.95rem);
    margin-bottom: 0;
    color: var(--cream-light);
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.75);
    transition: all 0.3s ease;
    line-height: 1.05;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.character-role {
    font-style: normal;
    color: var(--cream);
    margin-bottom: 0;
    font-size: 0.78rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.86;
    line-height: 1.25;
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.character-info p:not(.character-role) {
    display: none;
}
.character-meter {
    height: 12px;
    border-radius: 999px;
    background: rgba(240, 232, 216, 0.35);
    overflow: hidden;
    border: 1px solid rgba(240, 232, 216, 0.24);
    margin-bottom: 0;
}
.character-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 4px, transparent 4px 8px),
        linear-gradient(90deg, #E8A14F, #F5A833);
    box-shadow: 0 0 12px rgba(245, 168, 51, 0.34);
}
.character-card:nth-child(1) .character-meter span { width: 46%; }
.character-card:nth-child(2) .character-meter span { width: 30%; }
.character-card:nth-child(3) .character-meter span { width: 100%; }
.character-card:nth-child(4) .character-meter span { width: 34%; }
.character-card:nth-child(5) .character-meter span { width: 8%; }
#screenshots {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(240, 179, 79, 0.08), transparent 22%),
        radial-gradient(circle at 12% 18%, rgba(207, 36, 72, 0.18), transparent 30%),
        radial-gradient(circle at 88% 72%, rgba(63, 88, 98, 0.24), transparent 32%),
        linear-gradient(180deg, #151516 0%, #0D0E10 100%);
}

#screenshots::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 46%, rgba(240, 232, 216, 0.04) 46% 47%, transparent 47% 100%),
        repeating-linear-gradient(90deg, rgba(255, 247, 236, 0.026) 0 1px, transparent 1px 86px);
    background-size: 220px 220px, 86px 100%;
    opacity: 0.58;
}

#screenshots .container {
    position: relative;
    z-index: 1;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.screenshot-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}
.screenshot-item.visible {
    opacity: 1;
    transform: scale(1);
}
.screenshot-item:hover {
    transform: scale(1.03);
}
.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}
.screenshot-item:hover img {
    filter: brightness(0.7);
}
.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.44);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}
.zoom-icon {
    display: none;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 46, 43, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.show {
    opacity: 1;
    pointer-events: all;
}
.lightbox-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 100px;
    box-sizing: border-box;
}
.lightbox-content img {
    max-width: calc(100vw - 200px);
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: scale(1);
}
.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: var(--cream-light);
    background: rgba(107, 91, 86, 0.82);
    border: 2px solid rgba(240, 232, 216, 0.38);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}
.close-lightbox:hover {
    background: rgba(214, 68, 85, 0.8);
    border-color: var(--secondary);
    transform: scale(1.1);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    color: var(--cream-light);
    background: rgba(107, 91, 86, 0.82);
    border: 2px solid rgba(240, 232, 216, 0.38);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}
.lightbox-nav:hover {
    background: rgba(214, 68, 85, 0.8);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-nav.prev {
    left: 20px;
}
.lightbox-nav.next {
    right: 20px;
}
.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
.download {
    text-align: center;
    background:
        radial-gradient(circle at 12% 0%, rgba(207, 36, 72, 0.14), transparent 34%),
        linear-gradient(180deg, #242424 0%, #171717 100%);
    padding: 100px 0 60px 0;
}
.requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: left;
}
.requirement-card {
    background: linear-gradient(160deg, rgba(48, 42, 43, 0.92), rgba(24, 22, 23, 0.94));
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(255, 247, 236, 0.18);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}
.requirement-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
}
.requirement-list {
    list-style: none;
}
.requirement-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(214, 68, 85, 0.2);
    display: flex;
    justify-content: space-between;
}
.requirement-list li:last-child {
    border-bottom: none;
}
.requirement-value {
    font-weight: 600;
    color: var(--secondary);
    margin-left: 4px;
}
.download-options {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.download-btn {
    flex-direction: row;
    min-width: 190px;
    width: auto;
    position: relative;
    overflow: hidden;
}
.download-btn.btn-primary {
    background: var(--button-bg);
    color: var(--cream-light);
    box-shadow: var(--button-shadow);
    overflow: hidden;
}
.download-btn.btn-primary::after {
    content: none;
}
.download-btn.btn-primary:hover::after {
    width: 0;
}
.download-btn.btn-primary:hover {
    background: var(--button-bg-hover);
    box-shadow: var(--button-shadow-hover);
    color: var(--cream-light);
}
.download-btn:hover {
    background: var(--button-bg-hover);
    box-shadow: var(--button-shadow-hover);
    color: var(--cream-light);
}
.download-btn::after {
    content: none;
}
.download-btn:hover::after {
    width: 0;
}
.download-icon {
    font-size: 1.55rem;
    margin-bottom: 0;
}
footer {
    background: linear-gradient(135deg, #202020 0%, #151515 100%);
    color: var(--text-color);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-about {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-decoration: none;
}
.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 247, 236, 0.08);
}
.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo-main {
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: 0;
    background: linear-gradient(180deg, #FFEAF1 0%, #F04B6B 54%, #CF2448 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.footer-logo-sub {
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 4px;
    background: linear-gradient(180deg, #FFF7EC 0%, #F3C168 58%, #F0B34F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.footer-description {
    margin-bottom: 25px;
    line-height: 1.7;
    opacity: 0.9;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(214, 68, 85, 0.4);
}
.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    opacity: 0.9;
}
.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
    opacity: 1;
}
.footer-links a i {
    margin-right: 8px;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}
.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 1920px) {
    header {
        padding: 20px 0;
    }
    .hero {
        min-height: 100vh;
        padding: 120px 0 40px;
    }
    .hero-title {
        font-size: 3.8rem;
        margin-bottom: 10px;
    }
    .title-main {
        font-size: 4.5rem;
    }
    .title-sub {
        font-size: 4.5rem;
    }
    .title-season {
        font-size: 1.7rem;
    }
    .hero-description {
        font-size: 1.1rem;
        max-width: 750px;
        margin-bottom: 20px;
    }
    .trailer-container {
        max-width: 800px;
    }
    .cta-buttons {
        gap: 15px;
        margin-top: 15px;
    }
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 1600px) {
    header {
        padding: 18px 0;
    }
    .hero {
        padding: 110px 0 35px;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .title-main {
        font-size: 3.8rem;
    }
    .title-sub {
        font-size: 3.8rem;
    }
    .hero-description {
        font-size: 1rem;
        max-width: 700px;
        margin-bottom: 18px;
    }
    .trailer-container {
        max-width: 750px;
    }
}

@media (max-width: 992px) {
    .characters-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
    .character-card {
        min-height: 390px;
    }
    .character-img {
        height: 390px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .hero {
        padding-top: 160px;
    }
    .hero-title {
        font-size: 3rem;
        margin-top: 20px;
    }
    .title-main {
        font-size: 3rem;
    }
    .title-sub {
        font-size: 3rem;
    }
    .title-season {
        font-size: 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .language-selector {
        margin-left: 15px;
    }
    .characters-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .character-card {
        min-height: 430px;
    }
    .character-img {
        height: 430px;
    }
    .features-grid,
    .screenshots-grid,
    .download-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .download-options {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo-main {
        font-size: 1.8rem;
    }
    .footer-logo-sub {
        font-size: 1.1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .requirement-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .requirement-value {
        display: block;
        text-align: left;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 135px;
    }
    .hero-title,
    .title-main,
    .title-sub {
        font-size: 2.25rem;
    }
    .title-season {
        font-size: 1.2rem;
    }
    .hero-description {
        font-size: 0.95rem;
    }
    .language-dropdown {
        right: 0;
        left: auto;
        min-width: min(230px, calc(100vw - 30px));
    }
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: 1000;
    transition: width 0.2s ease;
}
body.rtl {
    direction: rtl;
    text-align: right;
}
body.rtl .nav-links,
body.rtl .footer-links,
body.rtl .requirement-list {
    text-align: right;
}
		
		
		
		

      .volume-container {
    display: flex;
    align-items: center;
    position: relative;
}

.volume-slider-container {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 8px;
    border-radius: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-container:hover .volume-slider-container {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.volume-slider-wrapper {
    position: relative;
    width: 4px;
    height: 80px;
    background: rgba(102, 102, 102, 0.5);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.volume-slider-wrapper:hover {
    background: rgba(102, 102, 102, 0.8);
}

.volume-slider-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #D64455, #F5A833);
    border-radius: 2px;
    transition: height 0.15s ease;
    pointer-events: none;
}

.volume-slider-thumb {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #D64455;
    border: 2px solid var(--cream-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: grab;
    z-index: 2;
    transition: all 0.1s ease;
    user-select: none;
}

.volume-slider-thumb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    cursor: grab;
    z-index: -1;
}

.volume-slider-thumb:hover {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.volume-slider-thumb.dragging {
    cursor: grabbing;
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 4px 10px rgba(214, 68, 85, 0.6);
}

.volume-slider-thumb.dragging::before {
    cursor: grabbing;
}

#volumeSlider {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.video-error {
    display: none !important;
}
.local-video video::after,
.local-video video::-webkit-media-controls,
.local-video video::-webkit-media-controls-panel {
    display: none !important;
}

#faq {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 0%, rgba(207, 36, 72, 0.10), transparent 30%),
        radial-gradient(circle at 82% 100%, rgba(63, 88, 98, 0.16), transparent 32%),
        linear-gradient(180deg, #131313 0%, #0B0B0C 100%);
}

#faq::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(-18deg, transparent 0 18px, rgba(240, 232, 216, 0.025) 18px 20px);
    background-size: 260px;
    background-position: 0 0;
    opacity: 0.34;
    z-index: 0;
}

#faq .container {
    position: relative;
    z-index: 1;
}

#faq .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

#faq .faq-item {
    background: linear-gradient(160deg, rgba(34, 34, 34, 0.96), rgba(13, 13, 13, 0.98));
    border-radius: 6px;
    padding: 26px 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 247, 236, 0.15);
    border-left: 4px solid rgba(207, 36, 72, 0.78);
    display: block;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
    position: relative;
    overflow: hidden;
}

#faq .faq-item::after {
    content: none;
}

#faq .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.46);
    border-color: rgba(240, 179, 79, 0.38);
    border-left-color: var(--secondary);
}

#faq .faq-question {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
    display: block;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

#faq .faq-answer {
    font-size: 1rem;
    color: rgba(245, 241, 232, 0.82);
    line-height: 1.8;
    display: block;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .volume-slider-wrapper {
        height: 60px;
    }
    
    .volume-slider-thumb {
        width: 14px;
        height: 14px;
    }
    
    #faq .faq-item {
        padding: 20px;
    }
    
    #faq .faq-question {
        font-size: 1.1rem;
    }
}

/* Too Hot to Be True 2026 refresh */
:root {
    --primary: #ff4f7a;
    --primary-dark: #c8225d;
    --secondary: #ffd15c;
    --accent: #10a9c8;
    --accent-deep: #087494;
    --bg-color: #fff7ed;
    --card-bg: rgba(255, 255, 255, 0.92);
    --text-color: #213240;
    --cream: #fff7ed;
    --cream-light: #ffffff;
    --frame: rgba(255, 255, 255, 0.84);
    --muted-bg: #d8f5f7;
    --header-bg: rgba(255, 255, 255, 0.78);
    --button-bg: linear-gradient(135deg, #ff4f7a, #ff875f 48%, #ffd15c);
    --button-bg-hover: linear-gradient(135deg, #ed3467, #ff734c 52%, #ffca44);
    --button-border: 1px solid rgba(255, 255, 255, 0.64);
    --button-shadow: 0 16px 34px rgba(255, 79, 122, 0.24);
    --button-shadow-hover: 0 20px 42px rgba(255, 79, 122, 0.34);
}

body {
    background:
        linear-gradient(180deg, rgba(255, 247, 237, 0.94), rgba(224, 248, 248, 0.94)),
        url("../images/page_bg.jpg") center top / cover fixed no-repeat;
    color: var(--text-color);
}

body::before {
    background:
        linear-gradient(rgba(8, 116, 148, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 79, 122, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.55;
}

header {
    background: var(--header-bg);
    border-bottom: 1px solid rgba(8, 116, 148, 0.14);
    box-shadow: 0 12px 34px rgba(24, 68, 86, 0.12);
    backdrop-filter: blur(18px);
    padding: 12px 0;
}

.logo-img,
.footer-logo-img {
    background: #ffffff;
    border: 1px solid rgba(8, 116, 148, 0.16);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(24, 68, 86, 0.12);
}

.logo-img img,
.footer-logo-img img {
    object-fit: cover;
}

.logo-main,
.title-main,
.footer-logo-main {
    background: linear-gradient(135deg, #065d78, #10a9c8 46%, #ff4f7a 76%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #065d78;
}

.logo-sub,
.title-sub,
.footer-logo-sub {
    background: linear-gradient(135deg, #ff4f7a, #ff875f 55%, #d59a00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff4f7a;
}

.nav-links a {
    color: #213240;
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
}

.language-btn {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(8, 116, 148, 0.24);
    border-radius: 8px;
    color: #213240;
    font-weight: 700;
}

.language-btn:hover {
    background: #ffffff;
    border-color: rgba(255, 79, 122, 0.45);
}

.language-dropdown {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 116, 148, 0.12);
    border-radius: 8px;
    box-shadow: 0 20px 42px rgba(24, 68, 86, 0.18);
}

.language-option {
    color: #213240;
}

.language-option:hover,
.language-option.active {
    background: rgba(16, 169, 200, 0.1);
    color: var(--primary-dark);
}

.hero {
    min-height: 92svh;
    padding: 118px 0 64px;
    align-items: flex-end;
    background:
        linear-gradient(90deg, rgba(2, 51, 70, 0.9) 0%, rgba(2, 74, 94, 0.72) 42%, rgba(2, 74, 94, 0.22) 72%, rgba(2, 74, 94, 0.08) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, rgba(255, 247, 237, 0.9) 100%),
        url("../images/library_hero.jpg") center / cover no-repeat;
}

.hero::before {
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, transparent 0%, rgba(3, 37, 54, 0.28) 100%);
    z-index: 0;
}

.hero::after {
    height: 18%;
    background: linear-gradient(to bottom, transparent, rgba(255, 247, 237, 0.96));
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    align-items: flex-start;
    text-align: left;
    gap: 22px;
}

.hero-title {
    margin: 0;
    max-width: 680px;
}

.title-main,
.title-sub {
    display: block;
    font-size: clamp(3.2rem, 8vw, 7rem);
    line-height: 0.94;
    text-shadow: 0 12px 28px rgba(0, 31, 44, 0.38);
}

.hero .title-main {
    background: none;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.hero .title-sub {
    background: linear-gradient(135deg, #77f2ff, #ffffff 44%, #ffd15c 72%, #ff6b91);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-season {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: clamp(0.9rem, 1.7vw, 1.12rem);
    font-weight: 700;
    line-height: 1.3;
    backdrop-filter: blur(12px);
}

.hero-description {
    color: rgba(255, 255, 255, 0.92);
    max-width: 660px;
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.75;
}

.section .hero-description {
    color: rgba(33, 50, 64, 0.78);
}

.trailer-container {
    max-width: 720px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(2, 51, 70, 0.28);
    backdrop-filter: blur(12px);
}

.trailer-container::before {
    content: none;
}

.local-video,
.local-video video {
    border-radius: 6px;
}

.local-video video {
    filter: saturate(1.08) contrast(1.02) brightness(1);
}

.video-btn {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(8, 116, 148, 0.16);
    color: #087494;
}

.video-btn:hover {
    background: var(--primary);
    color: #ffffff;
}

.cta-buttons {
    gap: 14px;
}

.btn,
.download-btn,
.download-card-btn,
.mirror-btn {
    border-radius: 8px;
    border: var(--button-border);
    background: var(--button-bg);
    box-shadow: var(--button-shadow);
    color: #ffffff;
    text-transform: none;
    letter-spacing: 0;
}

.btn:hover,
.download-btn:hover,
.download-card-btn:hover,
.mirror-btn:hover {
    background: var(--button-bg-hover);
    box-shadow: var(--button-shadow-hover);
}

.btn-secondary,
.download-card-btn-outline,
.mirror-btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: #087494;
    border-color: rgba(8, 116, 148, 0.22);
}

.btn-secondary:hover,
.download-card-btn-outline:hover,
.mirror-btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-dark);
}

.section {
    padding: 88px 0;
}

.section::after,
footer::before {
    content: none;
}

#about {
    background:
        linear-gradient(135deg, rgba(255, 209, 92, 0.2), transparent 32%),
        linear-gradient(180deg, #fff7ed 0%, #f2fbfb 100%);
}

.section-title {
    color: #213240;
    text-shadow: none;
}

.section-title::after {
    background: linear-gradient(90deg, transparent, var(--accent), var(--primary), var(--secondary), transparent);
}

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

.feature-card,
.requirement-card,
#faq .faq-item,
.download-card,
.mirror-card,
.locked-release-copy,
.locked-release-status,
.download-warning-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(8, 116, 148, 0.12);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(24, 68, 86, 0.12);
    color: #213240;
}

.feature-card:hover,
#faq .faq-item:hover,
.mirror-card:hover {
    border-color: rgba(255, 79, 122, 0.28);
    border-left-color: var(--primary);
    box-shadow: 0 24px 54px rgba(24, 68, 86, 0.18);
}

.feature-icon,
.mirror-icon,
.locked-status-icon {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(16, 169, 200, 0.24);
}

.feature-title,
.requirement-title,
#faq .faq-question,
.footer-heading,
.mirror-title,
.locked-release-title {
    color: #087494;
}

.characters {
    background:
        linear-gradient(120deg, rgba(255, 79, 122, 0.16), transparent 28%),
        linear-gradient(180deg, #dff8f8 0%, #fff7ed 100%);
}

.characters::before {
    background:
        repeating-linear-gradient(90deg, rgba(16, 169, 200, 0.08) 0 1px, transparent 1px 64px),
        repeating-linear-gradient(0deg, rgba(255, 79, 122, 0.05) 0 1px, transparent 1px 64px);
    opacity: 0.72;
}

.characters-grid {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    gap: 18px;
}

.character-card {
    min-height: 470px;
    border-radius: 8px;
    border: 1px solid rgba(8, 116, 148, 0.12);
    background: #ffffff;
    box-shadow: 0 20px 42px rgba(24, 68, 86, 0.16);
    transform: none;
}

.character-card:nth-child(2n),
.character-card:nth-child(3n) {
    transform: none;
}

.character-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 79, 122, 0.4);
    box-shadow: 0 30px 62px rgba(24, 68, 86, 0.22);
}

.character-card::before {
    background: linear-gradient(to top, rgba(3, 37, 54, 0.72), transparent 52%);
}

.character-card::after {
    content: none;
}

.character-img {
    height: 470px;
    object-position: center top;
    filter: saturate(1.04) contrast(1.02);
}

.character-info {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 128px;
    padding: 18px 12px 14px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.97));
    grid-template-rows: auto 8px auto;
    row-gap: 8px;
    color: #213240;
    box-shadow: 0 14px 28px rgba(3, 37, 54, 0.18);
}

.character-name {
    color: #0b5d79;
    text-shadow: none;
    font-size: clamp(1.4rem, 1.65vw, 1.85rem);
}

.character-role {
    color: #c8225d;
    letter-spacing: 0.04em;
    opacity: 1;
    min-height: 0;
}

.character-meter {
    height: 8px;
    background: rgba(16, 169, 200, 0.13);
    border: 0;
}

.character-meter span {
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary));
    box-shadow: none;
}

.character-card:nth-child(1) .character-meter span { width: 88%; }
.character-card:nth-child(2) .character-meter span { width: 74%; }
.character-card:nth-child(3) .character-meter span { width: 68%; }
.character-card:nth-child(4) .character-meter span { width: 92%; }
.character-card:nth-child(5) .character-meter span { width: 80%; }

#screenshots {
    background:
        linear-gradient(135deg, rgba(255, 209, 92, 0.18), transparent 26%),
        linear-gradient(180deg, #fff7ed 0%, #e9fbfb 100%);
}

#screenshots::before {
    background:
        repeating-linear-gradient(135deg, rgba(8, 116, 148, 0.05) 0 1px, transparent 1px 36px);
    opacity: 0.78;
}

.screenshot-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.screenshot-item {
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(24, 68, 86, 0.14);
    border: 1px solid rgba(8, 116, 148, 0.1);
}

.screenshot-item img {
    height: 230px;
}

.screenshot-overlay {
    background: rgba(8, 116, 148, 0.26);
}

.lightbox {
    background: rgba(4, 38, 55, 0.92);
}

.close-lightbox,
.lightbox-nav {
    background: rgba(255, 255, 255, 0.9);
    color: #087494;
    border: 1px solid rgba(255, 255, 255, 0.52);
}

.close-lightbox:hover,
.lightbox-nav:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.download {
    background:
        linear-gradient(135deg, rgba(16, 169, 200, 0.14), transparent 32%),
        linear-gradient(180deg, #fff7ed 0%, #e9fbfb 100%);
}

.requirement-list li {
    border-bottom: 1px solid rgba(8, 116, 148, 0.12);
}

.requirement-value {
    color: var(--primary-dark);
}

footer {
    background:
        linear-gradient(135deg, rgba(255, 79, 122, 0.14), transparent 34%),
        linear-gradient(180deg, #073449 0%, #092637 100%);
    color: #ffffff;
}

footer .footer-description,
footer .footer-links a,
.copyright {
    color: rgba(255, 255, 255, 0.82);
}

footer .footer-links a:hover {
    color: var(--secondary);
}

footer .footer-heading {
    color: var(--secondary);
}

.social-link {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.social-link:hover {
    background: var(--primary);
}

#faq {
    background:
        linear-gradient(135deg, rgba(16, 169, 200, 0.14), transparent 28%),
        linear-gradient(180deg, #e9fbfb 0%, #fff7ed 100%);
}

#faq::before {
    background:
        repeating-linear-gradient(90deg, rgba(255, 79, 122, 0.045) 0 1px, transparent 1px 56px);
}

#faq .faq-answer {
    color: rgba(33, 50, 64, 0.78);
}

.scroll-progress {
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--secondary));
}

@media (max-width: 1180px) {
    .characters-grid {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }

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

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .hero {
        min-height: 92svh;
        padding: 118px 0 46px;
        background-position: 62% center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-description {
        max-width: 94%;
    }

    .trailer-container {
        width: 100%;
    }

    .features,
    .screenshot-gallery,
    .characters-grid {
        grid-template-columns: 1fr;
    }

    .characters-grid {
        max-width: 380px;
    }

    .character-card,
    .character-img {
        min-height: 460px;
        height: 460px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        width: 94%;
        padding: 0 12px;
    }

    .title-main,
    .title-sub {
        font-size: clamp(2.45rem, 14vw, 3.25rem);
    }

    .title-season {
        font-size: 0.82rem;
    }

    .btn,
    .download-btn,
    .download-card-btn,
    .mirror-btn {
        width: 100%;
        padding: 14px 18px;
    }
}

/* Steam capsule-accurate pass */
:root {
    --primary: #ff4e86;
    --primary-dark: #273f68;
    --secondary: #ffe56c;
    --accent: #13d0d3;
    --accent-deep: #0e8ea6;
    --bg-color: #d9f7eb;
    --card-bg: rgba(255, 255, 255, 0.9);
    --text-color: #253f64;
    --cream: #eefdf5;
    --cream-light: #ffffff;
    --frame: rgba(255, 255, 255, 0.78);
    --header-bg: rgba(218, 250, 239, 0.86);
    --button-bg: linear-gradient(135deg, #13d0d3, #2b8dc5 46%, #ff4e86);
    --button-bg-hover: linear-gradient(135deg, #0ebec0, #2379b0 46%, #ec3d77);
    --button-border: 2px solid rgba(255, 255, 255, 0.82);
    --button-shadow: 0 14px 0 rgba(39, 63, 104, 0.16), 0 22px 38px rgba(19, 208, 211, 0.22);
    --button-shadow-hover: 0 10px 0 rgba(39, 63, 104, 0.18), 0 26px 46px rgba(255, 78, 134, 0.25);
}

body {
    background:
        linear-gradient(180deg, rgba(219, 250, 238, 0.94), rgba(180, 242, 227, 0.9)),
        url("../images/page_bg.jpg") center top / cover fixed no-repeat;
    color: #253f64;
}

body::before {
    background:
        linear-gradient(60deg, rgba(255, 255, 255, 0.22) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.22) 75%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.16) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.16) 75%);
    background-size: 62px 108px;
    opacity: 0.34;
}

header {
    background: var(--header-bg);
    border-bottom: 2px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 28px rgba(37, 63, 100, 0.16);
}

.logo {
    gap: 12px;
}

.logo-img,
.footer-logo-img {
    background: #ffffff;
    border: 2px solid #253f64;
    border-radius: 8px;
    box-shadow: 4px 4px 0 rgba(19, 208, 211, 0.28);
}

.logo-img img,
.footer-logo-img img {
    object-fit: cover;
}

.logo-text,
.footer-logo-text {
    justify-content: center;
}

.brand-wordmark,
.footer-wordmark {
    display: block;
    width: clamp(126px, 13vw, 186px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.72));
}

.footer-wordmark {
    width: min(220px, 62vw);
    filter: drop-shadow(0 3px 0 rgba(255, 255, 255, 0.28));
}

.nav-links a {
    color: #253f64;
    font-weight: 800;
}

.nav-links a:hover {
    color: #ff4e86;
}

.nav-links a::after {
    height: 3px;
    background: linear-gradient(90deg, #13d0d3, #ffe56c, #ff4e86);
    border-radius: 99px;
}

.language-btn {
    background: rgba(255, 255, 255, 0.82);
    border: 2px solid rgba(37, 63, 100, 0.42);
    border-radius: 8px;
    color: #253f64;
    font-weight: 800;
}

.language-dropdown {
    background: rgba(238, 253, 245, 0.98);
    border: 2px solid rgba(37, 63, 100, 0.22);
}

.language-option {
    color: #253f64;
}

.hero {
    min-height: 92svh;
    align-items: center;
    padding: 122px 0 54px;
    background:
        linear-gradient(90deg, rgba(218, 250, 239, 0.94) 0%, rgba(218, 250, 239, 0.82) 32%, rgba(218, 250, 239, 0.28) 60%, rgba(218, 250, 239, 0.06) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, rgba(217, 247, 235, 0.96) 100%),
        url("../images/library_hero.jpg") center / cover no-repeat;
}

.hero::before {
    background:
        url("../images/library_header.jpg") left 28px top 108px / min(460px, 42vw) auto no-repeat,
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 28px);
    opacity: 0.28;
    z-index: 0;
}

.hero::after {
    background:
        radial-gradient(circle at 13% 21%, rgba(255, 229, 108, 0.9) 0 18px, transparent 19px),
        radial-gradient(circle at 24% 72%, rgba(19, 208, 211, 0.7) 0 28px, transparent 30px),
        linear-gradient(to bottom, transparent, rgba(217, 247, 235, 0.96));
    height: 100%;
    opacity: 0.45;
}

.hero-content {
    align-items: flex-start;
    text-align: left;
    max-width: 720px;
    margin-left: 0;
}

.hero-title {
    max-width: min(620px, 90vw);
    margin: 0;
}

.hero-wordmark {
    display: block;
    width: clamp(260px, 38vw, 560px);
    max-width: 100%;
    height: auto;
    margin: 0 0 6px -14px;
    filter:
        drop-shadow(0 5px 0 rgba(255, 255, 255, 0.78))
        drop-shadow(0 14px 18px rgba(37, 63, 100, 0.2));
}

.hero-title-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.title-season {
    display: inline-flex;
    margin-top: 2px;
    padding: 8px 12px;
    border: 2px solid rgba(37, 63, 100, 0.28);
    border-radius: 8px;
    background: rgba(255, 229, 108, 0.86);
    color: #253f64;
    box-shadow: 4px 4px 0 rgba(19, 208, 211, 0.24);
    backdrop-filter: none;
}

.hero-description {
    color: #253f64;
    max-width: 620px;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.trailer-container {
    max-width: 680px;
    padding: 10px;
    border: 2px solid #253f64;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(219, 250, 238, 0.86));
    box-shadow: 8px 8px 0 rgba(19, 208, 211, 0.22), 0 20px 42px rgba(37, 63, 100, 0.2);
}

.local-video,
.local-video video {
    border-radius: 4px;
}

.video-btn {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid #253f64;
    color: #253f64;
}

.video-btn:hover {
    background: #ffe56c;
    color: #253f64;
}

.section {
    background-color: #d9f7eb;
}

#about,
.characters,
#screenshots,
.download,
#faq {
    background:
        linear-gradient(60deg, rgba(255, 255, 255, 0.16) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.16) 75%) 0 0 / 62px 108px,
        linear-gradient(180deg, #d9f7eb 0%, #b9f0e6 100%);
}

.section-title {
    color: #253f64;
    font-weight: 800;
}

.section-title::after {
    height: 5px;
    background: linear-gradient(90deg, transparent, #13d0d3, #ffe56c, #ff4e86, transparent);
}

.section .hero-description {
    color: rgba(37, 63, 100, 0.78);
    font-weight: 600;
}

.feature-card,
.requirement-card,
#faq .faq-item,
.download-card,
.mirror-card,
.locked-release-copy,
.locked-release-status,
.download-warning-box {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 253, 245, 0.9));
    border: 2px solid rgba(37, 63, 100, 0.16);
    border-left: 6px solid #13d0d3;
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(19, 208, 211, 0.14), 0 18px 34px rgba(37, 63, 100, 0.1);
}

.feature-card:hover,
#faq .faq-item:hover,
.mirror-card:hover {
    border-left-color: #ff4e86;
    box-shadow: 6px 6px 0 rgba(255, 229, 108, 0.3), 0 22px 42px rgba(37, 63, 100, 0.14);
}

.feature-icon,
.mirror-icon,
.locked-status-icon {
    border-radius: 8px;
    background: linear-gradient(135deg, #253f64, #13d0d3);
    box-shadow: 4px 4px 0 rgba(255, 229, 108, 0.45);
}

.feature-title,
.requirement-title,
#faq .faq-question,
.footer-heading,
.mirror-title,
.locked-release-title {
    color: #253f64;
}

.characters-grid {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
}

.character-card {
    border: 2px solid #253f64;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 7px 7px 0 rgba(19, 208, 211, 0.2), 0 18px 34px rgba(37, 63, 100, 0.12);
}

.character-card:hover {
    transform: translateY(-8px);
    border-color: #ff4e86;
    box-shadow: 7px 7px 0 rgba(255, 229, 108, 0.38), 0 24px 44px rgba(37, 63, 100, 0.16);
}

.character-info {
    background: rgba(238, 253, 245, 0.94);
    border: 2px solid rgba(37, 63, 100, 0.18);
}

.character-name {
    color: #253f64;
    font-weight: 800;
}

.character-role {
    color: #ff4e86;
    font-weight: 800;
}

.character-meter span {
    background: linear-gradient(90deg, #13d0d3, #ffe56c, #ff4e86);
}

.screenshot-item {
    border: 2px solid #253f64;
    border-radius: 8px;
    box-shadow: 7px 7px 0 rgba(19, 208, 211, 0.18), 0 16px 30px rgba(37, 63, 100, 0.12);
}

.btn,
.download-btn,
.download-card-btn,
.mirror-btn {
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 800;
}

.btn-secondary,
.mirror-btn-secondary {
    background: #ffffff;
    color: #253f64;
    border-color: #253f64;
}

footer {
    background:
        linear-gradient(60deg, rgba(255, 255, 255, 0.07) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.07) 75%) 0 0 / 62px 108px,
        linear-gradient(135deg, #253f64 0%, #162744 100%);
}

.social-letter,
.footer-x-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
}

.social-letter {
    font-size: 1.12rem;
}

.footer-x-icon {
    width: 20px;
    margin-right: 8px;
    font-size: 0.96rem;
}

@media (max-width: 1180px) {
    .characters-grid {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 94svh;
        background:
            linear-gradient(180deg, rgba(218, 250, 239, 0.96) 0%, rgba(218, 250, 239, 0.76) 50%, rgba(218, 250, 239, 0.22) 100%),
            linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, rgba(217, 247, 235, 0.96) 100%),
            url("../images/library_hero.jpg") 58% center / cover no-repeat;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-wordmark {
        margin-left: auto;
        margin-right: auto;
    }

    .characters-grid {
        grid-template-columns: 1fr;
    }
}

/* Final brand polish */
:root {
    --brand-gradient: linear-gradient(135deg, #f5f0e6 0%, #c9e8f0 20%, #f0d9c9 40%, #d4c9f0 60%, #c9f0e6 80%, #f0e6c9 100%);
    --ink: #243f66;
    --ink-soft: rgba(36, 63, 102, 0.76);
    --line: rgba(36, 63, 102, 0.18);
    --panel: rgba(255, 255, 255, 0.72);
    --panel-solid: rgba(255, 255, 255, 0.9);
    --pink: #ef4f86;
    --cyan: #12c9d1;
    --yellow: #ffe265;
    --button-bg: linear-gradient(135deg, #12c9d1, #668ed0 52%, #ef4f86);
    --button-bg-hover: linear-gradient(135deg, #0fb6bd, #587ec1 52%, #df3f76);
    --button-border: 1px solid rgba(36, 63, 102, 0.24);
    --button-shadow: 0 10px 20px rgba(36, 63, 102, 0.14);
    --button-shadow-hover: 0 14px 26px rgba(36, 63, 102, 0.18);
}

body {
    background: var(--brand-gradient);
    color: var(--ink);
}

body::before {
    background:
        linear-gradient(60deg, rgba(255, 255, 255, 0.26) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.18) 75%),
        linear-gradient(120deg, rgba(36, 63, 102, 0.035) 25%, transparent 25% 75%, rgba(36, 63, 102, 0.035) 75%);
    background-size: 76px 132px;
    opacity: 0.32;
}

.container {
    max-width: 1180px;
}

header {
    padding: 8px 0;
    background: rgba(220, 246, 235, 0.88);
    border-bottom: 1px solid rgba(36, 63, 102, 0.12);
    box-shadow: 0 8px 24px rgba(36, 63, 102, 0.08);
}

.header-content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 32px;
    min-height: 64px;
}

.logo {
    gap: 10px;
    min-width: 250px;
}

.logo-img,
.footer-logo-img {
    width: 46px;
    height: 46px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    box-shadow: 3px 3px 0 rgba(18, 201, 209, 0.28);
}

.brand-wordmark {
    width: clamp(154px, 12vw, 188px);
    max-height: 58px;
}

.footer-wordmark {
    width: min(218px, 64vw);
    max-height: 86px;
}

.nav-links {
    justify-content: center;
    gap: clamp(18px, 2vw, 30px);
}

.nav-links a {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 800;
}

.language-selector {
    margin-left: 0;
}

.language-btn {
    min-height: 40px;
    border: 1px solid rgba(36, 63, 102, 0.34);
    background: rgba(255, 255, 255, 0.66);
    border-radius: 8px;
}

.hero {
    min-height: calc(100svh - 82px);
    align-items: center;
    padding: 104px 0 52px;
    background:
        linear-gradient(90deg, rgba(245, 240, 230, 0.78) 0%, rgba(201, 232, 240, 0.58) 36%, rgba(201, 240, 230, 0.18) 66%, rgba(245, 240, 230, 0.04) 100%),
        url("../images/library_hero.jpg") center / cover no-repeat;
}

.hero::before {
    background:
        linear-gradient(60deg, rgba(255, 255, 255, 0.22) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.18) 75%),
        linear-gradient(120deg, rgba(36, 63, 102, 0.04) 25%, transparent 25% 75%, rgba(36, 63, 102, 0.04) 75%);
    background-size: 76px 132px;
    opacity: 0.22;
}

.hero::after {
    height: 30%;
    background: linear-gradient(to bottom, transparent, rgba(245, 240, 230, 0.52));
    opacity: 1;
}

.hero-content {
    max-width: 620px;
    gap: 18px;
}

.hero-wordmark {
    width: clamp(300px, 30vw, 470px);
    margin: 0 0 6px -8px;
    filter: drop-shadow(0 4px 0 rgba(255, 255, 255, 0.78)) drop-shadow(0 12px 20px rgba(36, 63, 102, 0.16));
}

.title-season {
    margin-top: 0;
    border: 1px solid rgba(36, 63, 102, 0.24);
    background: rgba(255, 226, 101, 0.9);
    box-shadow: 3px 3px 0 rgba(18, 201, 209, 0.24);
    color: var(--ink);
}

.hero-description {
    color: var(--ink);
    max-width: 620px;
    font-weight: 700;
    line-height: 1.68;
}

.trailer-container {
    max-width: 560px;
    padding: 7px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 5px 5px 0 rgba(18, 201, 209, 0.2), 0 16px 34px rgba(36, 63, 102, 0.13);
}

.video-btn {
    border: 1px solid rgba(36, 63, 102, 0.44);
    color: var(--ink);
}

#about,
.characters,
#screenshots,
.download,
#faq {
    background: var(--brand-gradient);
}

.section-title,
.feature-title,
.requirement-title,
#faq .faq-question,
.footer-heading,
.mirror-title,
.locked-release-title {
    color: var(--ink);
}

.section .hero-description,
#faq .faq-answer {
    color: var(--ink-soft);
}

.feature-card,
.requirement-card,
#faq .faq-item,
.download-card,
.mirror-card,
.locked-release-copy,
.locked-release-status,
.download-warning-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-left: 4px solid var(--cyan);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(36, 63, 102, 0.1);
    color: var(--ink);
    backdrop-filter: blur(10px);
}

.character-card,
.screenshot-item {
    border: 2px solid rgba(36, 63, 102, 0.78);
    box-shadow: 5px 5px 0 rgba(18, 201, 209, 0.18), 0 14px 30px rgba(36, 63, 102, 0.1);
}

.character-info {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(36, 63, 102, 0.18);
}

footer {
    background: var(--brand-gradient);
    color: var(--ink);
    border-top: 1px solid rgba(36, 63, 102, 0.14);
    padding: 56px 0 24px;
}

.footer-content {
    align-items: flex-start;
}

footer .footer-description,
footer .footer-links a,
.copyright {
    color: var(--ink-soft);
}

footer .footer-links a:hover {
    color: var(--pink);
}

footer .footer-heading {
    color: var(--ink);
}

.footer-heading::after {
    background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--pink));
}

.social-link {
    background: rgba(255, 255, 255, 0.62);
    color: var(--ink);
    border: 1px solid rgba(36, 63, 102, 0.12);
}

.social-link:hover {
    background: var(--pink);
    color: #ffffff;
}

.copyright {
    border-top: 1px solid rgba(36, 63, 102, 0.12);
    opacity: 0.82;
}

@media (max-width: 1060px) {
    .header-content {
        grid-template-columns: auto auto;
    }

    .nav-links {
        display: none;
    }

    .language-selector {
        justify-self: end;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 104px 0 44px;
        background:
            linear-gradient(180deg, rgba(245, 240, 230, 0.86) 0%, rgba(201, 232, 240, 0.62) 58%, rgba(201, 240, 230, 0.3) 100%),
            url("../images/library_hero.jpg") 60% center / cover no-repeat;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .hero-wordmark {
        margin-left: auto;
        margin-right: auto;
        width: min(86vw, 420px);
    }
}

/* Stability pass: keep the final visual system ahead of older theme rules. */
header {
    background: rgba(220, 246, 235, 0.94);
}

.header-content {
    min-height: 62px;
}

.logo {
    flex-shrink: 0;
}

.hero {
    min-height: min(860px, calc(100svh - 82px));
    padding: 96px 0 48px;
    background:
        linear-gradient(90deg, rgba(245, 240, 230, 0.88) 0%, rgba(201, 232, 240, 0.7) 35%, rgba(201, 240, 230, 0.26) 68%, rgba(245, 240, 230, 0.04) 100%),
        url("../images/library_hero.jpg") center / cover no-repeat;
}

.hero-title,
.hero-description,
.trailer-container,
.cta-buttons {
    opacity: 1;
    transform: none;
    animation: none;
}

.hero-wordmark {
    width: clamp(312px, 29vw, 452px);
}

.trailer-container {
    max-width: 520px;
}

.cta-buttons {
    gap: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(2, minmax(170px, 0.6fr));
    gap: clamp(28px, 5vw, 64px);
}

.footer-logo {
    gap: 12px;
}

.footer-description {
    max-width: 430px;
}

@media (max-width: 900px) {
    .header-content {
        gap: 16px;
    }

    .logo {
        min-width: 0;
    }

    .brand-wordmark {
        width: clamp(140px, 34vw, 174px);
    }

    .hero {
        min-height: auto;
        padding: 96px 0 42px;
        background:
            linear-gradient(180deg, rgba(245, 240, 230, 0.9) 0%, rgba(201, 232, 240, 0.74) 56%, rgba(201, 240, 230, 0.4) 100%),
            url("../images/library_hero.jpg") 60% center / cover no-repeat;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    header {
        padding: 6px 0;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .brand-wordmark {
        width: min(44vw, 156px);
    }

    .language-btn {
        min-height: 36px;
        padding: 8px 10px;
    }

    .language-btn #currentLang {
        display: none;
    }

    .hero-wordmark {
        width: min(88vw, 380px);
    }
}

/* Requested gradient alignment and centered hero */
:root {
    --button-bg: var(--brand-gradient);
    --button-bg-hover: var(--brand-gradient);
    --stripe-gradient: var(--brand-gradient);
}

.scroll-progress,
.section-title::after,
.footer-heading::after {
    background: var(--stripe-gradient);
}

.btn-primary,
.btn-primary:hover,
.btn-secondary,
.btn-secondary:hover,
.download-btn.btn-primary,
.download-btn.btn-primary:hover,
.download-card-btn,
.download-card-btn:hover,
.mirror-btn-primary,
.mirror-btn-primary:hover,
.mirror-btn-secondary:hover {
    background: var(--brand-gradient);
    color: var(--ink);
    border: 1px solid rgba(36, 63, 102, 0.28);
    box-shadow: 0 10px 20px rgba(36, 63, 102, 0.12);
}

.btn-primary i,
.btn-secondary i,
.download-btn.btn-primary i,
.mirror-btn-primary i,
.mirror-btn-secondary:hover i {
    color: var(--ink);
}

.btn-primary:hover,
.btn-secondary:hover,
.download-btn.btn-primary:hover,
.download-card-btn:hover,
.mirror-btn-primary:hover,
.mirror-btn-secondary:hover {
    color: var(--ink);
    filter: brightness(1.02);
    transform: translateY(-2px);
}

.btn-primary::before,
.btn-secondary::before,
.download-btn.btn-primary::after {
    content: none;
}

footer .footer-links a:hover,
.nav-links a:hover {
    color: var(--ink);
}

.social-link:hover {
    background: var(--brand-gradient);
    color: var(--ink);
    border-color: rgba(36, 63, 102, 0.28);
}

.social-link:hover i,
.social-link:hover .social-letter {
    color: var(--ink);
}

.logo-img,
.footer-logo-img,
.title-season {
    display: none;
}

.logo {
    min-width: 0;
}

.hero-content {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    text-align: center;
}

.hero-title {
    align-items: center;
}

.hero-wordmark {
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    margin-left: auto;
    margin-right: auto;
}

.trailer-container {
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    justify-content: center;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-x-icon {
    margin-right: 0;
}

@media (max-width: 560px) {
    .brand-wordmark {
        width: min(52vw, 166px);
    }
}

/* Game UI pass */
:root {
    --game-yellow: linear-gradient(180deg, #fff8a8 0%, #ffd94e 46%, #ffb52d 100%);
    --game-yellow-soft: linear-gradient(180deg, #fffce3 0%, #ffe57a 50%, #ffc64d 100%);
    --game-cyan: linear-gradient(180deg, #baf7ff 0%, #35d8ee 48%, #05bed5 100%);
    --game-cyan-soft: linear-gradient(180deg, #e4fbff 0%, #7fe9f6 48%, #20cee1 100%);
    --game-disabled: linear-gradient(180deg, #d8e5e8 0%, #b6c8ce 100%);
    --game-button-border: rgba(255, 255, 255, 0.88);
    --game-blue-shadow: rgba(36, 63, 102, 0.28);
}

.hero {
    min-height: calc(100svh - 62px);
    padding: 84px 0 56px;
    align-items: center;
}

.hero-content {
    justify-content: center;
}

.btn,
.download-btn,
.download-card-btn,
.mirror-btn {
    position: relative;
    min-height: 60px;
    padding: 15px 36px;
    border-radius: 18px;
    border: 3px solid var(--game-button-border);
    color: #14345e;
    font-weight: 900;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.52);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.72),
        inset 0 -5px 0 rgba(36, 63, 102, 0.1),
        0 5px 0 rgba(36, 63, 102, 0.18),
        0 16px 28px rgba(36, 63, 102, 0.2);
    overflow: hidden;
}

.btn::after,
.download-btn::after,
.download-btn.btn-primary::after,
.download-card-btn::after,
.mirror-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.16) 40%, rgba(255, 255, 255, 0) 68%);
    opacity: 0.58;
    pointer-events: none;
}

.cta-buttons .btn {
    min-width: 182px;
    min-height: 58px;
}

.btn-primary,
.download-btn.btn-primary,
.download-card-btn,
.mirror-btn-primary {
    background: var(--game-yellow);
    color: #5d3600;
}

.btn-secondary,
.download-btn:not(.btn-primary),
.mirror-btn-secondary {
    background: var(--game-cyan);
    color: #14345e;
}

.btn-primary i,
.download-btn.btn-primary i,
.download-card-btn i,
.mirror-btn-primary i {
    color: #ffffff;
    filter: drop-shadow(0 2px 0 rgba(145, 82, 0, 0.28));
}

.btn-secondary i,
.download-btn:not(.btn-primary) i,
.mirror-btn-secondary i {
    color: #ffffff;
    filter: drop-shadow(0 2px 0 rgba(5, 119, 135, 0.34));
}

.btn:hover,
.download-btn:hover,
.download-card-btn:hover,
.mirror-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.04);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.78),
        inset 0 -5px 0 rgba(36, 63, 102, 0.08),
        0 7px 0 rgba(36, 63, 102, 0.18),
        0 20px 34px rgba(36, 63, 102, 0.24);
}

.btn:active,
.download-btn:active,
.download-card-btn:active,
.mirror-btn:active {
    transform: translateY(2px);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.55),
        inset 0 -2px 0 rgba(36, 63, 102, 0.12),
        0 2px 0 rgba(36, 63, 102, 0.18),
        0 10px 20px rgba(36, 63, 102, 0.18);
}

.cta-buttons {
    gap: 22px;
}

.download-options {
    gap: 24px;
}

.mirror-btn {
    min-height: 54px;
    padding: 13px 28px;
    border-radius: 14px;
}

.mirror-icon {
    background: var(--game-cyan);
    border: 3px solid rgba(255, 255, 255, 0.82);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.66),
        inset 0 -4px 0 rgba(36, 63, 102, 0.1),
        0 5px 0 rgba(36, 63, 102, 0.14);
}

.mirror-icon i {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    filter: drop-shadow(0 2px 0 rgba(5, 119, 135, 0.38));
}

@media (max-width: 900px) {
    .hero {
        min-height: calc(100svh - 58px);
        padding: 82px 0 44px;
    }
}

@media (max-width: 560px) {
    .btn,
    .download-btn,
    .download-card-btn,
    .mirror-btn {
        min-height: 54px;
        padding: 13px 24px;
        border-radius: 16px;
    }
}

/* Game-faithful cleanup */
:root {
    --game-ink: #243f66;
    --game-ui-cyan: linear-gradient(180deg, #d9fbff 0%, #66e5f3 48%, #13c5d8 100%);
    --game-ui-yellow: linear-gradient(180deg, #fff7b5 0%, #ffe067 48%, #ffc03b 100%);
    --game-ui-white: rgba(247, 253, 255, 0.9);
    --game-ui-border: rgba(255, 255, 255, 0.92);
}

.scroll-progress,
.section-title::after,
.footer-heading::after,
.nav-links a::after {
    display: none;
}

.hero#home {
    min-height: 100svh;
    padding: 76px 0 34px;
}

.hero-content {
    max-width: min(820px, 92vw);
    gap: 14px;
}

.hero-wordmark {
    width: clamp(360px, 31vw, 560px);
}

.hero-description {
    max-width: 720px;
    line-height: 1.52;
}

.trailer-container {
    max-width: min(760px, 78vw);
    padding: 8px;
}

.trailer-container::before {
    content: none;
    display: none;
}

.volume-container {
    display: none;
}

.video-controls {
    bottom: 16px;
    right: 16px;
}

.video-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 3px solid var(--game-ui-border);
    background: var(--game-ui-cyan);
    color: #ffffff;
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.72),
        0 4px 0 rgba(36, 63, 102, 0.16),
        0 12px 20px rgba(36, 63, 102, 0.18);
}

.video-btn:hover {
    background: var(--game-ui-yellow);
    color: #6b4300;
    transform: translateY(-1px);
}

.btn,
.download-btn,
.download-card-btn,
.mirror-btn,
.close-lightbox,
.lightbox-nav {
    border-radius: 8px;
    border: 3px solid var(--game-ui-border);
    text-transform: none;
    letter-spacing: 0;
    color: var(--game-ink);
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.58);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.76),
        inset 0 -4px 0 rgba(36, 63, 102, 0.08),
        0 4px 0 rgba(36, 63, 102, 0.16),
        0 14px 24px rgba(36, 63, 102, 0.18);
}

.btn,
.download-btn,
.download-card-btn,
.mirror-btn {
    min-height: 58px;
    padding: 14px 34px;
    font-weight: 900;
}

.btn-primary,
.download-btn.btn-primary,
.download-card-btn,
.mirror-btn-primary {
    background: var(--game-ui-yellow);
    color: #5e3b00;
}

.btn-secondary,
.download-btn:not(.btn-primary),
.mirror-btn-secondary {
    background: var(--game-ui-cyan);
    color: var(--game-ink);
}

.btn:hover,
.download-btn:hover,
.download-card-btn:hover,
.mirror-btn:hover,
.close-lightbox:hover,
.lightbox-nav:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    color: var(--game-ink);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.82),
        inset 0 -4px 0 rgba(36, 63, 102, 0.06),
        0 5px 0 rgba(36, 63, 102, 0.16),
        0 16px 28px rgba(36, 63, 102, 0.2);
}

.btn-primary:hover,
.download-btn.btn-primary:hover,
.download-card-btn:hover,
.mirror-btn-primary:hover {
    background: var(--game-ui-yellow);
}

.btn-secondary:hover,
.download-btn:not(.btn-primary):hover,
.mirror-btn-secondary:hover,
.close-lightbox:hover,
.lightbox-nav:hover {
    background: var(--game-ui-cyan);
}

.btn:active,
.download-btn:active,
.download-card-btn:active,
.mirror-btn:active,
.close-lightbox:active,
.lightbox-nav:active {
    transform: translateY(2px);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.62),
        0 2px 0 rgba(36, 63, 102, 0.14),
        0 10px 18px rgba(36, 63, 102, 0.16);
}

.btn i,
.download-btn i,
.download-card-btn i,
.mirror-btn i {
    color: #ffffff;
    filter: drop-shadow(0 2px 0 rgba(36, 63, 102, 0.24));
}

.character-card::before,
.character-card::after {
    content: none;
    display: none;
}

.character-card:hover {
    border-color: rgba(19, 197, 216, 0.46);
    box-shadow: 0 26px 54px rgba(36, 63, 102, 0.18);
}

.character-role {
    color: rgba(36, 63, 102, 0.72);
}

.character-meter span {
    background: linear-gradient(90deg, #ffe067, #66e5f3);
}

.screenshot-overlay {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    background: rgba(36, 63, 102, 0.34);
}

.screenshot-overlay::after {
    content: "View";
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 2px 6px rgba(36, 63, 102, 0.4);
}

.zoom-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--game-ui-cyan);
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.86);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.7),
        0 5px 0 rgba(36, 63, 102, 0.16);
    font-size: 1.55rem;
    transform: none;
}

.lightbox {
    background: rgba(36, 63, 102, 0.74);
    backdrop-filter: blur(10px);
}

.lightbox-content img {
    border: 3px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 54px rgba(36, 63, 102, 0.34);
}

.close-lightbox,
.lightbox-nav {
    background: var(--game-ui-cyan);
    color: #ffffff;
}

.close-lightbox:hover,
.lightbox-nav:hover {
    background: var(--game-ui-cyan);
    color: #ffffff;
    border-color: var(--game-ui-border);
    transform: none;
}

.close-lightbox:active,
.lightbox-nav:active {
    transform: none;
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.76),
        inset 0 -4px 0 rgba(36, 63, 102, 0.08),
        0 4px 0 rgba(36, 63, 102, 0.16),
        0 14px 24px rgba(36, 63, 102, 0.18);
}

.footer-links a {
    display: grid;
    grid-template-columns: 22px minmax(0, auto);
    align-items: center;
    column-gap: 10px;
}

.footer-links a i,
.footer-x-icon {
    width: 22px;
    min-width: 22px;
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-x-icon {
    width: 22px;
    margin-right: 0;
    font-weight: 900;
}

@media (min-width: 1200px) {
    .hero#home {
        padding-top: 82px;
    }
}

@media (max-height: 820px) and (min-width: 900px) {
    .hero#home {
        min-height: 100svh;
        padding: 70px 0 24px;
    }

    .hero-content {
        gap: 10px;
    }

    .hero-wordmark {
        width: clamp(320px, 24vw, 450px);
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.42;
    }

    .trailer-container {
        max-width: min(690px, 68vw);
    }

    .cta-buttons {
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .hero#home {
        min-height: 100svh;
        padding: 78px 0 28px;
    }

    .trailer-container {
        max-width: 92vw;
    }

    .hero-wordmark {
        width: min(86vw, 420px);
    }

    .btn,
    .download-btn,
    .download-card-btn,
    .mirror-btn {
        width: min(100%, 320px);
    }
}



