/* --- FONTS --- */
@font-face {
    font-family: 'Nunito';
    src: url('/assets/fonts/nunito-v26-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('/assets/fonts/nunito-v26-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fredoka';
    src: url('/assets/fonts/fredoka-v14-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fredoka';
    src: url('/assets/fonts/fredoka-v14-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- VARIABLES --- */
:root {
    --pv-sky-bright: #87CEEB;
    --pv-coral-red: #FF6B6B;
    --pv-sunny-gold: #FFC93C;
    --pv-soft-pink: #FFB3C6;
    --pv-magic-purple: #9B7EE5;
    --pv-cloud-white: #F9FBFC;
    --pv-grass-green: #7BC74D;
    --pv-shadow-soft: #4A5568;
    --pv-overlay-bloom: rgba(155, 126, 229, 0.88);
    --pv-glow-pink: rgba(255, 179, 198, 0.3);
    --pv-border-gentle: rgba(135, 206, 235, 0.4);

    --font-primary: 'Nunito', -apple-system, sans-serif;
    --font-display: 'Fredoka', system-ui, sans-serif;

    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    --fs-h1: clamp(2.5rem, 6vw, 4.75rem);
    --fs-h2: clamp(1.875rem, 4.8vw, 3.25rem);
    --fs-h3: clamp(1.625rem, 3.5vw, 2.5rem);
    --fs-h4: clamp(1.375rem, 2.8vw, 1.875rem);
    --fs-h5: clamp(1.1875rem, 2.3vw, 1.625rem);
    --fs-h6: clamp(1.0625rem, 2vw, 1.375rem);
    --fs-body: 1.125rem;
    --fs-small: 0.9375rem;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    font-weight: var(--fw-normal);
    line-height: 1.75;
    color: var(--pv-shadow-soft);
    background: linear-gradient(165deg, var(--pv-sky-bright) 0%, var(--pv-soft-pink) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- TYPOGRAPHY --- */
h1 { font-family: var(--font-display); font-size: var(--fs-h1); font-weight: var(--fw-bold); line-height: 1.08; letter-spacing: -0.025em; color: var(--pv-magic-purple); margin-bottom: 2rem; }
h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: var(--fw-semibold); line-height: 1.18; letter-spacing: -0.018em; color: var(--pv-coral-red); margin-bottom: 1.625rem; }
h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: var(--fw-semibold); line-height: 1.28; letter-spacing: -0.013em; color: var(--pv-sunny-gold); margin-bottom: 1.375rem; }
h4 { font-family: var(--font-primary); font-size: var(--fs-h4); font-weight: var(--fw-medium); line-height: 1.38; color: var(--pv-magic-purple); margin-bottom: 1.125rem; }
h5 { font-family: var(--font-primary); font-size: var(--fs-h5); font-weight: var(--fw-medium); line-height: 1.48; color: var(--pv-shadow-soft); margin-bottom: 0.9375rem; }
h6 { font-family: var(--font-primary); font-size: var(--fs-h6); font-weight: var(--fw-medium); line-height: 1.55; color: var(--pv-shadow-soft); margin-bottom: 0.8125rem; }
p { line-height: 1.82; margin-bottom: 1.375rem; }
small { font-size: var(--fs-small); line-height: 1.68; }

img, picture, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.28s ease; }

/* --- UTILITIES & LAYOUT --- */
.pv-container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Icons */
.pv-icon { display: inline-block; width: 20px; height: 20px; object-fit: contain; vertical-align: -0.15em; flex-shrink: 0; }
.pv-icon--xs { width: 14px; height: 14px; }
.pv-icon--sm { width: 18px; height: 18px; }
.pv-icon--md { width: 24px; height: 24px; }
.pv-icon--lg { width: 34px; height: 34px; }
.pv-icon--xl { width: 46px; height: 46px; }

/* Icon Filters */
.pv-icon--sky { filter: brightness(0) saturate(100%) invert(72%) sepia(25%) saturate(890%) hue-rotate(160deg) brightness(98%) contrast(96%); }
.pv-icon--coral { filter: brightness(0) saturate(100%) invert(55%) sepia(92%) saturate(1750%) hue-rotate(320deg) brightness(102%) contrast(98%); }
.pv-icon--gold { filter: brightness(0) saturate(100%) invert(78%) sepia(58%) saturate(550%) hue-rotate(10deg) brightness(104%) contrast(99%); }
.pv-icon--pink { filter: brightness(0) saturate(100%) invert(82%) sepia(18%) saturate(1200%) hue-rotate(295deg) brightness(106%) contrast(98%); }
.pv-icon--purple { filter: brightness(0) saturate(100%) invert(62%) sepia(35%) saturate(1450%) hue-rotate(210deg) brightness(96%) contrast(92%); }
.pv-icon--white { filter: brightness(0) invert(1); }
.pv-icon--dark { filter: brightness(0) saturate(100%); }

/* Buttons */
.pv-btn {
    font-family: var(--font-display);
    font-weight: var(--fw-semibold);
    font-size: 15px;
    letter-spacing: 0.2px;
    height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.pv-btn--primary {
    background: var(--pv-magic-purple);
    color: var(--pv-cloud-white);
    box-shadow: 0 6px 14px rgba(155, 126, 229, 0.25);
}
.pv-btn--primary:hover {
    background: var(--pv-sky-bright);
    box-shadow: 0 10px 22px rgba(135, 206, 235, 0.35);
    transform: translateY(-1px);
}
.pv-btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(135, 206, 235, 0.25);
}

.pv-btn--outline {
    background: transparent;
    color: var(--pv-sky-bright);
    border: 1.5px solid var(--pv-sky-bright);
    backdrop-filter: brightness(0.8);
}
.pv-btn--outline:hover {
    background: rgba(135, 206, 235, 0.25);
    border-color: var(--pv-sky-bright);
    color: var(--pv-sky-bright);
    box-shadow: 0 6px 16px rgba(135, 206, 235, 0.35);
}
.pv-btn--outline:active {
    background: rgba(135, 206, 235, 0.35);
    box-shadow: none;
}
.pv-btn--full { width: 100%; }
.pv-btn--compact { padding: 0 18px; }
.pv-btn--icon { width: 48px; padding: 0; }
.pv-btn--sm { height: 42px; padding: 0 20px; font-size: 14px; }

/* --- TOPBAR --- */
.pv-topbar {
    background: var(--pv-cloud-white);
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: .5rem;
}
.pv-topbar__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.pv-age-badge { width: 46px; height: auto; }
.pv-topbar__disclaimer { color: var(--pv-shadow-soft); font-weight: var(--fw-medium); }
.pv-topbar__pills { display: flex; gap: 8px; }
.pv-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border: 1px solid rgba(135, 206, 235, 0.4);
    border-radius: 20px;
    font-size: 12px;
    color: var(--pv-shadow-soft);
    background: rgba(249, 251, 252, 0.5);
}

/* --- HEADER --- */
.pv-header { padding: 16px 0; position: sticky; top: 0; z-index: 100; }
.pv-header__capsule {
    background: rgba(249, 251, 252, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--pv-sky-bright);
    border-radius: 18px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.12);
    max-width: 1280px;
    margin: 0 auto;
}
.pv-header__logo { display: flex; align-items: center; gap: 10px; }
.pv-logo__icon { width: 62px; height: 62px; }
.pv-logo__text { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 20px; color: var(--pv-magic-purple); }

.pv-nav { display: flex; gap: 32px; }
.pv-nav__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: var(--fw-medium);
    color: var(--pv-shadow-soft);
    transition: color 0.25s ease;
}
.pv-nav__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pv-soft-pink); opacity: 0; transition: opacity 0.25s ease; }
.pv-nav__link:hover { color: var(--pv-magic-purple); }
.pv-nav__link:hover .pv-nav__dot { opacity: 1; }

