@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-v24-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-v24-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins-v24-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/playfair-display-v40-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --mv-clr-primary: #5409DA;
    --mv-clr-secondary: #4E71FF;
    --mv-clr-accent: #8DD8FF;
    --mv-clr-light: #BBFBFF;

    --mv-clr-bg-light: #FAFBFF;
    --mv-clr-bg-white: #FFFFFF;
    --mv-clr-text-dark: #1A1A2E;
    --mv-clr-text-body: #4A4A5E;
    --mv-clr-text-light: #6F6F7E;
    --mv-clr-border: #E5E7EB;
    --mv-clr-border-light: #F0F1F5;

    --mv-overlay-primary: rgba(84, 9, 218, 0.9);
    --mv-overlay-secondary: rgba(78, 113, 255, 0.85);
    --mv-overlay-light: rgba(187, 251, 255, 0.95);

    --mv-gradient-main: linear-gradient(135deg, var(--mv-clr-primary) 0%, var(--mv-clr-secondary) 100%);
    --mv-gradient-accent: linear-gradient(135deg, var(--mv-clr-accent) 0%, var(--mv-clr-light) 100%);

    --mv-ff-heading: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --mv-ff-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --mv-fw-regular: 400;
    --mv-fw-medium: 500;
    --mv-fw-semibold: 600;
    --mv-fw-bold: 700;
    --mv-fw-extrabold: 800;

    --mv-fs-h1: clamp(2.5rem, 5vw, 4rem);
    --mv-fs-h2: clamp(2rem, 4vw, 3rem);
    --mv-fs-h3: clamp(1.5rem, 3vw, 2rem);
    --mv-fs-h4: clamp(1.25rem, 2.5vw, 1.75rem);
    --mv-fs-h5: clamp(1.125rem, 2vw, 1.5rem);
    --mv-fs-body: 1rem;
    --mv-fs-small: 0.875rem;
    --mv-fs-tiny: 0.75rem;

    --mv-lh-tight: 1.1;
    --mv-lh-heading: 1.25;
    --mv-lh-normal: 1.5;
    --mv-lh-relaxed: 1.7;

    --mv-spacing-xs: 0.5rem;
    --mv-spacing-sm: 0.75rem;
    --mv-spacing-md: 1rem;
    --mv-spacing-lg: 1.5rem;
    --mv-spacing-xl: 2rem;
    --mv-spacing-2xl: 3rem;

    --mv-radius-sm: 8px;
    --mv-radius-md: 12px;
    --mv-radius-lg: 20px;
    --mv-radius-xl: 50px;

    --mv-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --mv-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --mv-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);

    --mv-transition-fast: 0.2s ease;
    --mv-transition-normal: 0.3s ease;
    --mv-transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--mv-ff-body);
    font-size: var(--mv-fs-body);
    font-weight: var(--mv-fw-regular);
    line-height: var(--mv-lh-normal);
    color: var(--mv-clr-text-body);
    background: var(--mv-clr-bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--mv-transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, .mv-h1 {
    font-family: var(--mv-ff-heading);
    font-size: var(--mv-fs-h1);
    font-weight: var(--mv-fw-bold);
    line-height: var(--mv-lh-tight);
    color: var(--mv-clr-text-dark);
    letter-spacing: -0.02em;
    margin-bottom: var(--mv-spacing-lg);
}

h2, .mv-h2 {
    font-family: var(--mv-ff-heading);
    font-size: var(--mv-fs-h2);
    font-weight: var(--mv-fw-bold);
    line-height: var(--mv-lh-heading);
    color: var(--mv-clr-text-dark);
    letter-spacing: -0.01em;
    margin-bottom: var(--mv-spacing-md);
}

h3, .mv-h3 {
    font-family: var(--mv-ff-heading);
    font-size: var(--mv-fs-h3);
    font-weight: var(--mv-fw-semibold);
    line-height: var(--mv-lh-heading);
    color: var(--mv-clr-text-dark);
    margin-bottom: var(--mv-spacing-md);
}

h4, .mv-h4 {
    font-family: var(--mv-ff-body);
    font-size: var(--mv-fs-h4);
    font-weight: var(--mv-fw-semibold);
    line-height: var(--mv-lh-heading);
    color: var(--mv-clr-text-dark);
    margin-bottom: var(--mv-spacing-sm);
}

h5, .mv-h5 {
    font-family: var(--mv-ff-body);
    font-size: var(--mv-fs-h5);
    font-weight: var(--mv-fw-medium);
    line-height: var(--mv-lh-normal);
    color: var(--mv-clr-text-dark);
    margin-bottom: var(--mv-spacing-sm);
}

p, .mv-text {
    font-size: var(--mv-fs-body);
    line-height: var(--mv-lh-relaxed);
    color: var(--mv-clr-text-body);
    margin-bottom: var(--mv-spacing-md);
}

.mv-text-small {
    font-size: var(--mv-fs-small);
    line-height: var(--mv-lh-normal);
}

.mv-text-tiny {
    font-size: var(--mv-fs-tiny);
    line-height: var(--mv-lh-normal);
}

.mv-text-dark {
    color: var(--mv-clr-text-dark);
}

.mv-text-light {
    color: var(--mv-clr-text-light);
}

.mv-text-center {
    text-align: center;
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--mv-spacing-lg);
}

