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

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

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

@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/manrope-v15-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --tone-dark: #16203D;
    --tone-surface: #2A3258;
    --tone-border: rgba(227, 148, 205, 0.16);
    --tone-light: #F3EBEB;
    --tone-subtle: #C4B5D6;
    --tone-brand: #9A2696;
    --tone-brand-alt: #B84CB3;
    --tone-highlight: #E994CD;
    --depth-sm: 0 3px 10px rgba(0, 0, 0, 0.18);
    --depth-md: 0 10px 28px rgba(154, 38, 150, 0.24);
    --curve-sm: 0.625rem;
    --curve-md: 1.5rem;
    --gap-xs: 0.625rem;
    --gap-sm: 1.125rem;
    --gap-md: 1.75rem;
    --gap-lg: 3rem;
}

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

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--tone-light);
    background: linear-gradient(155deg, var(--tone-dark) 0%, #2D1B4E 100%);
    background-color: var(--tone-dark);
    min-height: 100vh;
    overflow-x: hidden;
    background-attachment: fixed;
}

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

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

.mv-container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gap-sm);
    padding-right: var(--gap-sm);
}

.mv-flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm);
    align-items: center;
}

.mv-grid {
    display: grid;
    gap: var(--gap-md);
}

@media (min-width: 48rem) {
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mv-space > * + * {
    margin-top: var(--gap-md);
}

.mv-align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.5rem, 6.5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--tone-light);
    margin-bottom: var(--gap-md);
}

h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--tone-light);
    margin-bottom: var(--gap-md);
}

h3 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.625rem, 3.25vw, 2.5rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.018em;
    margin-bottom: var(--gap-sm);
}

p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--tone-subtle);
    margin-bottom: var(--gap-sm);
}

.mv-label {
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--tone-highlight);
}

.mv-text-sm {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--tone-subtle);
}

.mv-input {
    width: 100%;
    padding: 1rem 1.375rem;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--tone-light);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--tone-border);
    border-radius: var(--curve-sm);
    transition: all 0.3s ease;
}

.mv-input:focus {
    outline: none;
    border-color: var(--tone-brand-alt);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(184, 76, 179, 0.1);
}

.mv-input::placeholder {
    color: rgba(196, 181, 214, 0.45);
}

label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--tone-light);
    margin-bottom: 0.625rem;
}

.mv-note {
    font-size: 0.875rem;
    color: var(--tone-subtle);
    margin-top: 0.5rem;
}

.mv-alert {
    font-size: 0.9375rem;
    color: #FF7B7B;
    margin-top: 0.625rem;
}

.mv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 14px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.mv-button--primary {
    background: #8E228E;
    color: #F4EEEE;
    box-shadow: 0 8px 24px rgba(142, 34, 142, 0.3);
}

.mv-button--primary:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(142, 34, 142, 0.5), inset 0 0 20px rgba(244, 238, 238, 0.2);
}

.mv-button--primary:active {
    transform: scale(0.98);
}

.mv-button--outline {
    background: transparent;
    color: #D687BA;
    border: 2px solid #D687BA;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1), letter-spacing 0.3s ease;
}

.mv-button--outline:hover {
    background: linear-gradient(135deg, rgba(214, 135, 186, 0.15) 0%, rgba(142, 34, 142, 0.15) 100%);
    border-color: #F4EEEE;
    color: #F4EEEE;
    letter-spacing: 1px;
    transform: scale(0.99);
}

.mv-button--outline:active {
    transform: scale(0.97);
}

.mv-panel {
    background: var(--tone-surface);
    border: 1px solid var(--tone-border);
    border-radius: var(--curve-md);
    padding: var(--gap-md);
    box-shadow: var(--depth-sm);
}
.mv-age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 17, 45, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-age-modal.show {
    display: flex;
    opacity: 1;
}

.mv-age-modal__content {
    max-width: 650px;
    background: linear-gradient(135deg, rgba(42, 50, 88, 0.9) 0%, rgba(15, 17, 45, 0.95) 100%);
    border: 2px solid var(--tone-border);
    border-radius: var(--curve-md);
    padding: calc(var(--gap-lg) * 1.5);
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
}

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

.mv-age-modal__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--gap-md);
    background: linear-gradient(135deg, #8E228E 0%, #D687BA 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(142, 34, 142, 0.4);
}

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