.pv-header__actions { display: flex; align-items: center; gap: 12px; }
.pv-burger { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.pv-burger__line { width: 22px; height: 2px; background: var(--pv-shadow-soft); border-radius: 2px; transition: all 0.3s ease; }

/* --- MOBILE MENU --- */
.pv-mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; }
.pv-mobile-menu.is-open { display: block; }
.pv-mobile-menu__overlay { position: absolute; inset: 0; background: rgba(10, 20, 40, 0.35); backdrop-filter: blur(2px); opacity: 0; transition: opacity 0.35s ease; }
.pv-mobile-menu.is-open .pv-mobile-menu__overlay { opacity: 1; }
.pv-mobile-menu__panel {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--pv-cloud-white);
    border-radius: 18px 18px 0 0;
    max-height: 78vh;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    border: 1px solid var(--pv-sky-bright);
    box-shadow: 0 -8px 32px rgba(135, 206, 235, 0.2);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pv-mobile-menu.is-open .pv-mobile-menu__panel { transform: translateY(0); }
.pv-mobile-menu__handle { width: 40px; height: 4px; background: rgba(74, 85, 104, 0.3); border-radius: 2px; margin: 0 auto 16px; }
.pv-mobile-menu__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.pv-mobile-menu__brand { display: flex; align-items: center; gap: 10px; font-weight: var(--fw-bold); color: var(--pv-magic-purple); }
.pv-mobile-menu__close { background: none; border: none; cursor: pointer; padding: 8px; }

