:root {
    --bg: #11141a;
    --panel: #1a1f29;
    --panel-2: #202736;
    --text: #f2f4f8;
    --muted: #b8becf;
    --line: #2f3850;
    --primary: #ff7f50;
    --primary-2: #ff9f6a;
    --accent: #53d8c8;
    --radius: 16px;
    --shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
    --bg-image: none;
    --bevel-top: rgba(255, 255, 255, 0.28);
    --bevel-mid: rgba(255, 255, 255, 0.12);
    --bevel-low: rgba(0, 0, 0, 0.35);
    --glass: rgba(255, 255, 255, 0.06);
    --glass-strong: rgba(255, 255, 255, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg);
    background-image:
        radial-gradient(900px 560px at 18% -6%, rgba(255, 255, 255, 0.18), transparent 64%),
        radial-gradient(1100px 760px at 100% -10%, rgba(255, 255, 255, 0.12), transparent 68%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01) 28%, rgba(0, 0, 0, 0.2)),
        var(--bg-image);
    background-size: auto, auto, cover;
    background-position: center top, left top, center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 18px 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(78px);
    pointer-events: none;
    z-index: 0;
}

.orb-a {
    width: 260px;
    height: 260px;
    right: -70px;
    top: 100px;
    background: var(--accent);
    opacity: 0.22;
}

.orb-b {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: 40px;
    background: var(--primary);
    opacity: 0.2;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1200px, 94%);
    margin: 0 auto;
    min-height: calc(100vh - 36px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 26%, rgba(0, 0, 0, 0.28) 100%),
        linear-gradient(155deg, var(--panel-2), var(--panel));
    backdrop-filter: blur(14px);
    box-shadow:
        0 26px 80px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 -1px 0 rgba(0, 0, 0, 0.28) inset;
}

.page-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(700px 180px at 25% 0%, rgba(255, 255, 255, 0.22), transparent 74%),
        radial-gradient(600px 150px at 75% 0%, rgba(255, 255, 255, 0.12), transparent 76%);
}

.page-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.container {
    width: min(1080px, 92%);
    margin: 0 auto;
}

.site-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 46%, rgba(0, 0, 0, 0.2)),
        rgba(11, 13, 19, 0.45);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18) inset,
        0 -1px 0 rgba(0, 0, 0, 0.3) inset;
}

.site-header nav {
    display: flex;
    gap: 18px;
}

.site-header nav a {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-header nav a:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-1px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    min-width: 220px;
    padding: 4px 2px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.brand img {
    display: block;
    max-width: min(36vw, 420px);
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

main {
    padding-bottom: 52px;
}

h1, h2, h3 {
    margin-top: 0;
    font-family: 'Space Grotesk', sans-serif;
}

h1 {
    font-size: clamp(32px, 6vw, 58px);
    margin-bottom: 14px;
}

.hero {
    padding: 72px 0 26px;
    animation: rise 0.58s ease-out both;
}

.hero-home {
    padding-top: 56px;
}

.section-top-carousel {
    margin-top: 18px;
}

.top-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 6;
    min-height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 40%, rgba(0, 0, 0, 0.18)),
        var(--panel);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.28),
        0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.top-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.65s ease;
}

.top-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.top-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.top-slide-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top-slide-caption {
    position: absolute;
    left: 18px;
    bottom: 14px;
    right: 18px;
    border-radius: 10px;
    padding: 10px 12px;
    background: linear-gradient(125deg, rgba(0, 0, 0, 0.52), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.top-slide-caption h2 {
    margin: 0;
    font-size: clamp(16px, 2.6vw, 24px);
}

.top-slide-caption p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(12px, 1.8vw, 15px);
}

.top-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.top-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.45);
}

.top-dot.is-active {
    background: var(--accent);
}

.top-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.44));
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.top-carousel-arrow:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(0, 0, 0, 0.56));
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.34) inset;
}

.top-carousel-arrow:active {
    transform: translateY(-50%) scale(0.97);
}

.top-carousel-prev {
    left: 12px;
}

.top-carousel-next {
    right: 12px;
}

.hero-subtitle,
.section-intro,
.card-body p,
.about-panel,
.mix-text p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.section {
    margin-top: 26px;
    animation: rise 0.66s ease-out both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.22s ease;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.btn-primary {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 48%),
        linear-gradient(120deg, var(--primary), var(--primary-2));
    color: #121212;
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.32) inset;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.36) inset;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.34),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 50%),
        rgba(0, 0, 0, 0.18);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.26),
        0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 54%),
        rgba(0, 0, 0, 0.24);
    transform: translateY(-1px);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 16px;
}

.game-card {
    position: relative;
    background: linear-gradient(165deg, var(--panel-2), var(--panel));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.34),
        0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.game-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 32%);
}

.game-card-link {
    display: block;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-card-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 22px 38px rgba(0, 0, 0, 0.42),
        0 1px 0 rgba(255, 255, 255, 0.28) inset;
}

.card-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: #222938;
}

.card-body {
    padding: 16px;
}

