:root {
    --rt-navy: #211029;
    --rt-navy-2: #2d1b38;
    --rt-light: #f2f3fd;
    --rt-white: #ffffff;
    --rt-text: #5f6572;
    --rt-border: #d9dceb;
    --rt-link: #211029;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    color: var(--rt-text);
    background: var(--rt-white);
}

a {
    color: var(--rt-link);
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    font-family: "Poppins", sans-serif;
    color: var(--rt-navy);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.1rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1.2rem;
}

p {
    margin: 0 0 1rem;
}

.press-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(33, 16, 41, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.brand img {
    width: auto;
    height: 44px;
    border-radius: 0;
    box-shadow: none;
}

.back-home {
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.9rem;
}

.back-home:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
}

.hero {
    padding: 2.2rem 0 1.4rem;
    background: radial-gradient(circle at 15% 20%, #4a2658, var(--rt-navy));
}

.hero-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.6rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: 0 20px 40px rgba(11, 7, 16, 0.25);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-logo {
    width: min(360px, 100%);
    max-height: 86px;
    object-fit: contain;
    margin: 0.1rem 0 0.55rem;
}

.eyebrow {
    margin: 0 0 0.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    color: #54466e;
}

.tagline {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #2d2440;
}

.status-line {
    font-size: 0.98rem;
    color: #605a72;
}

.hero-media img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: contain;
    /*background: #eef0fa;
    border-radius: 14px;
    border: 1px solid #d7d4e3;*/
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.6rem;
}

.btn {
    display: inline-block;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.65rem 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--rt-navy);
    color: #fff;
    border: 1px solid var(--rt-navy);
}

.btn-primary:hover {
    color: var(--rt-navy);
    background: #fff;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid var(--rt-navy);
    color: var(--rt-navy);
    background: transparent;
}

.btn-outline:hover {
    text-decoration: none;
    background: var(--rt-navy);
    color: #fff;
}

.anchor-nav {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.anchor-nav a {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 0.85rem;
    padding: 0.35rem 0.8rem;
}

.anchor-nav a:hover {
    background: rgba(255, 255, 255, 0.28);
}

.section {
    padding: 3rem 0;
}

.section-alt {
    background: var(--rt-light);
}

.lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #383d48;
}

.factsheet-table {
    border: 1px solid var(--rt-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.fact-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid var(--rt-border);
}

.fact-row:last-child {
    border-bottom: none;
}

.fact-key,
.fact-value {
    padding: 0.78rem 0.95rem;
}

.fact-key {
    font-weight: 700;
    color: #2d2940;
    background: #fbfbff;
}

.fact-value {
    color: #4f5663;
}

.muted {
    color: #7f8794;
    font-size: 0.9em;
}

.feature-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.65rem;
}

.copy-details {
    border: 1px solid var(--rt-border);
    border-radius: 14px;
    background: #fff;
    margin-bottom: 0.9rem;
    overflow: hidden;
}

.copy-details summary {
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: var(--rt-navy);
    padding: 0.9rem 1rem;
    background: #fbfbff;
    border-bottom: 1px solid var(--rt-border);
}

.copy-tools {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding: 0.9rem 1rem 0.25rem;
}

.copy-text {
    width: calc(100% - 2rem);
    margin: 0.55rem 1rem 1rem;
    min-height: 260px;
    border: 1px solid var(--rt-border);
    border-radius: 10px;
    background: #fff;
    color: #2f3541;
    font: 400 0.88rem/1.45rem "Open Sans", sans-serif;
    padding: 0.9rem;
    resize: vertical;
}

.copy-text-code {
    font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
    line-height: 1.35rem;
}

.copy-rich {
    width: calc(100% - 2rem);
    margin: 0.55rem 1rem 1rem;
    border: 1px solid var(--rt-border);
    border-radius: 10px;
    background: #fff;
    color: #2f3541;
    padding: 0.95rem 1rem;
    line-height: 1.55;
}

.copy-rich h3 {
    font-size: 1.05rem;
    margin: 0.8rem 0 0.45rem;
}

.copy-rich h3:first-child {
    margin-top: 0;
}

.copy-rich p {
    margin-bottom: 0.8rem;
}

.copy-rich ul {
    margin: 0 0 0.85rem 1.2rem;
    padding: 0;
}

.copy-status {
    font-size: 0.9rem;
    font-weight: 700;
}

.copy-status.is-ok {
    color: #1f7f4d;
}

.copy-status.is-error {
    color: #ae2f2f;
}

.video-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(30, 25, 41, 0.15);
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.trailer-frame-wrap {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(30, 25, 41, 0.15);
}

.videos-subtitle {
    margin-top: 2rem;
}

.trailer-frame-wrap iframe {
    width: 100%;
    height: min(54vw, 540px);
    min-height: 315px;
    border: 0;
    display: block;
}

.download-inline {
    margin-top: 1rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.section-note {
    margin-bottom: 1rem;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

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

.asset-card {
    border: 1px solid var(--rt-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(36, 31, 48, 0.05);
}

.asset-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

#key-art .asset-card img {
    object-fit: contain;
    background: #eef0fa;
}

#logos .asset-card img {
    object-fit: contain;
    background: linear-gradient(135deg, #24202f, #31284a);
    padding: 0.6rem;
}

.asset-card-body {
    padding: 0.85rem 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.asset-card-body h3 {
    font-size: 1rem;
    margin: 0;
}

.asset-card-body a {
    font-size: 0.9rem;
    font-weight: 700;
}

.asset-card-note {
    display: flex;
    align-items: center;
}

.asset-card-note .asset-card-body {
    display: block;
}

.download-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.download-item {
    display: block;
    padding: 1rem;
    border: 1px solid var(--rt-border);
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
}

.download-item strong {
    display: block;
    color: var(--rt-navy);
    margin-bottom: 0.35rem;
}

.download-item span {
    color: var(--rt-text);
    font-size: 0.95rem;
}

.download-item:hover {
    text-decoration: none;
    border-color: #a7adcb;
    box-shadow: 0 6px 18px rgba(46, 37, 61, 0.08);
}

.contact-card {
    max-width: 700px;
    padding: 1.2rem;
    border: 1px solid var(--rt-border);
    border-radius: 14px;
    background: #fff;
}

.contact-card p {
    margin-bottom: 0.55rem;
}

.press-footer {
    border-top: 1px solid var(--rt-border);
    padding: 1.2rem 0;
    background: #fff;
}

.press-footer p {
    margin: 0;
    font-size: 0.92rem;
}

.go-top-fixed {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--rt-navy);
    background: var(--rt-navy);
    color: #fff;
    text-decoration: none;
    z-index: 60;
    box-shadow: 0 8px 18px rgba(20, 14, 29, 0.28);
}

.go-top-fixed:hover {
    color: var(--rt-navy);
    background: #fff;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-media img {
        max-height: 300px;
    }

    .asset-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .section {
        padding: 2.2rem 0;
    }

    .fact-row {
        grid-template-columns: 1fr;
    }

    .fact-key {
        border-bottom: 1px solid var(--rt-border);
    }

    .asset-grid,
    .asset-grid-three,
    .download-list {
        grid-template-columns: 1fr;
    }

    .anchor-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.4rem;
    }
}