.mv-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--mv-spacing-lg);
}

.mv-container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--mv-spacing-lg);
}

.mv-section {
    padding: var(--mv-spacing-2xl) 0;
}

.mv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--mv-spacing-sm);
    font-family: var(--mv-ff-body);
    font-size: var(--mv-fs-body);
    font-weight: var(--mv-fw-semibold);
    padding: 1rem 2rem;
    border-radius: var(--mv-radius-xl);
    transition: var(--mv-transition-smooth);
    position: relative;
    overflow: visible;
    text-align: center;
}

.mv-btn-primary {
    background: var(--mv-gradient-main);
    color: #FFFFFF;
    border: 2px solid transparent;
}

.mv-btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--mv-radius-xl);
    border: 2px solid var(--mv-clr-primary);
    opacity: 0.3;
    pointer-events: none;
}

.mv-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-btn-primary:hover::after {
    right: 20%;
    top: 80%;
    transform: translateY(-30%);
}

.mv-btn-secondary {
    background: transparent;
    color: var(--mv-clr-primary);
    border: 2px solid var(--mv-clr-accent);
}

.mv-btn-secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--mv-radius-xl);
    border: 2px solid var(--mv-clr-accent);
    opacity: 0.3;
    pointer-events: none;
}

.mv-btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 6px;
    height: 6px;
    background: var(--mv-clr-primary);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(84, 9, 218, 0.6);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-btn-secondary:hover::after {
    right: 20%;
    top: 80%;
    transform: translateY(-30%);
}

.mv-btn-light {
    background: var(--mv-clr-bg-white);
    color: var(--mv-clr-primary);
    border: 2px solid var(--mv-clr-border);
}

.mv-btn-light::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--mv-radius-xl);
    border: 2px solid var(--mv-clr-border);
    opacity: 0.5;
    pointer-events: none;
}

.mv-btn-light::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 6px;
    height: 6px;
    background: var(--mv-clr-primary);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(84, 9, 218, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-btn-light:hover::after {
    right: 20%;
    top: 80%;
    transform: translateY(-30%);
}

.mv-btn-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.mv-btn-small {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

.mv-icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    flex-shrink: 0;
}

.mv-icon-sm {
    width: 1rem;
    height: 1rem;
}

.mv-icon-md {
    width: 1.25rem;
    height: 1.25rem;
}

.mv-icon-lg {
    width: 2rem;
    height: 2rem;
}

.mv-icon-xl {
    width: 3rem;
    height: 3rem;
}

.mv-card {
    background: var(--mv-clr-bg-white);
    border-radius: var(--mv-radius-lg);
    padding: var(--mv-spacing-xl);
    box-shadow: var(--mv-shadow-sm);
    transition: var(--mv-transition-normal);
    border: 1px solid var(--mv-clr-border-light);
}

.mv-card:hover {
    box-shadow: var(--mv-shadow-md);
    transform: translateY(-4px);
    border-color: var(--mv-clr-border);
}

.mv-disclaimer {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--mv-clr-primary) 0%, var(--mv-clr-secondary) 100%);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(141, 216, 255, 0.2);
}

.mv-disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mv-spacing-md);
    flex-wrap: wrap;
}

.mv-disclaimer-badge {
    flex-shrink: 0;
}

.mv-badge-age {
    width: 40px;
    height: 40px;
    display: block;
}

.mv-disclaimer-text {
    flex: 1;
    text-align: center;
}

.mv-disclaimer-text p {
    font-size: 0.875rem;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
    font-weight: var(--mv-fw-medium);
    min-width: 210px;
}