.text-link {
    color: var(--accent);
    font-weight: 600;
}

.html-content p,
.html-content ul,
.html-content ol,
.html-content h2,
.html-content h3,
.html-content h4 {
    margin-top: 0;
    margin-bottom: 0.7em;
}

.html-content a {
    color: var(--accent);
}

.game-hero .banner {
    width: 100%;
    aspect-ratio: 16 / 7;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    background-color: #232a39;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.34),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.game-hero-body {
    margin-top: 18px;
    background:
        linear-gradient(170deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 36%),
        var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 18px;
}

.meta span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--muted);
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.shots-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 38%);
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 10px;
    scroll-snap-type: x proximity;
}

.media-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 38%);
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 10px;
    scroll-snap-type: x proximity;
}

.media-strip::-webkit-scrollbar {
    height: 8px;
}

.media-strip::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.media-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 36%), var(--panel);
    margin: 0;
    padding: 0;
    color: inherit;
    text-align: left;
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

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

.media-video-fallback {
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.45);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.28));
}

.media-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.media-chip {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.shots-scroll::-webkit-scrollbar {
    height: 8px;
}

.shots-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.shot-card {
    margin: 0;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
}

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

.shot-card figcaption {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 14px;
}

.rich-intro,
.about-panel {
    margin-bottom: 16px;
    padding: 18px;
    border-radius: var(--radius);
    background:
        linear-gradient(170deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0) 34%),
        var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.26),
        0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.mix-block {
    margin-top: 14px;
    display: grid;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius);
    background:
        linear-gradient(170deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0) 36%),
        var(--panel-2);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.26),
        0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.mix-block.img-left,
.mix-block.img-right {
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
}

.mix-block.img-left img {
    order: 0;
}

.mix-block.img-left .mix-text {
    order: 1;
}

.mix-block.img-right img {
    order: 1;
}

.mix-block.img-right .mix-text {
    order: 0;
}

.mix-block.img-full {
    grid-template-columns: 1fr;
}

.mix-block img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 360px;
}

.feedback-form {
    width: min(700px, 100%);
    display: grid;
    gap: 14px;
}

.feedback-form label {
    display: grid;
    gap: 8px;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 55%),
        var(--panel);
    color: var(--text);
    font-size: 15px;
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.2) inset,
        0 1px 0 rgba(255, 255, 255, 0.15);
}

.feedback-form textarea {
    resize: vertical;
}

.error {
    color: #ffb2ab;
}

.flash-wrap {
    margin-top: 16px;
}

.flash-message {
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.26);
    padding: 10px 12px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.empty-tips {
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: 12px;
    padding: 16px;
}

.site-footer {
    margin-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

.announcement-banner,
.announcement-item,
.announcement-detail {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03) 32%, rgba(0, 0, 0, 0.16));
    box-shadow:
        0 12px 22px rgba(0, 0, 0, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.announcement-banner {
    display: block;
    padding: 16px 18px;
}

.announcement-banner h2 {
    margin-bottom: 8px;
}

.announcement-tag {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.12);
}

.announcement-list {
    display: grid;
    gap: 12px;
}

.announcement-item {
    display: block;
    padding: 14px 16px;
}

.announcement-item h2 {
    margin-bottom: 8px;
}

.announcement-item .html-content {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--muted);
}

.announcement-time {
    color: var(--muted);
    font-size: 13px;
}

.announcement-detail {
    padding: 20px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.9) 55%);
    display: grid;
    place-items: center;
    padding: 24px;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox-inner {
    width: min(1100px, 96vw);
}

.lightbox-image,
.lightbox-video {
    width: 100%;
    max-height: 80vh;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #000;
    object-fit: contain;
}

.lightbox-caption {
    margin: 10px 6px 0;
    color: var(--muted);
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.52));
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

.floating-ad {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
    width: min(300px, 38vw);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(0, 0, 0, 0.3));
}

.floating-ad-link {
    display: block;
}

.floating-ad-link img {
    width: 100%;
    display: block;
}

.floating-ad-close {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(0, 0, 0, 0.54));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 820px) {
    body {
        padding: 10px 0;
    }

    .page-shell {
        width: min(1200px, 97%);
        border-radius: 18px;
        min-height: calc(100vh - 20px);
    }

    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }

    .site-header nav {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .brand img {
        max-width: min(62vw, 320px);
        max-height: 56px;
    }

    .hero-home {
        padding-top: 48px;
    }

    .top-carousel {
        aspect-ratio: 16 / 7;
    }

    .top-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 26px;
    }

    .mix-block.img-left,
    .mix-block.img-right {
        grid-template-columns: 1fr;
    }

    .mix-block.img-right img,
    .mix-block.img-left img {
        order: 0;
    }

    .mix-block.img-right .mix-text,
    .mix-block.img-left .mix-text {
        order: 1;
    }

    .shots-scroll {
        grid-auto-columns: 84%;
    }

    .media-strip {
        grid-auto-columns: 84%;
    }

    .floating-ad {
        right: 12px;
        bottom: 12px;
        width: min(260px, 52vw);
    }
}