.pv-mobile-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.pv-mobile-nav__link { display: flex; align-items: center; gap: 10px; padding: 14px 12px; border-radius: 12px; font-weight: var(--fw-medium); color: var(--pv-shadow-soft); transition: all 0.2s ease; min-height: 48px; }
.pv-mobile-nav__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pv-soft-pink); opacity: 0; transition: opacity 0.2s ease; }
.pv-mobile-nav__link:active { background: rgba(135, 206, 235, 0.25); }
.pv-mobile-nav__link--active { background: rgba(135, 206, 235, 0.15); color: var(--pv-magic-purple); }
.pv-mobile-nav__link--active .pv-mobile-nav__dot { opacity: 1; }
.pv-mobile-menu__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pv-safety-chip { display: inline-block; padding: 6px 12px; border: 1px solid rgba(135, 206, 235, 0.4); border-radius: 16px; font-size: 13px; color: var(--pv-shadow-soft); background: rgba(249, 251, 252, 0.5); }
.pv-mobile-menu__cta { position: sticky; bottom: 0; }

/* --- AGE GATE --- */
.pv-age-gate { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 16px; }
.pv-age-gate.is-hidden { display: none; }
.pv-age-gate__overlay { position: absolute; inset: 0; background: rgba(10, 20, 40, 0.6); backdrop-filter: blur(8px); }
.pv-age-gate__modal {
    position: relative;
    width: 92vw;
    max-width: 360px;
    max-height: 78vh;
    background: linear-gradient(165deg, rgba(187, 251, 255, 0.95) 0%, rgba(249, 251, 252, 0.98) 100%);
    border: 1px solid var(--pv-sky-bright);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 48px rgba(135, 206, 235, 0.3);
    overflow-y: auto;
}
.pv-age-gate__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pv-age-gate__badge { width: 52px; height: auto; }
.pv-age-gate__exit { display: flex; align-items: center; gap: 4px; padding: 6px 12px; background: transparent; border: 1px solid rgba(135, 206, 235, 0.5); border-radius: 12px; font-size: 13px; font-weight: var(--fw-medium); color: var(--pv-shadow-soft); cursor: pointer; transition: all 0.2s ease; }
.pv-age-gate__exit:hover { background: rgba(135, 206, 235, 0.15); }
.pv-age-gate__content { margin-bottom: 16px; }
.pv-age-gate__title { font-size: 22px; text-align: center; margin-bottom: 8px; color: var(--pv-magic-purple); }
.pv-age-gate__desc { text-align: center; font-size: 14px; color: var(--pv-shadow-soft); margin-bottom: 16px; }
.pv-age-gate__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.pv-info-chip { display: flex; align-items: center; gap: 6px; padding: 10px 12px; background: rgba(135, 206, 235, 0.18); border: 1px solid rgba(135, 206, 235, 0.55); border-radius: 12px; font-size: 13px; font-weight: var(--fw-medium); color: var(--pv-shadow-soft); }
.pv-age-gate__restriction { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; background: rgba(255, 107, 107, 0.12); border: 1px solid rgba(255, 107, 107, 0.35); border-radius: 12px; font-size: 14px; font-weight: var(--fw-semibold); color: var(--pv-coral-red); margin-bottom: 16px; }
.pv-age-gate__legal { padding: 12px; background: rgba(249, 251, 252, 0.8); border-radius: 12px; margin-bottom: 16px; }
.pv-age-gate__legal-text { font-size: 12px; color: var(--pv-shadow-soft); text-align: center; margin-bottom: 8px; }
.pv-age-gate__links { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; margin-bottom: 4px; }
.pv-age-gate__links a { color: var(--pv-magic-purple); font-weight: var(--fw-medium); transition: color 0.2s ease; }
.pv-age-gate__links a:hover { color: var(--pv-coral-red); }
.pv-age-gate__links span { color: var(--pv-shadow-soft); opacity: 0.5; }
.pv-age-gate__actions { display: flex; flex-direction: column; gap: 10px; }
.pv-age-gate__decor { position: absolute; width: 36px; height: auto; opacity: 0.3; pointer-events: none; }
.pv-age-gate__decor--tl { top: 12px; left: 12px; }
.pv-age-gate__decor--br { bottom: 12px; right: 12px; }