.mv-disclaimer-chips {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.mv-chip {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--mv-fw-medium);
    color: #FFFFFF;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}
/**/
.mv-age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.mv-age-gate.hidden {
    display: none;
}

.mv-age-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0B1020 0%, #120B2A 100%);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.mv-age-background {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.mv-age-sparkle {
    position: absolute;
    opacity: 0.3;
}

.mv-sparkle-bg-1 {
    top: 15%;
    left: 10%;
    width: 60px;
    animation: ageSparkleFloat 8s ease-in-out infinite;
}

.mv-sparkle-bg-2 {
    top: 60%;
    right: 12%;
    width: 50px;
    animation: ageSparkleFloat 7s ease-in-out infinite 1s;
}

.mv-sparkle-bg-3 {
    bottom: 20%;
    left: 15%;
    width: 45px;
    animation: ageSparkleFloat 9s ease-in-out infinite 2s;
}

.mv-age-crystal {
    position: absolute;
    opacity: 0.2;
}

.mv-crystal-bg-1 {
    top: 25%;
    right: 8%;
    width: 80px;
    animation: ageCrystalFloat 10s ease-in-out infinite;
}

.mv-crystal-bg-2 {
    bottom: 15%;
    left: 8%;
    width: 70px;
    animation: ageCrystalFloat 12s ease-in-out infinite 3s;
}

@keyframes ageSparkleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(15px, -20px) rotate(10deg);
        opacity: 0.4;
    }
}

@keyframes ageCrystalFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translate(-10px, 15px) rotate(-5deg);
        opacity: 0.25;
    }
}

.mv-age-panel {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 580px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mv-age-panel::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--mv-clr-primary) 0%, var(--mv-clr-secondary) 50%, var(--mv-clr-accent) 100%);
    border-radius: 24px;
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 2px;
    z-index: -1;
}

.mv-age-pin {
    position: absolute;
    width: 28px;
    height: 28px;
    opacity: 0.5;
}

.mv-pin-tl { top: 16px; left: 16px; }
.mv-pin-tr { top: 16px; right: 16px; }
.mv-pin-bl { bottom: 16px; left: 16px; }
.mv-pin-br { bottom: 16px; right: 16px; }

.mv-age-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mv-age-badge-holder {
    width: 56px;
    height: 56px;
}

.mv-age-badge-holder img {
    width: 100%;
    height: 100%;
}

.mv-age-exit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--mv-ff-body);
    font-size: 0.875rem;
    font-weight: var(--mv-fw-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mv-age-exit:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.mv-age-content h1 {
    font-family: var(--mv-ff-heading);
    font-size: 2rem;
    font-weight: var(--mv-fw-extrabold);
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.mv-age-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 2rem;
}

.mv-age-rules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.mv-rule-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mv-rule-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.mv-rule-full {
    grid-column: 1 / -1;
    justify-content: center;
}

.mv-rule-card img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.mv-rule-card p {
    font-size: 0.9375rem;
    font-weight: var(--mv-fw-semibold);
    color: #FFFFFF;
    margin: 0;
}

.mv-age-legal {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.75rem;
}

.mv-legal-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-bottom: 0.75rem;
}

.mv-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.75rem;
}

