/* ========================================
   CSS RESET & VARIABLES
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-bg: #0a0a0b;
    --color-bg-elevated: #101012;
    --color-bg-card: #141417;
    --color-bg-subtle: #1a1a1f;

    --color-accent: #dc2626;
    --color-accent-bright: #ef4444;
    --color-accent-glow: rgba(220, 38, 38, 0.4);

    --color-text: #f5f5f7;
    --color-text-secondary: #9ca3af;
    --color-text-muted: #4b5563;

    --color-border: #232329;
    --color-border-hover: #3f3f46;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --header-height: 80px;
    --max-width: 1280px;
    --section-spacing: 140px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header__container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
}

.header__logo:hover {
    opacity: 0.8;
}

.header__logo-img {
    height: 52px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header__nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.header__nav-link:hover {
    color: var(--color-text);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__mobile-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__mobile-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 0.02em;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--color-text);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
}

.hero__content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    background: var(--color-bg);
}

.hero__background {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero__background-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.hero__characters {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    padding: 0 40px;
    pointer-events: none;
}

.hero__character {
    height: auto;
    max-height: 350px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    opacity: 0;
    animation: characterReveal 1s ease forwards, characterIdle 4s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

.hero__character--1 {
    max-height: 320px;
    animation-delay: 0.2s, 1.2s;
    animation-name: characterReveal, characterIdle1;
}

.hero__character--2 {
    max-height: 380px;
    animation-delay: 0.4s, 1.4s;
    animation-name: characterReveal, characterIdle2;
}

.hero__character--3 {
    max-height: 280px;
    animation-delay: 0.6s, 1.6s;
    animation-name: characterReveal, characterIdle3;
}

.hero__character--4 {
    max-height: 300px;
    animation-delay: 0.8s, 1.8s;
    animation-name: characterReveal, characterIdle4;
}

.hero__logo {
    width: 280px;
    height: auto;
    margin: 0 auto 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero__title span {
    color: var(--color-accent-bright);
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--color-text-secondary);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--color-accent);
    color: white;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--color-accent-glow);
}

.hero__cta svg {
    transition: transform var(--transition-fast);
}

/* ========================================
   SECTIONS - Common
   ======================================== */
.section {
    padding: var(--section-spacing) 40px;
}

.section__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section__header {
    display: flex;
    align-items: baseline;
    gap: 32px;
    margin-bottom: 64px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-text);
}

.section__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--color-border), transparent);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade.visible {
    opacity: 1;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========================================
   STUDIO SECTION
   ======================================== */
.studio {
    padding: 0;
}

.studio__content-wrapper {
    background: var(--color-bg);
    padding: var(--section-spacing) 40px;
}

.studio__background {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.studio__background-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.studio__characters {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.studio__character {
    height: auto;
    max-height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    opacity: 0;
    animation: characterReveal 1s ease forwards, studioIdle 5s ease-in-out infinite;
    animation-delay: 0.3s, 1.3s;
}

.studio__character--1 {
    max-height: 380px;
}

.studio__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
}

.studio__label {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--color-accent-bright);
    text-transform: uppercase;
}

.studio__content {
    max-width: 640px;
}

.studio__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
}

.studio__text p {
    margin-bottom: 24px;
}

.studio__text p:last-child {
    margin-bottom: 0;
}

.studio__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}

.studio__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.studio__tag:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
}

.studio__tag-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* ========================================
   GAMES SECTION
   ======================================== */
.games {
    background: var(--color-bg-elevated);
}

.game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.game-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 60px rgba(220, 38, 38, 0.15);
    transform: translateY(-4px);
}

.game-card__visual {
    aspect-ratio: 1/1;
    background: var(--color-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-card__icon {
    width: 80%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
}

.game-card__content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-card__genre {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-accent-bright);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    width: fit-content;
}

.game-card__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.game-card__desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.game-card__stores {
    margin-top: 32px;
}

.game-card__stores-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.game-card__stores-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.game-card__store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.game-card__store-badge:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
    background: var(--color-bg-card);
}

.game-card__store-badge svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   CONTACTS SECTION
   ======================================== */
.contacts {
    padding: 0;
}