.mv-age-modal h2 {
    font-size: 2rem;
    margin-bottom: var(--gap-xs);
    background: linear-gradient(135deg, #D687BA 0%, #F4EEEE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-age-modal__subtitle {
    font-size: 1.125rem;
    color: var(--tone-subtle);
    margin-bottom: var(--gap-sm);
    line-height: 1.6;
}

.mv-age-modal__text {
    font-size: 1rem;
    color: var(--tone-subtle);
    line-height: 1.7;
    margin-bottom: calc(var(--gap-lg) * 1.25);
}

.mv-age-modal__buttons {
    display: flex;
    gap: var(--gap-sm);
    justify-content: center;
}

.mv-age-modal__button {
    padding: 0.875rem 2rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--curve-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.mv-age-modal__button--yes {
    background: linear-gradient(135deg, #8E228E 0%, #D687BA 100%);
    color: #FFFFFF;
}

.mv-age-modal__button--yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(142, 34, 142, 0.4);
}

.mv-age-modal__button--no {
    background: transparent;
    color: var(--tone-subtle);
    border: 1px solid var(--tone-border);
}

.mv-age-modal__button--no:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--tone-subtle);
}

.mv-age-modal__footer {
    margin-top: var(--gap-md);
    padding-top: var(--gap-md);
    border-top: 1px solid var(--tone-border);
    font-size: 0.875rem;
    color: rgba(196, 181, 214, 0.6);
}
.mv-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(22, 32, 61, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tone-border);
}

.mv-navbar {
    padding: 1rem 0;
}

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

.mv-navbar__brand {
    display: flex;
    align-items: center;
}

.mv-navbar__logo {
    height: 70px;
    width: auto;
}

.mv-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mv-navbar__toggle-line {
    width: 28px;
    height: 3px;
    background: var(--tone-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mv-navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
}

.mv-navbar__list {
    display: flex;
    list-style: none;
    gap: var(--gap-md);
    align-items: center;
}

.mv-navbar__link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tone-light);
    transition: color 0.25s ease;
    position: relative;
}

.mv-navbar__link:hover {
    color: var(--tone-highlight);
}

.mv-navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tone-brand-alt);
    transition: width 0.3s ease;
}

.mv-navbar__link:hover::after {
    width: 100%;
}

@media (max-width: 62rem) {
    .mv-navbar__toggle {
        display: flex;
    }

    .mv-navbar__menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--tone-dark);
        border-top: 1px solid var(--tone-border);
        flex-direction: column;
        padding: var(--gap-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .mv-navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mv-navbar__list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .mv-navbar__link::after {
        display: none;
    }
}

main {
    padding-top: 80px;
}
.mv-core-features {
    padding: var(--gap-lg) 0;
    background: var(--tone-surface);
}

.mv-core-features h2 {
    margin-bottom: var(--gap-lg);
}

.mv-core-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 48rem) {
    .mv-core-features-grid {
        grid-template-columns: 1fr;
    }
}

.mv-feature-box {
    background: var(--tone-dark);
    border: 1px solid var(--tone-border);
    border-radius: var(--curve-md);
    padding: var(--gap-lg);
    transition: all 0.3s ease;
}

.mv-feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--tone-brand);
    box-shadow: var(--depth-md);
}

.mv-feature-box__icon {
    width: 72px;
    height: 72px;
    margin-bottom: var(--gap-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(142, 34, 142, 0.2) 0%, rgba(214, 135, 186, 0.2) 100%);
    border-radius: 50%;
}

.mv-feature-box__icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(79%) sepia(17%) saturate(1234%) hue-rotate(279deg) brightness(96%) contrast(91%);
}

.mv-feature-box h3 {
    font-size: 1.375rem;
    margin-bottom: var(--gap-sm);
}

.mv-feature-box p {
    font-size: 1rem;
    color: var(--tone-subtle);
    line-height: 1.7;
    margin: 0;
}

.mv-gameplay-tactics {
    padding: var(--gap-lg) 0;
}

.mv-gameplay-tactics__header {
    max-width: 900px;
    margin: 0 auto var(--gap-lg);
}

.mv-gameplay-tactics__header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--gap-sm);
}