.mv-legal-links a {
    font-size: 0.875rem;
    font-weight: var(--mv-fw-semibold);
    color: var(--mv-clr-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mv-legal-links a:hover {
    color: var(--mv-clr-light);
}

.mv-legal-links span {
    color: rgba(255, 255, 255, 0.4);
}

.mv-age-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mv-age-btn {
    position: relative;
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--mv-ff-body);
    font-size: 1rem;
    font-weight: var(--mv-fw-bold);
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mv-age-btn-primary {
    background: linear-gradient(135deg, var(--mv-clr-primary) 0%, var(--mv-clr-secondary) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(84, 9, 218, 0.4);
    clip-path: polygon(32px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.mv-age-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--mv-clr-secondary) 0%, var(--mv-clr-accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-age-btn-primary:hover::before {
    opacity: 1;
}

.mv-age-btn-primary:hover {
    box-shadow: 0 6px 24px rgba(78, 113, 255, 0.5);
    transform: translateY(-2px);
}

.mv-btn-notch {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.mv-btn-text {
    position: relative;
    z-index: 2;
}

.mv-age-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

.mv-age-btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03' /%3E%3C/svg%3E");
    opacity: 0.5;
}

.mv-age-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .mv-age-panel {
        padding: 2rem 1.5rem;
    }

    .mv-age-content h1 {
        font-size: 1.75rem;
    }

    .mv-age-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .mv-age-badge-holder {
        width: 48px;
        height: 48px;
    }

    .mv-rule-card img {
        width: 28px;
        height: 28px;
    }

    .mv-rule-card p {
        font-size: 0.875rem;
    }

    .mv-age-pin {
        width: 24px;
        height: 24px;
    }

    .mv-sparkle-bg-1,
    .mv-sparkle-bg-2,
    .mv-sparkle-bg-3,
    .mv-crystal-bg-1,
    .mv-crystal-bg-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .mv-age-panel {
        padding: 1.75rem 1.25rem;
    }

    .mv-age-content h1 {
        font-size: 1.5rem;
    }

    .mv-age-subtitle {
        font-size: 0.875rem;
    }

    .mv-age-rules {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .mv-rule-full {
        grid-column: auto;
    }

    .mv-age-exit span {
        display: none;
    }

    .mv-legal-links {
        flex-direction: column;
        align-items: center;
    }

    .mv-legal-links span {
        display: none;
    }

    .mv-age-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}
.mv-header {
    background: var(--mv-clr-bg-white);
    border-bottom: 1px solid var(--mv-clr-border);
    padding: 1.25rem 0;
    position: relative;
    box-shadow: var(--mv-shadow-sm);
}

.mv-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mv-spacing-xl);
}

.mv-header-logo {
    flex-shrink: 0;
}

.mv-logo-image {
    height: 48px;
    width: auto;
}

.mv-header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.mv-nav-list {
    display: flex;
    gap: 2.5rem;
    position: relative;
}

.mv-nav-item {
    position: relative;
}

.mv-nav-link {
    display: block;
    font-size: 0.9375rem;
    font-weight: var(--mv-fw-medium);
    color: var(--mv-clr-text-body);
    padding: 0.5rem 0;
    transition: var(--mv-transition-fast);
    position: relative;
}

.mv-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--mv-clr-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--mv-clr-primary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.mv-nav-link:hover {
    color: var(--mv-clr-primary);
}

.mv-nav-link:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.mv-header-cta {
    flex-shrink: 0;
}

.mv-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    position: relative;
    z-index: 1000;
}

.mv-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mv-clr-primary);
    border-radius: 2px;
    transition: var(--mv-transition-normal);
    position: absolute;
}

.mv-burger span:nth-child(1) {
    top: 12px;
}

.mv-burger span:nth-child(2) {
    top: 19px;
}

.mv-burger span:nth-child(3) {
    top: 26px;
}

.mv-burger.active span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}

.mv-burger.active span:nth-child(2) {
    opacity: 0;
}

.mv-burger.active span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

.mv-mobile-menu {
    position: fixed;
    top: 118px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mv-clr-bg-white);
    z-index: 999;
    padding: var(--mv-spacing-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--mv-transition-normal);
    overflow-y: auto;
    pointer-events: none;
}

.mv-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mv-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--mv-spacing-xl);
}

.mv-mobile-list {
    display: flex;
    flex-direction: column;
    gap: var(--mv-spacing-sm);
}

.mv-mobile-link {
    display: block;
    font-size: 1.125rem;
    font-weight: var(--mv-fw-medium);
    color: var(--mv-clr-text-body);
    padding: var(--mv-spacing-md);
    border-radius: var(--mv-radius-sm);
    transition: var(--mv-transition-fast);
    border: 1px solid transparent;
}

.mv-mobile-link:hover {
    background: var(--mv-clr-bg-light);
    color: var(--mv-clr-primary);
    border-color: var(--mv-clr-border);
}

.mv-mobile-cta {
    width: 100%;
}

@media (max-width: 992px) {
    .mv-nav-list {
        gap: 1.75rem;
    }
}

@media (min-width: 769px) {
    .mv-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mv-header-nav,
    .mv-header-cta {
        display: none;
    }

    .mv-burger {
        display: flex;
    }

    .mv-disclaimer {
        padding: 0.625rem 0;
    }

    .mv-disclaimer-content {
        gap: var(--mv-spacing-sm);
    }

    .mv-badge-age {
        width: 36px;
        height: 36px;
    }

    .mv-disclaimer-text p {
        font-size: 0.8125rem;
    }

    .mv-disclaimer-chips {
        gap: 0.375rem;
    }

    .mv-chip {
        font-size: 0.6875rem;
        padding: 0.3125rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .mv-disclaimer-content {
        gap: 0.375rem;
    }

    .mv-badge-age {
        width: 32px;
        height: 32px;
    }

    .mv-disclaimer-text p {
        font-size: 0.75rem;
    }

    .mv-chip {
        font-size: 0.625rem;
        padding: 0.25rem 0.625rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mv-nav-link::after {
        transition: none;
    }

    .mv-btn-primary::after,
    .mv-btn-secondary::after,
    .mv-btn-light::after {
        transition: none;
    }
}

.mv-hero {
    position: relative;
    min-height: calc(100vh - 118px);
    display: flex;
    align-items: center;
    padding: 5.5rem 0 var(--mv-spacing-2xl) 0;
    overflow: hidden;
}

.mv-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    filter: blur(4px) opacity(0.8);
}

.mv-hero-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mv-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: var(--mv-spacing-2xl);
    align-items: center;
}