.contacts__background {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.contacts__background-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.contacts__characters {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.contacts__character {
    height: auto;
    max-height: 380px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    opacity: 0;
    animation: characterReveal 1s ease forwards, contactsIdle 5s ease-in-out infinite;
    animation-delay: 0.3s, 1.3s;
}

.contacts__character--center {
    max-height: 320px;
    animation-delay: 0.2s, 1.2s;
}

.contacts__character--1 {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 380px;
    animation-delay: 0.4s, 1.4s;
}

.contacts__content-wrapper {
    background: var(--color-bg);
    padding: 60px 40px;
}

.contacts__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contacts__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--color-text);
}

.contacts__email {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.contacts__email:hover {
    color: var(--color-accent-bright);
}

.contacts__email svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.contacts__social {
    display: flex;
    gap: 10px;
}

.contacts__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.contacts__social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
}

.footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__link {
    font-size: 13px;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-text);
}

/* ========================================
   PRIVACY PAGE
   ======================================== */
.privacy {
    min-height: 100vh;
    padding: calc(var(--header-height) + 80px) 40px 120px;
}

.privacy__container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy__header {
    margin-bottom: 64px;
}

.privacy__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 16px;
}

.privacy__meta {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.privacy__section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.privacy__section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy__section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    color: var(--color-text);
}

.privacy__section-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.privacy__text:last-child {
    margin-bottom: 0;
}

.privacy__list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.privacy__list-item {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.privacy__list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

.privacy__list-item strong {
    color: var(--color-text);
    font-weight: 500;
}

.privacy__contact-box {
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.privacy__contact-box p {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.privacy__contact-box p:last-child {
    margin-bottom: 0;
}

.privacy__contact-box strong {
    color: var(--color-text);
}

.privacy__contact-box a {
    color: var(--color-accent-bright);
    transition: color var(--transition-fast);
}

.privacy__contact-box a:hover {
    color: var(--color-accent);
}

.privacy__back {
    margin-top: 64px;
}

.privacy__back-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.privacy__back-link:hover {
    border-color: var(--color-accent);
    color: var(--color-text);
    background: var(--color-bg-card);
}

.privacy__back-link svg {
    transition: transform var(--transition-fast);
}

.privacy__back-link:hover svg {
    transform: translateX(-4px);
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes characterReveal {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes characterIdle1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes characterIdle2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes characterIdle3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes characterIdle4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes studioIdle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes contactsIdle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}

/* ========================================
   RESPONSIVE - Tablet
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 100px;
    }

    .studio__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .game-card {
        grid-template-columns: 1fr;
    }

    .game-card__content {
        padding: 32px;
    }

    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* ========================================
   RESPONSIVE - Mobile
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-spacing: 80px;
    }

    .header__container {
        padding: 0 24px;
    }

    .header__nav {
        display: none;
    }

    .header__mobile-btn {
        display: flex;
    }

    .section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero__logo {
        width: 200px;
    }

    .hero__characters {
        gap: 10px;
        padding: 0 20px;
    }

    .hero__character {
        max-height: 140px;
    }

    .hero__character--1 {
        max-height: 120px;
    }

    .hero__character--2 {
        max-height: 150px;
    }

    .hero__character--3,
    .hero__character--4 {
        display: none;
    }

    .studio__character {
        max-height: 200px;
    }

    .contacts__character {
        max-height: 180px;
    }

    .contacts__character--center {
        max-height: 160px;
        margin-left: -60px;
    }

    .contacts__character--1 {
        max-height: 180px;
        right: 0;
    }

    .section__header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 48px;
    }

    .section__line {
        width: 80px;
        flex: none;
    }

    .footer__container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .privacy {
        padding: calc(var(--header-height) + 48px) 24px 80px;
    }

    .privacy__header {
        margin-bottom: 48px;
    }

    .privacy__section {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .privacy__section-title {
        font-size: 24px;
    }
}

/* ========================================
   RESPONSIVE - Small Mobile
   ======================================== */
@media (max-width: 480px) {
    .hero__cta {
        width: 100%;
        justify-content: center;
    }

    .studio__tags {
        gap: 8px;
    }

    .studio__tag {
        padding: 8px 14px;
        font-size: 12px;
    }

    .game-card__content {
        padding: 24px;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