.mv-gameplay-tactics__header p {
    font-size: 1.0625rem;
    color: var(--tone-subtle);
}

.mv-gameplay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-md);
    max-width: 1100px;
    margin: 0 auto;
}

.mv-gameplay-card {
    background: var(--tone-surface);
    border: 1px solid var(--tone-border);
    border-radius: var(--curve-md);
    padding: var(--gap-md);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-gameplay-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--depth-md);
    border-color: var(--tone-highlight);
}

.mv-gameplay-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--gap-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8E228E 0%, #D687BA 100%);
    border-radius: 50%;
}

.mv-gameplay-card__icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(98%) sepia(1%) saturate(718%) hue-rotate(314deg) brightness(99%) contrast(96%);
}

.mv-gameplay-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--gap-xs);
}

.mv-gameplay-card p {
    font-size: 1rem;
    color: var(--tone-subtle);
    margin: 0;
}

.mv-player-voices {
    padding: var(--gap-lg) 0;
    background: var(--tone-surface);
}

.mv-player-voices h2 {
    margin-bottom: var(--gap-lg);
}

.mv-testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 48rem) {
    .mv-testimonials-slider {
        padding: 0 50px;
    }
}

.mv-testimonials-slider__container {
    overflow: hidden;
    border-radius: var(--curve-md);
}

.mv-testimonials-slider__track {
    display: flex;
    transition: transform 0.5s ease;
}

.mv-testimonial-slide {
    min-width: 100%;
    background: var(--tone-dark);
    border: 2px solid var(--tone-border);
    border-radius: var(--curve-md);
    padding: var(--gap-lg);
    position: relative;
}

.mv-testimonial-slide::before {
    content: '"';
    position: absolute;
    top: var(--gap-md);
    left: var(--gap-md);
    font-family: 'Manrope', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--tone-brand);
    opacity: 0.15;
}

.mv-testimonial-slide__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--tone-subtle);
    margin-bottom: var(--gap-md);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.mv-testimonial-slide__author {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: var(--gap-md);
    padding-top: var(--gap-md);
    border-top: 1px solid var(--tone-border);
}

.mv-testimonial-slide__author strong {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    color: var(--tone-light);
}

.mv-testimonial-slide__author span {
    font-size: 0.9375rem;
    color: var(--tone-highlight);
}

.mv-testimonials-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 2px solid var(--tone-border);
    background: var(--tone-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.mv-testimonials-slider__btn:hover {
    border-color: var(--tone-brand);
    background: var(--tone-brand);
    transform: translateY(-50%) scale(1.1);
}

.mv-testimonials-slider__btn--prev {
    left: 0;
}

.mv-testimonials-slider__btn--next {
    right: 0;
}

.mv-testimonials-slider__btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(79%) sepia(17%) saturate(1234%) hue-rotate(279deg) brightness(96%) contrast(91%);
}

.mv-testimonials-slider__btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.mv-testimonials-slider__dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: var(--gap-md);
}

.mv-testimonials-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tone-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.mv-testimonials-slider__dot.active {
    background: var(--tone-brand);
    width: 32px;
    border-radius: 6px;
}

.mv-testimonials-slider__dot:hover {
    background: var(--tone-highlight);
}

.mv-contact-home {
    padding: var(--gap-lg) 0;
}

.mv-contact-home__wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--tone-surface);
    border: 1px solid var(--tone-border);
    border-radius: var(--curve-md);
    padding: var(--gap-lg);
}

.mv-contact-home__header {
    margin-bottom: var(--gap-lg);
}

.mv-contact-home__header h2 {
    margin-bottom: var(--gap-sm);
}

.mv-contact-home__header p {
    color: var(--tone-subtle);
    margin: 0;
}

.mv-contact-home-form .mv-button {
    width: 100%;
    margin-top: var(--gap-sm);
}

.mv-contact-home-success {
    text-align: center;
    padding: var(--gap-lg) 0;
}

.mv-contact-home-success__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--gap-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8E228E 0%, #D687BA 100%);
    border-radius: 50%;
}

.mv-contact-home-success__icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.mv-contact-home-success h3 {
    font-size: 2rem;
    margin-bottom: var(--gap-xs);
    color: var(--tone-light);
}