.mv-hero-text {
    max-width: 600px;
    backdrop-filter: brightness(0.75) blur(3px);
    border-radius: 20px;
    padding: 30px;
}

.mv-hero-eyebrow {
    font-family: var(--mv-ff-body);
    font-size: 1.125rem;
    font-weight: var(--mv-fw-medium);
    color: var(--mv-clr-border);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 1px 1px var(--mv-clr-bg-light);
}

.mv-hero-text h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.08;
    font-weight: var(--mv-fw-extrabold);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--mv-clr-light);
}

.mv-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--mv-clr-border);
    font-weight: 600;
    text-shadow: 1px 1px var(--mv-clr-bg-light);
    margin-bottom: 1.125rem;
    max-width: 560px;
}

.mv-hero-trust {
    color: var(--mv-clr-border);
    text-shadow: 1px 1px var(--mv-clr-bg-light);
}

.mv-hero-cta-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mv-prism-seal {
    display: block;
    position: relative;
}

.mv-prism-seal img {
    width: 320px;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-prism-seal:hover img {
    transform: scale(1.05);
}

.mv-floating-element {
    position: absolute;
    pointer-events: none;
}

.mv-float-1 {
    top: 10%;
    left: -5%;
    width: 60px;
    animation: float1 4s ease-in-out infinite;
}

.mv-float-2 {
    top: 60%;
    left: 5%;
    width: 40px;
    animation: float2 5s ease-in-out infinite;
}

.mv-float-3 {
    top: 25%;
    right: 8%;
    width: 50px;
    animation: float3 4.5s ease-in-out infinite;
}

.mv-float-4 {
    bottom: 15%;
    right: -3%;
    width: 45px;
    animation: float4 5.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(15px, -20px) rotate(5deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-10px, 15px) rotate(-5deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, -15px) rotate(8deg);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10px, -10px) rotate(-6deg);
    }
}

@media (max-width: 968px) {
    .mv-hero-content {
        grid-template-columns: 1fr;
        gap: var(--mv-spacing-xl);
        text-align: center;
    }

    .mv-hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .mv-hero-text h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .mv-hero-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }

    .mv-prism-seal img {
        width: 260px;
    }

    .mv-float-1,
    .mv-float-2,
    .mv-float-3,
    .mv-float-4 {
        display: none;
    }
}