/* --- HERO SECTION --- */
.pv-hero { position: relative; min-height: calc(100vh - 120px); display: flex; align-items: center; padding: 80px 0 60px; overflow: hidden; }
.pv-hero__bg { position: absolute; inset: 0; z-index: -1; }
.pv-hero__bg-image { width: 100%; height: 100%; object-fit: cover; filter: blur(8px); opacity: 0.6; }
.pv-hero__inner { display: grid; grid-template-columns: 54fr 46fr; gap: 60px; align-items: center; }
.pv-hero__content { max-width: 560px; }
.pv-hero__labels { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.pv-label { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(249, 251, 252, 0.9); border: 1px solid rgba(135, 206, 235, 0.4); border-radius: 20px; font-size: 13px; font-weight: var(--fw-semibold); color: var(--pv-magic-purple); backdrop-filter: blur(8px); }
.pv-label--age { background: rgba(255, 107, 107, 0.15); border-color: rgba(255, 107, 107, 0.4); color: var(--pv-coral-red); }
.pv-hero__title { margin-bottom: 20px; }
.pv-hero__desc { font-size: 18px; color: var(--pv-shadow-soft); margin-bottom: 32px; line-height: 1.65; }
.pv-hero__safety { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pv-safety-item { display: flex; align-items: center; gap: 10px; padding: 10px 16px; background: rgba(249, 251, 252, 0.85); border: 1px solid rgba(135, 206, 235, 0.3); border-radius: 12px; font-size: 15px; font-weight: var(--fw-medium); color: var(--pv-shadow-soft); backdrop-filter: blur(6px); }
.pv-hero__actions { display: flex; gap: 12px; margin-bottom: 20px; }
.pv-btn--lg { height: 54px; padding: 0 28px; font-size: 16px; }
.pv-hero__disclaimer { font-size: 13px; color: var(--pv-shadow-soft); opacity: 0.8; }
.pv-hero__portal { display: flex; justify-content: center; align-items: center; }

/* Portal Card */
.pv-portal-card {
    position: relative; width: 100%; max-width: 480px; padding: 16px;
    background: rgba(249, 251, 252, 0.9); border: 2px solid var(--pv-sky-bright);
    border-radius: 24px; box-shadow: 0 16px 48px rgba(135, 206, 235, 0.25);
    backdrop-filter: blur(10px);
}
.pv-portal-card__badge { position: absolute; top: 28px; right: 28px; padding: 6px 12px; background: var(--pv-magic-purple); color: var(--pv-cloud-white); font-size: 12px; font-weight: var(--fw-semibold); border-radius: 12px; z-index: 2; }
.pv-portal-card__image { width: 100%; border-radius: 16px; display: block; }
.pv-portal-card__decor { position: absolute; width: 48px; height: auto; opacity: 0.7; pointer-events: none; }
.pv-portal-card__decor--1 { top: -12px; left: -12px; animation: float 4s ease-in-out infinite; }
.pv-portal-card__decor--2 { bottom: -12px; right: -12px; animation: float 5s ease-in-out infinite 1s; }
.pv-hero__sparkle { position: absolute; width: 32px; height: auto; opacity: 0.5; pointer-events: none; animation: sparkle 6s ease-in-out infinite; }
.pv-hero__sparkle--1 { top: 15%; left: 10%; }
.pv-hero__sparkle--2 { bottom: 20%; right: 12%; animation-delay: 2s; }

/* --- PROMISE SECTION --- */
.pv-promise { position: relative; padding: 100px 0; background: linear-gradient(180deg, rgba(249, 251, 252, 1) 0%, rgba(187, 251, 255, 0.3) 100%); overflow: hidden; }
.pv-promise__bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(135, 206, 235, 0.08) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.pv-promise__inner { display: grid; grid-template-columns: 45fr 55fr; gap: 80px; align-items: center; }
.pv-promise__illustration { display: flex; align-items: center; justify-content: center; }
.pv-path__image { width: 100%; max-width: 520px; border-radius: 20px; box-shadow: 0 12px 32px rgba(135, 206, 235, 0.2); }
.pv-promise__content { max-width: 580px; }
.pv-promise__label { display: inline-block; font-size: 12px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 1.2px; color: var(--pv-magic-purple); margin-bottom: 16px; }
.pv-promise__title { margin-bottom: 16px; }
.pv-promise__desc { font-size: 18px; color: var(--pv-shadow-soft); margin-bottom: 40px; }
.pv-promise__tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pv-tile { padding: 24px 20px; background: rgba(249, 251, 252, 0.95); border: 1px solid rgba(135, 206, 235, 0.3); border-radius: 16px; transition: all 0.3s ease; }
.pv-tile:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(135, 206, 235, 0.2); border-color: rgba(135, 206, 235, 0.5); }
.pv-tile__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(135, 206, 235, 0.15); border-radius: 12px; margin-bottom: 16px; }
.pv-tile__title { font-size: 18px; font-weight: var(--fw-semibold); color: var(--pv-shadow-soft); margin-bottom: 8px; }
.pv-tile__text { font-size: 14px; color: var(--pv-shadow-soft); opacity: 0.8; margin-bottom: 0; }