.mv-contact-home-success p {
    font-size: 1.0625rem;
    color: var(--tone-subtle);
    margin: 0;
}

.mv-hero-portal {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--gap-lg)) 0 var(--gap-lg);
    overflow: hidden;
}

.mv-hero-portal__stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20% 30%, rgba(244, 238, 238, 0.4), transparent),
            radial-gradient(2px 2px at 60% 70%, rgba(244, 238, 238, 0.3), transparent),
            radial-gradient(1px 1px at 50% 50%, rgba(244, 238, 238, 0.5), transparent),
            radial-gradient(1px 1px at 80% 10%, rgba(244, 238, 238, 0.4), transparent),
            radial-gradient(2px 2px at 90% 60%, rgba(244, 238, 238, 0.3), transparent),
            radial-gradient(1px 1px at 33% 80%, rgba(244, 238, 238, 0.4), transparent);
    background-size: 200% 200%;
    animation: starsFloat 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes starsFloat {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-10px);
    }
}

.mv-hero-portal__wrapper {
    display: grid;
    gap: var(--gap-lg);
    align-items: center;
    position: relative;
}

@media (min-width: 62rem) {
    .mv-hero-portal__wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
}

.mv-hero-portal__content {
    z-index: 2;
    animation: textReveal 1s ease-out;
}

@keyframes textReveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}

.mv-hero-portal__title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--tone-light);
    margin-bottom: var(--gap-md);
}

.mv-hero-portal__highlight {
    color: #D687BA;
    position: relative;
    display: inline-block;
}

.mv-hero-portal__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--tone-subtle);
    margin-bottom: var(--gap-lg);
    max-width: 520px;
}

.mv-hero-portal__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.mv-hero-portal__cta-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(100%);
}

.mv-hero-portal__cta:hover .mv-hero-portal__cta-icon {
    transform: translateX(4px);
}

.mv-hero-portal__visual {
    position: relative;
    z-index: 1;
}

@media (min-width: 62rem) {
    .mv-hero-portal__content {
        padding-right: var(--gap-lg);
    }

    .mv-hero-portal__visual {
        margin-left: -80px;
    }
}

.mv-hero-portal__image-wrapper {
    position: relative;
    border-radius: 80px 20px 80px 20px;
    overflow: hidden;
    box-shadow:
            0 0 60px rgba(142, 34, 142, 0.4),
            0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatingImage 4s ease-in-out infinite;
}

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

.mv-hero-portal__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.mv-hero-portal__image-wrapper:hover .mv-hero-portal__image {
    transform: scale(1.05);
}
.mv-about {
    padding: var(--gap-lg) 0;
}

.mv-about__grid {
    display: grid;
    gap: var(--gap-lg);
    align-items: center;
}

@media (min-width: 62rem) {
    .mv-about__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mv-about__content h2 {
    margin-top: var(--gap-sm);
}

.mv-about__image img {
    width: 100%;
    border-radius: var(--curve-md);
    box-shadow: var(--depth-md);
}

.mv-game-modes {
    padding: var(--gap-lg) 0;
    background: var(--tone-surface);
}

.mv-section-intro {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--gap-lg);
}

.mv-modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gap-md);
    margin-top: var(--gap-lg);
}

.mv-mode-card {
    background: var(--tone-dark);
    border: 1px solid var(--tone-border);
    border-radius: var(--curve-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-mode-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--depth-md);
}

.mv-mode-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mv-mode-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mv-mode-card:hover .mv-mode-card__image img {
    transform: scale(1.1);
}

.mv-mode-card__content {
    padding: var(--gap-sm);
}

.mv-mode-card__name {
    font-size: 1.25rem;
    margin-bottom: 0.375rem;
}

.mv-mode-card__category {
    font-size: 0.9375rem;
    color: var(--tone-highlight);
}

.mv-advanced-features {
    padding: var(--gap-lg) 0;
}

.mv-features-grid {
    display: grid;
    gap: var(--gap-lg);
    align-items: center;
}