@media (max-width: 768px) {
    .mv-hero {
        min-height: calc(100vh - 130px);
        padding: var(--mv-spacing-xl) 0;
    }

    .mv-hero-text h1 {
        font-size: clamp(2.25rem, 4.5vw, 3rem);
        margin-bottom: 1rem;
    }

    .mv-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .mv-hero-eyebrow {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .mv-prism-seal img {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .mv-hero {
        padding: var(--mv-spacing-lg) 0;
    }

    .mv-hero-text h1 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .mv-hero-subtitle {
        font-size: 0.9375rem;
    }

    .mv-hero-eyebrow {
        font-size: 0.875rem;
    }

    .mv-prism-seal img {
        width: 200px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mv-float-1,
    .mv-float-2,
    .mv-float-3,
    .mv-float-4 {
        animation: none;
    }

    .mv-prism-seal:hover img {
        transform: none;
    }
}
/**/
.mv-games {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f0f4ff 0%, #F0F4FF 50%, #8898b4 100%);
}

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

.mv-games-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.mv-games-header h2 {
    margin-bottom: 1rem;
}

.mv-games-subtitle {
    font-size: 1.125rem;
    color: var(--mv-clr-text-body);
    line-height: var(--mv-lh-relaxed);
}

.mv-games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.mv-game-card {
    position: relative;
    background: linear-gradient(135deg, rgba(187, 251, 255, 0.08) 0%, rgba(141, 216, 255, 0.05) 100%);
    border-radius: var(--mv-radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    flex: 0 0 calc(33.333% - 1.5rem);
    clip-path: polygon(
            12px 0,
            calc(100% - 12px) 0,
            100% 12px,
            100% calc(100% - 12px),
            calc(100% - 12px) 100%,
            12px 100%,
            0 calc(100% - 12px),
            0 12px
    );
    border: 1px solid var(--mv-clr-border-light);
    transition: border-color 0.3s ease;
}

.mv-game-card:hover {
    border-color: var(--mv-clr-border);
}

.mv-card-corners {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.mv-corner {
    position: absolute;
    width: 24px;
    height: 24px;
}

.mv-corner::before,
.mv-corner::after {
    content: '';
    position: absolute;
    background: var(--mv-clr-primary);
}

.mv-corner-tl {
    top: 8px;
    left: 8px;
}

.mv-corner-tl::before {
    top: 0;
    left: 0;
    width: 1px;
    height: 24px;
}

.mv-corner-tl::after {
    top: 0;
    left: 0;
    width: 24px;
    height: 1px;
}

.mv-corner-br {
    bottom: 8px;
    right: 8px;
}

.mv-corner-br::before {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 24px;
}

.mv-corner-br::after {
    bottom: 0;
    right: 0;
    width: 24px;
    height: 1px;
}

.mv-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--mv-fw-medium);
    color: var(--mv-clr-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
    border: 1px solid rgba(84, 9, 218, 0.1);
}

.mv-game-link {
    display: block;
    position: relative;
}

.mv-game-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--mv-clr-bg-light);
}

.mv-game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-game-link:hover .mv-game-image {
    transform: scale(1.02);
}

.mv-crystal-pin {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    z-index: 5;
    animation: crystalDrift 3s ease-in-out infinite;
}

@keyframes crystalDrift {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: translate(2px, -2px);
        opacity: 0.85;
    }
}

.mv-card-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--mv-clr-accent);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--mv-clr-border-light);
}

.mv-game-title {
    font-size: 1.375rem;
    margin: 0;
    color: var(--mv-clr-text-dark);
    text-align: center;
    line-height: 1.3;
}

.mv-game-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: var(--mv-gradient-main);
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: var(--mv-fw-semibold);
    color: #FFFFFF;
    transition: all 0.3s ease;
    width: 100%;
    clip-path: polygon(
            8px 0,
            calc(100% - 8px) 0,
            100% 8px,
            100% calc(100% - 8px),
            calc(100% - 8px) 100%,
            8px 100%,
            0 calc(100% - 8px),
            0 8px
    );
    box-shadow: 0 4px 12px rgba(84, 9, 218, 0.2);
}

.mv-game-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--mv-clr-secondary) 0%, var(--mv-clr-accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    clip-path: polygon(
            8px 0,
            calc(100% - 8px) 0,
            100% 8px,
            100% calc(100% - 8px),
            calc(100% - 8px) 100%,
            8px 100%,
            0 calc(100% - 8px),
            0 8px
    );
}

.mv-game-btn span {
    position: relative;
    z-index: 2;
}

.mv-game-btn:hover {
    box-shadow: 0 6px 20px rgba(78, 113, 255, 0.3);
    transform: translateY(-2px);
}

.mv-game-btn:hover::before {
    opacity: 1;
}

.mv-crystal-trail {
    position: absolute;
    width: 64px;
    height: 64px;
    pointer-events: none;
    opacity: 0.6;
}

.mv-trail-1 {
    top: 40%;
    left: -8px;
}

.mv-trail-2 {
    top: 60%;
    left: -6px;
}

@media (max-width: 1024px) {
    .mv-game-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .mv-games {
        padding: 3.5rem 0;
    }

    .mv-games-header {
        margin-bottom: 2.5rem;
    }

    .mv-games-grid {
        gap: 1.5rem;
    }

    .mv-game-title {
        font-size: 1.25rem;
    }

    .mv-crystal-trail {
        display: none;
    }
}

@media (max-width: 480px) {
    .mv-game-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .mv-games {
        padding: 2.5rem 0;
    }

    .mv-games-subtitle {
        font-size: 1rem;
    }

    .mv-card-footer {
        padding: 1.25rem;
    }

    .mv-game-title {
        font-size: 1.125rem;
    }

    .mv-game-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mv-crystal-pin {
        animation: none;
    }

    .mv-game-link:hover .mv-game-image {
        transform: none;
    }
}
/**/
.mv-promise {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: #8898b4;
}

.mv-promise-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.mv-promise-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03' /%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.mv-promise-content {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
}

.mv-promise-text {
    max-width: 500px;
}

.mv-promise-text h2 {
    margin-bottom: 1.25rem;
    color: #FFFFFF;
}