/* --- GAME SECTION --- */
.pv-game { position: relative; padding: 100px 0; background: linear-gradient(180deg, rgba(187, 251, 255, 0.3) 0%, rgba(249, 251, 252, 1) 100%); overflow: hidden; }
.pv-game__bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(135, 206, 235, 0.06) 2px, transparent 2px); background-size: 40px 40px; pointer-events: none; }
.pv-game__inner { display: grid; grid-template-columns: 38fr 62fr; gap: 60px; align-items: center; }
.pv-game__content { max-width: 460px; }
.pv-game__label { display: inline-block; font-size: 12px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 1.2px; color: var(--pv-magic-purple); margin-bottom: 16px; }
.pv-game__title { margin-bottom: 16px; }
.pv-game__desc { font-size: 18px; color: var(--pv-shadow-soft); margin-bottom: 32px; }
.pv-game__controls { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.pv-game__disclaimer { font-size: 13px; font-style: italic; color: var(--pv-shadow-soft); opacity: 0.75; margin-bottom: 0; }

.pv-portal {
    position: relative; background: rgba(249, 251, 252, 0.95);
    border: 2px solid var(--pv-sky-bright); border-radius: 22px; padding: 16px;
    box-shadow: 0 16px 48px rgba(135, 206, 235, 0.2); backdrop-filter: blur(10px);
}
.pv-portal.is-fullscreen { position: fixed; inset: 0; z-index: 9999; border-radius: 0; padding: 0; }
.pv-portal__header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: rgba(135, 206, 235, 0.08); border-radius: 14px 14px 0 0; margin: -16px -16px 16px; }
.pv-portal.is-fullscreen .pv-portal__header { display: none; }
.pv-portal__title { font-weight: var(--fw-bold); font-size: 16px; color: var(--pv-magic-purple); }
.pv-portal__actions { display: flex; gap: 8px; }
.pv-portal__btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(249, 251, 252, 0.9); border: 1px solid rgba(135, 206, 235, 0.3); border-radius: 10px; cursor: pointer; transition: all 0.2s ease; }
.pv-portal__btn:hover { background: #fff; border-color: var(--pv-sky-bright); }

.pv-portal__frame { position: relative; width: 100%; height: 0; padding-bottom: 56.25%; border-radius: 16px; overflow: hidden; background: rgba(135, 206, 235, 0.05); }
.pv-portal.is-fullscreen .pv-portal__frame { height: 100vh; padding-bottom: 0; border-radius: 0; }
.pv-portal__iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 16px; }
.pv-portal.is-fullscreen .pv-portal__iframe { border-radius: 0; }