@media (min-width: 62rem) {
    .mv-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mv-advanced-features__image img {
    width: 100%;
    border-radius: var(--curve-md);
    box-shadow: var(--depth-md);
}

.mv-advanced-features__content h2 {
    margin-top: var(--gap-sm);
}

.mv-feature-list {
    list-style: none;
    margin: var(--gap-md) 0;
}

.mv-feature-list li {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    padding: 0.5rem 0;
}

.mv-feature-list img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.mv-cta-section {
    padding: var(--gap-lg) 0;
}

.mv-cta-box {
    background: linear-gradient(135deg, var(--tone-brand) 0%, var(--tone-brand-alt) 100%);
    padding: var(--gap-lg);
    border-radius: var(--curve-md);
    text-align: center;
    box-shadow: var(--depth-md);
}

.mv-cta-box h2 {
    color: #FFFFFF;
}

.mv-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--gap-md);
}
.mv-footer {
    background: #0F112D;
    padding: calc(var(--gap-lg) * 1.5) 0 var(--gap-md);
    margin-top: var(--gap-lg);
    position: relative;
    overflow: hidden;
}

.mv-footer__glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(142, 34, 142, 0.6) 25%,
    rgba(214, 135, 186, 0.8) 50%,
    rgba(142, 34, 142, 0.6) 75%,
    transparent 100%
    );
    box-shadow: 0 0 20px rgba(142, 34, 142, 0.4);
}

.mv-footer__inner {
    display: flex;
    gap: var(--gap-lg);
    margin-bottom: calc(var(--gap-lg) * 1.5);
    flex-wrap: wrap;
}

@media (min-width: 62rem) {
    .mv-footer__inner {
        flex-wrap: nowrap;
    }
}

.mv-footer__brand-soul {
    flex: 0 0 100%;
}

@media (min-width: 62rem) {
    .mv-footer__brand-soul {
        flex: 0 0 40%;
        max-width: 450px;
    }
}

.mv-footer__logo-wrapper {
    margin-bottom: var(--gap-md);
}

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

.mv-footer__manifesto {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #C4B5D6;
    margin-bottom: var(--gap-lg);
    font-style: italic;
}

.mv-footer__constellation {
    position: relative;
    height: 70px;
    width: 100%;
    max-width: 150px;
}

.mv-footer__social-star {
    position: absolute;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 50, 88, 0.5);
    border: 1px solid rgba(214, 135, 186, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mv-footer__social-star:hover {
    background: rgba(142, 34, 142, 0.3);
    border-color: #D687BA;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(214, 135, 186, 0.4);
}

.mv-footer__social-star img {
    width: 22px;
    height: 22px;
    filter: brightness(0) saturate(100%) invert(79%) sepia(17%) saturate(1234%) hue-rotate(279deg) brightness(96%) contrast(91%);
}

.mv-footer__social-star:hover img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(1%) saturate(718%) hue-rotate(314deg) brightness(99%) contrast(96%);
}

.mv-footer__map {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--gap-lg);
}

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

.mv-footer__title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #F4EEEE;
    margin-bottom: var(--gap-xs);
}

.mv-footer__column--exploration .mv-footer__title {
    font-size: 1.25rem;
    color: #D687BA;
}

.mv-footer__column--scrolls .mv-footer__title {
    opacity: 0.7;
}

.mv-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.mv-footer__links a {
    position: relative;
    font-size: 0.9375rem;
    color: #A396B0;
    transition: color 0.3s ease;
    padding-left: 0;
    display: inline-block;
}

.mv-footer__links a::before {
    content: '★';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    font-size: 0.75rem;
    color: #D687BA;
    transition: transform 0.3s ease;
}

.mv-footer__links a:hover {
    color: #F4EEEE;
    padding-left: 20px;
}

.mv-footer__links a:hover::before {
    transform: translateY(-50%) scale(1);
}

.mv-footer__column--scrolls .mv-footer__links a {
    font-weight: 300;
    opacity: 0.8;
}

.mv-footer__bottom {
    padding-top: var(--gap-md);
    position: relative;
}

.mv-footer__gradient-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(214, 135, 186, 0.3) 50%,
    transparent 100%
    );
}

.mv-footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap-sm);
    padding-top: var(--gap-md);
}

.mv-footer__copyright {
    font-size: 0.875rem;
    color: #A396B0;
}

.mv-footer__disclaimer {
    font-size: 0.875rem;
    color: #D687BA;
    font-weight: 600;
}

@media (max-width: 48rem) {
    .mv-footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }
}