.mv-promise-subtitle {
    font-size: 1.125rem;
    line-height: var(--mv-lh-relaxed);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.mv-promise-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.mv-crystal-marker {
    position: absolute;
    left: -12px;
    top: 0;
    width: 8px;
    height: 8px;
    background: var(--mv-clr-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--mv-clr-primary), 0 0 24px rgba(84, 9, 218, 0.4);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10;
}

.mv-promise-cards:has(.mv-promise-card:hover) .mv-crystal-marker {
    opacity: 1;
}

.mv-promise-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    border-radius: var(--mv-radius-lg);
    clip-path: polygon(
            10px 0,
            calc(100% - 10px) 0,
            100% 10px,
            100% calc(100% - 10px),
            calc(100% - 10px) 100%,
            10px 100%,
            0 calc(100% - 10px),
            0 10px
    );
    transition: all 0.3s ease;
}

.mv-promise-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--mv-clr-primary) 0%, var(--mv-clr-secondary) 50%, var(--mv-clr-accent) 100%);
    border-radius: var(--mv-radius-lg);
    clip-path: polygon(
            10px 0,
            calc(100% - 10px) 0,
            100% 10px,
            100% calc(100% - 10px),
            calc(100% - 10px) 100%,
            10px 100%,
            0 calc(100% - 10px),
            0 10px
    );
    opacity: 0.15;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mv-promise-card:hover::before {
    opacity: 0.35;
}

.mv-promise-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
}

.mv-promise-card:nth-child(2):hover ~ .mv-crystal-marker {
    top: calc(33.333% + 0.75rem);
}

.mv-promise-card:nth-child(3):hover ~ .mv-crystal-marker {
    top: calc(66.666% + 1.5rem);
}

.mv-promise-card:first-of-type:hover ~ .mv-crystal-marker {
    top: 0;
}

.mv-card-icon {
    flex-shrink: 0;
}

.mv-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.mv-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--mv-clr-text-dark);
}

.mv-card-content p {
    font-size: 0.9375rem;
    color: var(--mv-clr-text-body);
    margin: 0;
    line-height: 1.5;
}

.mv-card-seal {
    flex-shrink: 0;
    align-self: flex-end;
}

.mv-card-seal img {
    width: 32px;
    height: 32px;
    opacity: 0.6;
}

.mv-promise-sparkle {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    z-index: 1;
}

.mv-sparkle-1 {
    top: 10%;
    left: 5%;
    width: 40px;
    animation: sparkleFloat1 6s ease-in-out infinite;
}

.mv-sparkle-2 {
    top: 60%;
    right: 8%;
    width: 35px;
    animation: sparkleFloat2 7s ease-in-out infinite;
}

.mv-sparkle-3 {
    bottom: 15%;
    left: 12%;
    width: 30px;
    animation: sparkleFloat3 5.5s ease-in-out infinite;
}

@keyframes sparkleFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(10px, -15px) rotate(5deg);
        opacity: 0.5;
    }
}

@keyframes sparkleFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.35;
    }
    50% {
        transform: translate(-12px, 10px) rotate(-5deg);
        opacity: 0.55;
    }
}

@keyframes sparkleFloat3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(8px, -12px) rotate(8deg);
        opacity: 0.6;
    }
}

@media (max-width: 968px) {
    .mv-promise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mv-promise-text {
        max-width: 100%;
        text-align: center;
    }

    .mv-crystal-marker {
        display: none;
    }
}

@media (max-width: 768px) {
    .mv-promise {
        padding: 3.5rem 0;
    }

    .mv-promise-content {
        gap: 2.5rem;
    }

    .mv-promise-card {
        grid-template-columns: auto 1fr;
        gap: 1.25rem;
        padding: 1.5rem 1.75rem;
    }

    .mv-card-seal {
        grid-column: 2 / 3;
        justify-self: end;
    }

    .mv-card-icon img {
        width: 40px;
        height: 40px;
    }

    .mv-card-seal img {
        width: 28px;
        height: 28px;
    }

    .mv-promise-sparkle {
        display: none;
    }
}