.pv-portal__loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(249, 251, 252, 0.95); z-index: 2; }
.pv-portal__loading.is-hidden { display: none; }
.pv-loading-spinner { width: 48px; height: 48px; border: 4px solid rgba(135, 206, 235, 0.2); border-top-color: var(--pv-magic-purple); border-radius: 50%; animation: spin 1s linear infinite; }
.pv-loading-text { margin-top: 16px; font-size: 15px; color: var(--pv-shadow-soft); }

.pv-portal__error { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(249, 251, 252, 0.98); text-align: center; padding: 32px; z-index: 3; }
.pv-portal__error h3 { font-size: 20px; color: var(--pv-coral-red); margin: 16px 0 8px; }
.pv-portal__error p { font-size: 14px; color: var(--pv-shadow-soft); margin-bottom: 24px; }
.pv-error-actions { display: flex; gap: 10px; }

.pv-portal__pin { position: absolute; width: 80px; height: 80px; pointer-events: none; opacity: 0.8; }
.pv-portal__pin--tl { top: -40px; left: -40px; transform: rotate(-15deg); }
.pv-portal__pin--tr { top: -40px; right: -40px; transform: rotate(75deg); }
.pv-portal__pin--bl { bottom: -40px; left: -40px; transform: rotate(-105deg); }
.pv-portal__pin--br { bottom: -40px; right: -40px; transform: rotate(165deg); }
.pv-portal.is-fullscreen .pv-portal__pin { display: none; }

.pv-fullscreen-panel {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    display: none; align-items: center; gap: 12px; padding: 12px 20px;
    background: rgba(155, 126, 229, 0.95); backdrop-filter: blur(10px);
    border-radius: 16px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); z-index: 10000;
}
.pv-fullscreen-panel.is-visible { display: flex; }
.pv-fullscreen-panel__btn { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(255, 255, 255, 0.2); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 12px; font-size: 14px; font-weight: var(--fw-medium); color: var(--pv-cloud-white); cursor: pointer; transition: all 0.2s ease; }
.pv-fullscreen-panel__btn:hover { background: rgba(255, 255, 255, 0.3); }

#muteBtn span, #muteBtn { color: var(--pv-shadow-soft); }
.pv-muted .pv-icon { opacity: 0.5; }

/* --- VOW SECTION --- */
.pv-vow { position: relative; padding: 100px 0 120px; background: linear-gradient(180deg, rgba(187, 251, 255, 0.2) 0%, rgba(249, 251, 252, 1) 100%); overflow: hidden; }
.pv-vow__bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(135, 206, 235, 0.06) 1.5px, transparent 1.5px); background-size: 36px 36px; pointer-events: none; }
.pv-vow__inner { display: grid; grid-template-columns: 46fr 54fr; gap: 70px; align-items: start; }
.pv-vow__card { position: relative; padding: 48px 40px; background: rgba(249, 251, 252, 0.95); border: 2px solid var(--pv-sky-bright); border-radius: 24px; box-shadow: 0 12px 40px rgba(135, 206, 235, 0.18); backdrop-filter: blur(8px); animation: fadeInUp 0.6s ease-out; }
.pv-vow__stamp { position: absolute; top: 24px; right: 24px; width: 64px; height: auto; animation: stampPulse 0.8s ease-out; }
.pv-vow__title { margin-bottom: 20px; padding-right: 80px; }
.pv-vow__text { font-size: 18px; line-height: 1.7; color: var(--pv-shadow-soft); margin-bottom: 36px; }
.pv-vow__actions { display: flex; gap: 12px; }
.pv-vow__badges { display: flex; flex-direction: column; gap: 16px; animation: fadeInUp 0.6s ease-out 0.2s both; }
.pv-badge { position: relative; display: flex; align-items: center; gap: 20px; padding: 20px 24px; background: rgba(249, 251, 252, 0.9); border: 1px solid rgba(135, 206, 235, 0.3); border-radius: 18px; transition: all 0.3s ease; overflow: hidden; }
.pv-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(135, 206, 235, 0.25); border-color: rgba(135, 206, 235, 0.5); }
.pv-badge__icon { flex-shrink: 0; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(135, 206, 235, 0.12); border-radius: 14px; }
.pv-badge__title { font-size: 18px; font-weight: var(--fw-semibold); color: var(--pv-shadow-soft); margin-bottom: 6px; }
.pv-badge__text { font-size: 14px; color: var(--pv-shadow-soft); opacity: 0.8; margin-bottom: 0; }
.pv-badge__ribbon { position: absolute; top: -4px; right: -6px; width: 68px; height: auto; opacity: 0.7; pointer-events: none; transform: rotate(90deg); }
.pv-vow__disclaimer { font-size: 13px; font-style: italic; text-align: center; color: var(--pv-shadow-soft); opacity: 0.7; margin-top: 24px; margin-bottom: 0; }
.pv-vow__decor { position: absolute; width: 120px; height: auto; opacity: 0.25; pointer-events: none; }
.pv-vow__decor--left { top: 15%; left: 5%; animation: floatSlow 8s ease-in-out infinite; }
.pv-vow__decor--right { bottom: 10%; right: 8%; animation: floatSlow 9s ease-in-out infinite 2s; }

/* --- FOOTER --- */
.pv-footer { background: linear-gradient(180deg, rgba(187, 251, 255, 0.4) 0%, rgba(249, 251, 252, 1) 100%); color: var(--pv-shadow-soft); }
.pv-support-ribbon { padding: 24px 0; background: rgba(135, 206, 235, 0.08); border-bottom: 1px solid rgba(135, 206, 235, 0.2); }
.pv-support-ribbon__title { font-size: 13px; font-weight: var(--fw-semibold); color: var(--pv-magic-purple); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.8px; }
.pv-support-ribbon__links { display: flex; flex-wrap: wrap; gap: 10px; }
.pv-support-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: rgba(249, 251, 252, 0.9); border: 1px solid rgba(135, 206, 235, 0.3); border-radius: 20px; font-size: 13px; color: var(--pv-shadow-soft); transition: all 0.25s ease; }
.pv-support-link:hover { background: rgba(135, 206, 235, 0.15); border-color: var(--pv-sky-bright); color: var(--pv-magic-purple); }

.pv-footer__main { padding: 60px 0 50px; }
.pv-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px; }
.pv-footer__brand { max-width: 340px; }
.pv-footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pv-footer__desc { font-size: 15px; line-height: 1.7; color: var(--pv-shadow-soft); margin-bottom: 16px; }
.pv-footer__manifesto { font-size: 14px; font-style: italic; color: var(--pv-coral-red); margin-bottom: 20px; }
.pv-footer__micro { font-size: 12px; line-height: 1.6; color: var(--pv-shadow-soft); opacity: 0.8; margin-bottom: 0; }
.pv-footer__heading { font-size: 16px; font-weight: var(--fw-semibold); color: var(--pv-magic-purple); margin-bottom: 20px; }
.pv-footer__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pv-footer__item { display: flex; align-items: center; gap: 8px; }
.pv-footer__marker { width: 8px; height: 8px; opacity: 0.7; }
.pv-footer__item a { font-size: 14px; color: var(--pv-shadow-soft); transition: color 0.25s ease; }
.pv-footer__item a:hover { color: var(--pv-magic-purple); }
.pv-footer__actions { display: flex; flex-direction: column; gap: 16px; }
.pv-btn--footer { width: 100%; justify-content: center; border-color: rgba(135, 206, 235, 0.4); color: var(--pv-magic-purple); }
.pv-btn--footer:hover { background: rgba(135, 206, 235, 0.15); border-color: var(--pv-sky-bright); }
.pv-footer__policies-link { text-align: center; font-size: 13px; color: var(--pv-shadow-soft); opacity: 0.75; transition: all 0.25s ease; }
.pv-footer__policies-link:hover { color: var(--pv-magic-purple); opacity: 1; }
.pv-age-stamp { margin-top: 8px; display: flex; align-items: center; justify-content: center; }
.pv-age-stamp img { width: 100%; max-width: 120px; height: auto; }

.pv-footer__disclaimer { padding: 32px 0; background: rgba(135, 206, 235, 0.06); border-top: 1px solid rgba(135, 206, 235, 0.15); border-bottom: 1px solid rgba(135, 206, 235, 0.15); }
.pv-disclaimer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pv-disclaimer-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: rgba(249, 251, 252, 0.9); border: 1px solid rgba(135, 206, 235, 0.25); border-radius: 12px; font-size: 13px; color: var(--pv-shadow-soft); }

.pv-footer__bottom { padding: 24px 0; background: rgba(135, 206, 235, 0.04); }
.pv-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.pv-footer__copyright { font-size: 13px; color: var(--pv-shadow-soft); opacity: 0.7; margin-bottom: 0; }
.pv-footer__bottom-text { font-size: 12px; color: var(--pv-shadow-soft); opacity: 0.65; margin-bottom: 0; }
.pv-footer__icon { width: 20px; height: 20px; opacity: 0.5; }