@media (max-width: 480px) {
    .mv-promise {
        padding: 2.5rem 0;
    }

    .mv-promise-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .mv-promise-card {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .mv-card-content h3 {
        font-size: 1.125rem;
    }

    .mv-card-content p {
        font-size: 0.875rem;
    }

    .mv-card-icon img {
        width: 36px;
        height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mv-crystal-marker {
        transition: opacity 0.1s linear;
    }

    .mv-sparkle-1,
    .mv-sparkle-2,
    .mv-sparkle-3 {
        animation: none;
    }
}

.mv-footer {
    position: relative;
    padding: 3rem 0 0 0;
    background: linear-gradient(135deg, #5409DA 0%, #4E71FF 50%, #8DD8FF 100%);
    overflow: hidden;
}

.mv-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03' /%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.mv-footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

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

.mv-footer-panel {
    position: relative;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: var(--mv-radius-lg);
    clip-path: polygon(
            16px 0,
            calc(100% - 16px) 0,
            100% 16px,
            100% calc(100% - 16px),
            calc(100% - 16px) 100%,
            16px 100%,
            0 calc(100% - 16px),
            0 16px
    );
    margin-bottom: 2rem;
}

.mv-footer-panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: var(--mv-radius-lg);
    clip-path: polygon(
            16px 0,
            calc(100% - 16px) 0,
            100% 16px,
            100% calc(100% - 16px),
            calc(100% - 16px) 100%,
            16px 100%,
            0 calc(100% - 16px),
            0 16px
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    z-index: -1;
}

.mv-panel-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    opacity: 0.6;
    pointer-events: none;
}

.mv-pin-tl {
    top: 12px;
    left: 12px;
}

.mv-pin-tr {
    top: 12px;
    right: 12px;
}

.mv-pin-bl {
    bottom: 12px;
    left: 12px;
}

.mv-pin-br {
    bottom: 12px;
    right: 12px;
}

.mv-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.mv-footer-logo {
    margin-bottom: 1.5rem;
}

.mv-footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mv-footer-about h3 {
    margin-top: 1rem;
}

.mv-footer-col h3 {
    font-size: 1.125rem;
    font-weight: var(--mv-fw-semibold);
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.mv-footer-col p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.mv-disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-disclaimer-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.mv-disclaimer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #8DD8FF 0%, #BBFBFF 100%);
    transform: rotate(45deg);
}

.mv-footer-disclaimer-bar {
    background: rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
    margin: 2rem 0 0 0;
}

.mv-disclaimer-horizontal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-disclaimer-horizontal li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.mv-disclaimer-horizontal li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #8DD8FF 0%, #BBFBFF 100%);
}

.mv-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-footer-links li {
    margin-bottom: 0.75rem;
}

.mv-footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.mv-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFFFFF;
    transition: width 0.3s ease;
}

.mv-footer-links a:hover {
    color: #FFFFFF;
}

.mv-footer-links a:hover::after {
    width: 100%;
}

.mv-footer-utility {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mv-utility-copyright p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.mv-utility-disclaimer {
    text-align: center;
}

.mv-utility-disclaimer p {
    font-size: 0.875rem;
    font-weight: var(--mv-fw-medium);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mv-utility-age {
    display: flex;
    justify-content: flex-end;
}

.mv-age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.mv-age-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .mv-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .mv-footer-about {
        grid-column: 1 / -1;
    }

    .mv-disclaimer-horizontal {
        gap: 0.75rem 2rem;
    }

    .mv-disclaimer-horizontal li {
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .mv-footer {
        padding: 2rem 0 0 0;
    }

    .mv-footer-panel {
        padding: 2rem 1.5rem;
    }

    .mv-footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-footer-about {
        grid-column: auto;
    }

    .mv-footer-logo {
        margin-bottom: 1.25rem;
    }

    .mv-footer-logo img {
        height: 32px;
    }

    .mv-footer-about h3 {
        margin-top: 0.75rem;
    }

    .mv-disclaimer-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .mv-disclaimer-horizontal li {
        white-space: normal;
        text-align: center;
    }

    .mv-footer-utility {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .mv-utility-copyright {
        order: 2;
    }

    .mv-utility-disclaimer {
        order: 1;
    }

    .mv-utility-age {
        justify-content: center;
        order: 3;
    }

    .mv-age-badge {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .mv-footer-panel {
        padding: 1.75rem 1.25rem;
    }

    .mv-panel-pin {
        width: 20px;
        height: 20px;
    }

    .mv-footer-logo img {
        height: 28px;
    }

    .mv-footer-col h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .mv-footer-col p,
    .mv-footer-links a {
        font-size: 0.875rem;
    }

    .mv-disclaimer-horizontal li {
        font-size: 0.75rem;
        padding-left: 1rem;
    }

    .mv-disclaimer-horizontal li::before {
        width: 4px;
        height: 4px;
    }

    .mv-utility-copyright p,
    .mv-utility-disclaimer p {
        font-size: 0.8125rem;
    }
}