/* --- ANIMATIONS --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes stampPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(5deg); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(3deg); } }
@keyframes sparkle { 0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; } 50% { transform: scale(1.15) rotate(180deg); opacity: 0.8; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- MEDIA QUERIES --- */

@media (max-width: 968px) {
    .pv-nav, .pv-header__actions, .pv-topbar__pills { display: none; }
    .pv-burger { display: flex; }

    .pv-hero { min-height: auto; padding: 60px 0 40px; }
    .pv-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .pv-hero__content { max-width: 100%; text-align: center; }
    .pv-hero__labels, .pv-hero__safety { justify-content: center; align-items: center; }
    .pv-hero__actions { flex-direction: column; }
    .pv-btn--lg { width: 100%; }
    .pv-portal-card { max-width: 100%; }
    .pv-portal-card__image { max-height: 280px; object-fit: cover; }

    .pv-promise, .pv-game { padding: 60px 0; }
    .pv-promise__inner, .pv-game__inner { grid-template-columns: 1fr; gap: 50px; }
    .pv-promise__content, .pv-game__content { max-width: 100%; }
    .pv-path__image { max-width: 100%; }

    .pv-game__controls { flex-direction: column; }
    .pv-game__controls .pv-btn { width: 100%; }
    .pv-portal__frame { padding-bottom: 75%; max-height: 520px; }
    .pv-fullscreen-panel { top: env(safe-area-inset-top, 20px); }

    .pv-vow { padding: 60px 0 80px; }
    .pv-vow__inner { grid-template-columns: 1fr; gap: 50px; }
    .pv-vow__card { padding: 36px 28px; }
    .pv-vow__stamp { width: 56px; top: 20px; right: 20px; }
    .pv-vow__title { padding-right: 70px; }
    .pv-vow__actions { flex-direction: column; }
    .pv-vow__actions .pv-btn { width: 100%; }

    .pv-support-ribbon { padding: 20px 0; }
    .pv-support-ribbon__links { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .pv-support-link { flex-shrink: 0; }
    .pv-footer__main { padding: 50px 0 40px; }
    .pv-footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .pv-footer__brand { max-width: 100%; }
    .pv-footer__nav { border-top: 1px solid rgba(135, 206, 235, 0.15); padding-top: 20px; }
    .pv-disclaimer-grid { grid-template-columns: 1fr; }
    .pv-footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 768px) {
    .pv-btn { height: 44px; padding: 0 20px; }
    .pv-container { padding: 0 1.5rem; }
}

@media (max-width: 640px) {
    .pv-promise, .pv-game { padding: 50px 0; }
    .pv-promise__tiles { grid-template-columns: 1fr; }
    .pv-tile { padding: 20px 16px; }

    .pv-vow { padding: 50px 0 70px; }
    .pv-vow__card { padding: 28px 24px; }
    .pv-vow__text { font-size: 16px; }
    .pv-badge { padding: 16px 20px; gap: 16px; }
    .pv-badge__icon { width: 48px; height: 48px; }
    .pv-badge__title { font-size: 16px; }

    .pv-footer__main { padding: 40px 0 30px; }
    .pv-footer__disclaimer { padding: 24px 0; }
    .pv-disclaimer-item { font-size: 12px; padding: 10px 14px; }
}

@media (max-width: 520px) {
    .pv-topbar { font-size: 11px; }
    .pv-topbar__disclaimer span { font-size: 11px; }
    .pv-logo__text { font-size: 18px; }
    .pv-age-gate__title { font-size: 20px; }

    .pv-hero { padding: 40px 0 30px; }
    .pv-hero__title { font-size: clamp(1.875rem, 8vw, 2.5rem); }
    .pv-hero__desc { font-size: 16px; }
    .pv-safety-item { font-size: 14px; }
    .pv-btn--lg { height: 50px; font-size: 15px; }
    .pv-portal-card { padding: 12px; }
    .pv-portal-card__badge { top: 20px; right: 20px; font-size: 11px; padding: 5px 10px; }

    .pv-portal { padding: 12px; }
    .pv-portal__header { margin: -12px -12px 12px; }
}