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

:root {
    --mm-color-deep-space: #0b0e14;
    --mm-color-neon-cyan: #00f3ff;
    --mm-color-plasma-purple: #9d00ff;
    --mm-color-dark-matter: #1a1d28;
    --mm-color-starlight: #e2e8f0;
    --mm-color-nova-pink: #ff00c8;
    --mm-color-void-black: #05070a;
    --mm-color-comet-grey: #4a5568;
    --mm-color-quasar-blue: #0066ff;
    --mm-font-heading: 'Sora', sans-serif;
    --mm-font-body: 'Inter Tight', sans-serif;
    --mm-transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --mm-transition-medium: 0.3s ease;
    --mm-transition-fast: 0.15s ease;
    --mm-shadow-deep: 0 10px 30px rgba(0, 0, 0, 0.5);
    --mm-shadow-glow: 0 0 20px rgba(0, 243, 255, 0.3);
    --mm-border-radius: 12px;
}

body {
    font-family: var(--mm-font-body);
    background-color: var(--mm-color-void-black);
    color: var(--mm-color-starlight);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

.mm-site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 14, 20, 0.9), rgba(11, 14, 20, 0.95)), url('/mm-engine/mm-image/site-background.webp') center/cover no-repeat;
    z-index: -1;
    opacity: 0.7;
}

.mm-global-header {
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.mm-header-disclaimer {
    background: linear-gradient(90deg, var(--mm-color-plasma-purple), var(--mm-color-neon-cyan));
    color: var(--mm-color-void-black);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
    flex-wrap: wrap;
}

.mm-header-disclaimer i {
    font-size: 1rem;
}

.mm-disclaimer-close {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: auto;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mm-header-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mm-header-logo img {
    width: 100%;
    max-width: 200px;
    height: 100%;
    max-height: 60px;
    transition: var(--mm-transition-medium);
}

.mm-header-logo:hover img {
    filter: drop-shadow(var(--mm-shadow-glow));
}

.mm-header-navlinks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.mm-nav-item {
    color: var(--mm-color-starlight);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: var(--mm-transition-medium);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    pointer-events: auto;
}

.mm-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: var(--mm-transition-slow);
}

.mm-nav-item:hover {
    color: var(--mm-color-neon-cyan);
    background: rgba(0, 243, 255, 0.1);
}

.mm-nav-item:hover::before {
    left: 100%;
}

.mm-nav-item i {
    font-size: 1.25rem;
}

.mm-nav-contact {
    background: linear-gradient(45deg, var(--mm-color-plasma-purple), var(--mm-color-quasar-blue));
    color: white;
}

.mm-nav-contact:hover {
    background: linear-gradient(45deg, var(--mm-color-quasar-blue), var(--mm-color-plasma-purple));
    color: white;
}

.mm-header-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}

.mm-menu-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mm-color-neon-cyan);
    transition: var(--mm-transition-medium);
    border-radius: 2px;
}

.mm-menu-icon span:nth-child(2) {
    width: 18px;
    margin-left: auto;
}

.mm-menu-active .mm-menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mm-menu-active .mm-menu-icon span:nth-child(2) {
    opacity: 0;
}

.mm-menu-active .mm-menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 0px);
}

.mm-primary-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.mm-hero-banner {
    background: linear-gradient(135deg, rgba(26, 29, 40, 0.9), rgba(11, 14, 20, 0.95));
    border-radius: var(--mm-border-radius);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.mm-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.1) 0%, transparent 70%);
    animation: mm-pulse-orb 8s infinite linear;
}

@keyframes mm-pulse-orb {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-family: var(--mm-font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--mm-color-starlight), var(--mm-color-neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.mm-hero-subtitle {
    font-size: 1.25rem;
    color: var(--mm-color-comet-grey);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mm-hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.mm-action-primary {
    background: linear-gradient(45deg, var(--mm-color-neon-cyan), var(--mm-color-quasar-blue));
    color: var(--mm-color-void-black);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.mm-action-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--mm-shadow-glow);
}

.mm-action-secondary {
    background: transparent;
    color: var(--mm-color-neon-cyan);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--mm-color-neon-cyan);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.mm-action-secondary:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-3px);
}

.mm-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.mm-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mm-stat-item i {
    color: var(--mm-color-nova-pink);
    font-size: 1.5rem;
}

.mm-stat-item span {
    font-size: 0.875rem;
    color: var(--mm-color-comet-grey);
}

.mm-digital-entertainment {
    background: rgba(26, 29, 40, 0.7);
    border-radius: var(--mm-border-radius);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(157, 0, 255, 0.2);
}

.mm-section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mm-decoration-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.mm-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--mm-color-plasma-purple);
    top: -150px;
    right: -150px;
    animation: mm-float 20s infinite ease-in-out;
}

.mm-orb-2 {
    width: 200px;
    height: 200px;
    background: var(--mm-color-neon-cyan);
    bottom: -100px;
    left: -100px;
    animation: mm-float 15s infinite ease-in-out reverse;
}

@keyframes mm-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.mm-section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

h2 {
    font-family: var(--mm-font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--mm-color-starlight);
}

.mm-section-intro p {
    font-size: 1.125rem;
    color: var(--mm-color-comet-grey);
    line-height: 1.7;
}

.mm-feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.mm-feature-card {
    background: rgba(11, 14, 20, 0.8);
    border-radius: var(--mm-border-radius);
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: var(--mm-transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mm-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--mm-color-neon-cyan);
    box-shadow: var(--mm-shadow-glow);
}

.mm-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--mm-color-plasma-purple), var(--mm-color-quasar-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mm-card-icon i {
    font-size: 2rem;
    color: white;
}

.mm-feature-card h3 {
    font-family: var(--mm-font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--mm-color-starlight);
}

.mm-feature-card p {
    color: var(--mm-color-comet-grey);
    line-height: 1.6;
    flex-grow: 1;
}

.mm-section-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mm-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--mm-color-neon-cyan);
    text-decoration: none;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border: 2px solid var(--mm-color-neon-cyan);
    border-radius: 50px;
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.mm-cta-link:hover {
    background: rgba(0, 243, 255, 0.1);
    gap: 1rem;
}

.mm-interactive-games {
    margin-bottom: 4rem;
}

.mm-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mm-game-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.mm-game-card {
    background: rgba(26, 29, 40, 0.8);
    border-radius: var(--mm-border-radius);
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid rgba(157, 0, 255, 0.2);
    transition: var(--mm-transition-medium);
    position: relative;
}

.mm-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--mm-color-plasma-purple);
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
}

.mm-game-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--mm-color-nova-pink), var(--mm-color-plasma-purple));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.mm-game-card img {
    width: 100%;
    max-width: 350px;
    height: 100%;
    max-height: 200px;
    object-fit: cover;
}

.mm-game-content {
    padding: 1.5rem;
    min-height: 200px;
}

.mm-game-content h3 {
    font-family: var(--mm-font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--mm-color-starlight);
    min-height: 78px;
}

.mm-game-content p {
    color: var(--mm-color-comet-grey);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mm-game-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.mm-game-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--mm-color-comet-grey);
}

.mm-game-meta i {
    color: var(--mm-color-quasar-blue);
}

.mm-game-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mm-color-neon-cyan);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--mm-color-neon-cyan);
    border-radius: 50px;
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.mm-game-link:hover {
    background: rgba(0, 243, 255, 0.1);
}

.mm-community-aspects {
    background: linear-gradient(135deg, rgba(11, 14, 20, 0.9), rgba(26, 29, 40, 0.9));
    border-radius: var(--mm-border-radius);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.mm-community-container, .mm-origins-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.mm-origins-container {
    flex-direction: row-reverse;
}

.mm-community-visual, .mm-origins-visual {
    flex: 1;
    min-width: 236px;
}

.mm-community-visual img, .mm-origins-visual img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 300px;
    border-radius: var(--mm-border-radius);
}

.mm-community-content, .mm-origins-content {
    flex: 2;
    min-width: 236px;
}

.mm-community-content h2, .mm-origins-content h3 {
    font-family: var(--mm-font-heading);
    margin-bottom: 1.5rem;
    color: var(--mm-color-starlight);
}

.mm-origins-content h3 {
    font-size: 1.75rem;
}

.mm-community-content p, .mm-origins-content p {
    color: var(--mm-color-comet-grey);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mm-community-highlights, .mm-origins-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.mm-highlight-item, .mm-point-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.mm-highlight-item i, .mm-point-item i {
    color: var(--mm-color-nova-pink);
    font-size: 1.5rem;
}

.mm-highlight-item span, .mm-point-item span {
    color: var(--mm-color-starlight);
    font-size: 0.875rem;
}

.mm-platform-features {
    margin-bottom: 4rem;
}

.mm-platform-features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.mm-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.mm-feature-block {
    background: rgba(26, 29, 40, 0.8);
    border-radius: var(--mm-border-radius);
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid rgba(157, 0, 255, 0.1);
    transition: var(--mm-transition-medium);
    text-align: center;
}

.mm-feature-block:hover {
    transform: translateY(-5px);
    border-color: var(--mm-color-plasma-purple);
}

.mm-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--mm-color-quasar-blue), var(--mm-color-neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mm-feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.mm-feature-block h3 {
    font-family: var(--mm-font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--mm-color-starlight);
}

.mm-feature-block p {
    color: var(--mm-color-comet-grey);
    line-height: 1.6;
}

.mm-newsletter-section {
    background: linear-gradient(135deg, rgba(11, 14, 20, 0.95), rgba(26, 29, 40, 0.95));
    border-radius: var(--mm-border-radius);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.mm-newsletter-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mm-newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.mm-newsletter-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mm-benefit-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 243, 255, 0.05);
    border-radius: var(--mm-border-radius);
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.mm-benefit-item i {
    font-size: 2.5rem;
    color: var(--mm-color-neon-cyan);
    margin-bottom: 1rem;
}

.mm-benefit-item h4 {
    font-family: var(--mm-font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--mm-color-starlight);
}

.mm-benefit-item p {
    color: var(--mm-color-comet-grey);
    line-height: 1.6;
}

.mm-subscribe-form {
    background: rgba(11, 14, 20, 0.9);
    padding: 2.5rem;
    border-radius: var(--mm-border-radius);
    border: 1px solid rgba(157, 0, 255, 0.2);
}

.mm-form-group {
    position: relative;
    margin-bottom: 2rem;
}

.mm-form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(26, 29, 40, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: var(--mm-border-radius);
    color: var(--mm-color-starlight);
    font-size: 16px;
    font-family: var(--mm-font-body);
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.mm-form-group input:focus {
    outline: none;
    border-color: var(--mm-color-neon-cyan);
    box-shadow: var(--mm-shadow-glow);
}

.mm-form-group label {
    position: absolute;
    top: 1rem;
    left: 3rem;
    color: var(--mm-color-comet-grey);
    transition: var(--mm-transition-medium);
    pointer-events: none;
    font-size: 14px;
}

.mm-form-group input:focus + label,
.mm-form-group input:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.75rem;
    color: var(--mm-color-neon-cyan);
    background: var(--mm-color-deep-space);
    padding: 0 0.5rem;
}

.mm-form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(26, 29, 40, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: var(--mm-border-radius);
    color: var(--mm-color-starlight);
    font-size: 16px;
    font-family: var(--mm-font-body);
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.mm-form-group textarea:focus {
    outline: none;
    border-color: var(--mm-color-neon-cyan);
    box-shadow: var(--mm-shadow-glow);
}

.mm-input-hint {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    font-size: 0.75rem;
    color: var(--mm-color-neon-cyan);
    opacity: 0;
    transition: var(--mm-transition-medium);
    pointer-events: none;
}

.mm-checkbox-group {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.mm-checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    min-height: 44px;
    min-width: 44px;
    cursor: pointer;
    z-index: 2;
}

.mm-custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--mm-color-neon-cyan);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: var(--mm-transition-medium);
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mm-checkbox-group input:checked + .mm-custom-checkbox {
    background: var(--mm-color-neon-cyan);
}

.mm-checkbox-group input:checked + .mm-custom-checkbox::after {
    content: '✓';
    color: var(--mm-color-void-black);
    font-weight: bold;
    font-size: 14px;
}

.mm-checkbox-group label {
    color: var(--mm-color-starlight);
    line-height: 1.6;
    flex-grow: 1;
    font-size: 14px;
    pointer-events: none;
}

.mm-checkbox-group a {
    color: var(--mm-color-neon-cyan);
    text-decoration: none;
}

.mm-checkbox-group a:hover {
    text-decoration: underline;
}

.mm-checkbox-hint {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 2.5rem;
    font-size: 0.75rem;
    color: var(--mm-color-comet-grey);
    opacity: 0;
    transition: var(--mm-transition-medium);
    pointer-events: none;
}

.mm-submit-button {
    background: linear-gradient(45deg, var(--mm-color-plasma-purple), var(--mm-color-quasar-blue));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--mm-font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--mm-transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 44px;
    width: 100%;
    justify-content: center;
}

.mm-submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mm-submit-button:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 0, 255, 0.3);
}

.mm-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: fit-content;
    background: rgba(11, 14, 20, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--mm-border-radius);
    display: none;
}

.mm-success-content {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    height: 100%;
}

.mm-success-content i {
    font-size: 4rem;
    color: var(--mm-color-neon-cyan);
    margin-bottom: 1.5rem;
}

.mm-success-content h3 {
    font-family: var(--mm-font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--mm-color-starlight);
}

.mm-success-content p {
    color: var(--mm-color-comet-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mm-success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mm-action-unsubscribe, .mm-action-change, .mm-close-success {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--mm-font-body);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--mm-transition-medium);
    min-height: 44px;
    border: none;
}

.mm-action-unsubscribe {
    background: transparent;
    color: var(--mm-color-nova-pink);
    border: 1px solid var(--mm-color-nova-pink);
}

.mm-action-change {
    background: transparent;
    color: var(--mm-color-neon-cyan);
    border: 1px solid var(--mm-color-neon-cyan);
}

.mm-close-success {
    background: linear-gradient(45deg, var(--mm-color-plasma-purple), var(--mm-color-quasar-blue));
    color: white;
}

.mm-action-unsubscribe:hover, .mm-action-change:hover, .mm-close-success:hover {
    transform: translateY(-2px);
}

.mm-faq-section {
    margin-bottom: 4rem;
}

.mm-faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.mm-faq-columns {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mm-faq-column {
    flex: 1;
    min-width: 236px;
    max-width: 500px;
}

.mm-faq-column h3 {
    font-family: var(--mm-font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--mm-color-starlight);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.mm-faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 243, 255, 0.1);
    border-radius: var(--mm-border-radius);
    overflow: hidden;
}

.mm-faq-question {
    width: 100%;
    padding: 1.25rem;
    background: rgba(26, 29, 40, 0.8);
    border: none;
    color: var(--mm-color-starlight);
    font-family: var(--mm-font-body);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.mm-faq-question i {
    transition: var(--mm-transition-medium);
    color: var(--mm-color-neon-cyan);
}

.mm-faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mm-faq-question:hover {
    background: rgba(0, 243, 255, 0.1);
}

.mm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(11, 14, 20, 0.9);
}

.mm-faq-answer p {
    padding: 1.25rem;
    color: var(--mm-color-comet-grey);
    line-height: 1.6;
}

.mm-faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.mm-testimonials-section {
    margin-bottom: 4rem;
}

.mm-testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.mm-testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.mm-testimonial-card {
    background: linear-gradient(135deg, rgba(26, 29, 40, 0.9), rgba(11, 14, 20, 0.9));
    border-radius: var(--mm-border-radius);
    padding: 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid rgba(157, 0, 255, 0.2);
    transition: var(--mm-transition-medium);
}

.mm-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--mm-color-plasma-purple);
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
}

.mm-testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.mm-testimonial-header img {
    width: 100%;
    max-width: 80px;
    height: 100%;
    max-height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
}

.mm-testimonial-author h4 {
    font-family: var(--mm-font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--mm-color-starlight);
}

.mm-testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.mm-testimonial-rating i {
    color: var(--mm-color-nova-pink);
    font-size: 0.875rem;
}

.mm-testimonial-header i.ri-double-quotes-l {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    color: rgba(0, 243, 255, 0.2);
}

.mm-testimonial-card p {
    color: var(--mm-color-comet-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.mm-testimonial-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--mm-color-comet-grey);
}

.mm-testimonial-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.mm-testimonial-meta i {
    font-size: 1rem;
}

.mm-welcome-section {
    background: linear-gradient(135deg, rgba(11, 14, 20, 0.95), rgba(26, 29, 40, 0.95));
    border-radius: var(--mm-border-radius);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    text-align: center;
}

.mm-welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

.mm-welcome-section h2 {
    margin-bottom: 1.5rem;
}

.mm-welcome-section p {
    color: var(--mm-color-comet-grey);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mm-welcome-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.mm-welcome-item {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    text-align: center;
}

.mm-welcome-item i {
    font-size: 2rem;
    color: var(--mm-color-neon-cyan);
    margin-bottom: 1rem;
}

.mm-welcome-item p {
    font-size: 0.875rem;
    color: var(--mm-color-starlight);
    margin-bottom: 0;
    line-height: 1.5;
}

.mm-contact-section {
    margin-bottom: 4rem;
}

.mm-contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mm-contact-container {
    background: rgba(26, 29, 40, 0.8);
    border-radius: var(--mm-border-radius);
    padding: 3rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
}

.mm-contact-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.mm-visual-element {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--mm-color-plasma-purple) 0%, transparent 70%);
    border-radius: var(--mm-border-radius);
    animation: mm-pulse 4s infinite ease-in-out;
}

@keyframes mm-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.mm-contact-form {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.mm-form-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.mm-form-row .mm-form-group {
    flex: 1;
    min-width: 250px;
}

.mm-contact-form .mm-form-group input,
.mm-contact-form .mm-form-group textarea {
    padding-left: 3rem;
    font-size: 16px;
    min-height: 44px;
}

.mm-contact-form .mm-form-group textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 1rem;
    font-family: var(--mm-font-body);
}

.mm-contact-form .mm-form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mm-color-neon-cyan);
    font-size: 1.25rem;
    pointer-events: none;
}

.mm-contact-form .mm-form-group textarea + i {
    top: 1.5rem;
    transform: none;
}

.mm-contact-form label {
    left: 3rem;
}

.mm-contact-form input:focus + label,
.mm-contact-form input:not(:placeholder-shown) + label,
.mm-contact-form textarea:focus + label,
.mm-contact-form textarea:not(:placeholder-shown) + label {
    left: 1rem;
}

.mm-contact-info {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    position: relative;
    z-index: 2;
}

.mm-contact-info h3 {
    font-family: var(--mm-font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--mm-color-starlight);
}

.mm-contact-info p {
    color: var(--mm-color-comet-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mm-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mm-info-item i {
    color: var(--mm-color-nova-pink);
    font-size: 1.25rem;
}

.mm-info-item span {
    color: var(--mm-color-starlight);
    font-size: 0.875rem;
}

#contactSuccess {
    z-index: 3;
}

.mm-responsible-section {
    background: linear-gradient(135deg, rgba(11, 14, 20, 0.95), rgba(26, 29, 40, 0.95));
    border-radius: var(--mm-border-radius);
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(157, 0, 255, 0.2);
    text-align: center;
}

.mm-responsible-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mm-responsible-section h2 {
    margin-bottom: 1.5rem;
}

.mm-responsible-section p {
    color: var(--mm-color-comet-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mm-responsible-section a {
    color: var(--mm-color-neon-cyan);
    text-decoration: none;
}

.mm-responsible-section a:hover {
    text-decoration: underline;
}

.mm-responsible-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--mm-color-neon-cyan);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--mm-color-neon-cyan);
    border-radius: 50px;
    transition: var(--mm-transition-medium);
    margin-top: 1rem;
    min-height: 44px;
}

.mm-responsible-link:hover {
    background: rgba(0, 243, 255, 0.1);
}

.mm-partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.mm-partner-logos a {
    display: inline-block;
    background: var(--mm-color-nova-pink);
    border-radius: var(--mm-border-radius);
    padding: .5rem;
}

.mm-partner-logos img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(1%) brightness(2);
    transition: var(--mm-transition-medium);
}

.mm-partner-logos a:hover img {
    filter: grayscale(0%) brightness(0);
}

.mm-age-restriction {
    width: 120px;
    height: 60px;
    background: linear-gradient(45deg, var(--mm-color-nova-pink), var(--mm-color-plasma-purple));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mm-font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.mm-global-footer {
    background: rgba(11, 14, 20, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    padding: 3rem 1rem 1.5rem;
    width: 100%;
}

.mm-footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.mm-footer-brand {
    flex: 2;
    min-width: 236px;
}

.mm-footer-logo img {
    width: 100%;
    max-width: 50px;
    height: 100%;
    max-height: 50px;
    margin-bottom: 1rem;
}

.mm-footer-brand p {
    color: var(--mm-color-starlight);
    font-size: 0.875rem;
    line-height: 1.6;
}

.mm-footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.mm-link-group {
    flex: 1;
    min-width: 180px;
}

.mm-link-group h4 {
    font-family: var(--mm-font-heading);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--mm-color-starlight);
}

.mm-link-group a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--mm-color-neon-cyan);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.mm-link-group a:hover {
    color: var(--mm-color-neon-cyan);
    gap: 1rem;
}

.mm-link-group a i {
    font-size: 1rem;
}

.mm-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    color: var(--mm-color-neon-cyan);
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mm-scroll-navigation {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--mm-transition-slow);
}

.mm-scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

.mm-scroll-up, .mm-scroll-down {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--mm-color-plasma-purple), var(--mm-color-quasar-blue));
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--mm-transition-medium);
    min-height: 44px;
    min-width: 44px;
}

.mm-scroll-up:hover, .mm-scroll-down:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
}

.mm-scroll-progress {
    width: 50px;
    height: 50px;
    position: relative;
    background: rgba(11, 14, 20, 0.9);
    border-radius: 50%;
    border: 2px solid var(--mm-color-neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mm-progress-bar {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    background: conic-gradient(var(--mm-color-neon-cyan) 0%, transparent 0%);
    mask: radial-gradient(transparent 55%, black 56%);
    -webkit-mask: radial-gradient(transparent 55%, black 56%);
}

.mm-progress-text {
    font-size: 0.75rem;
    color: var(--mm-color-neon-cyan);
    font-weight: bold;
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 10, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
    overflow-y: auto;
}

.age-confirmation-dialog {
    background: linear-gradient(135deg, var(--mm-color-deep-space), var(--mm-color-dark-matter));
    padding: 3rem;
    border-radius: var(--mm-border-radius);
    max-width: 500px;
    text-align: center;
    border: 2px solid var(--mm-color-neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 243, 255, 0.2);
}

.age-dialog-icon {
    font-size: 4rem;
    color: var(--mm-color-neon-cyan);
    margin-bottom: 1.5rem;
}

.age-confirmation-dialog h3 {
    font-family: var(--mm-font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--mm-color-starlight);
}

.age-confirmation-dialog p {
    color: var(--mm-color-comet-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-dialog-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.age-confirm-button, .age-decline-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--mm-font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--mm-transition-medium);
    min-height: 44px;
    border: none;
    flex: 1;
    min-width: 200px;
}

.age-confirm-button {
    background: linear-gradient(45deg, var(--mm-color-neon-cyan), var(--mm-color-quasar-blue));
    color: var(--mm-color-void-black);
}

.age-decline-button {
    background: transparent;
    color: var(--mm-color-nova-pink);
    border: 2px solid var(--mm-color-nova-pink);
}

.age-confirm-button:hover, .age-decline-button:hover {
    transform: translateY(-3px);
}

.age-disclaimer {
    font-size: 0.75rem;
    color: var(--mm-color-comet-grey);
    margin-bottom: 0;
}

.cookie-notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--mm-color-dark-matter), var(--mm-color-deep-space));
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--mm-color-plasma-purple);
    z-index: 9998;
    display: none;
}

.cookie-consent-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 2;
    min-width: 236px;
}

.cookie-content i {
    font-size: 2.5rem;
    color: var(--mm-color-nova-pink);
}

.cookie-text h4 {
    font-family: var(--mm-font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--mm-color-starlight);
}

.cookie-text p {
    color: var(--mm-color-comet-grey);
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    min-width: 236px;
    justify-content: flex-end;
}

.cookie-policy-link {
    color: var(--mm-color-neon-cyan);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--mm-transition-medium);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

.cookie-accept-button {
    background: linear-gradient(45deg, var(--mm-color-plasma-purple), var(--mm-color-quasar-blue));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--mm-font-body);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.cookie-accept-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(157, 0, 255, 0.3);
}

.contact-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 10, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9997;
    display: none;
}

.feedback-modal-window {
    background: linear-gradient(135deg, var(--mm-color-deep-space), var(--mm-color-dark-matter));
    padding: 2rem;
    border-radius: var(--mm-border-radius);
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--mm-color-neon-cyan);
    position: relative;
}

.feedback-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--mm-color-neon-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-modal-content {
    padding: 1rem;
}

.feedback-modal-content h3 {
    font-family: var(--mm-font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--mm-color-starlight);
}

.feedback-modal-content p {
    color: var(--mm-color-comet-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-contact-form .modal-form-group {
    margin-bottom: 1.5rem;
}

.modal-contact-form input,
.modal-contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 29, 40, 0.8);
    border: 1px solid var(--mm-color-neon-cyan);
    border-radius: var(--mm-border-radius);
    color: var(--mm-color-starlight);
    font-size: 16px;
    font-family: var(--mm-font-body);
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.modal-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.modal-contact-form input:focus,
.modal-contact-form textarea:focus {
    outline: none;
    box-shadow: var(--mm-shadow-glow);
}

.modal-input-hint {
    font-size: 0.75rem;
    color: var(--mm-color-neon-cyan);
    margin-top: 0.25rem;
    opacity: 0;
    transition: var(--mm-transition-medium);
}

.modal-submit-button {
    background: linear-gradient(45deg, var(--mm-color-plasma-purple), var(--mm-color-quasar-blue));
    color: white;
    border: none;
    padding: 1rem 2rem;
    width: 100%;
    border-radius: 50px;
    font-family: var(--mm-font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--mm-transition-medium);
    min-height: 44px;
}

.modal-submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-submit-button:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 0, 255, 0.3);
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .mm-hero-banner {
        padding: 3rem 1.5rem;
    }
    
    .mm-community-container,
    .mm-origins-container {
        gap: 2rem;
    }
    
    .mm-footer-main {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .mm-header-navlinks {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        display: none;
        background: var(--mm-color-deep-space);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: var(--mm-transition-medium);
        border-left: 1px solid var(--mm-color-neon-cyan);
        z-index: 999;
    }
    
    .mm-nav-active {
        display: flex;
        right: 0;
    }
    
    .mm-header-menu {
        display: flex;
        z-index: 1000;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .mm-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mm-action-primary,
    .mm-action-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mm-feature-card,
    .mm-game-card,
    .mm-feature-block,
    .mm-testimonial-card {
        min-width: 100%;
    }
    
    .mm-community-visual img,
    .mm-origins-visual img {
        max-width: 100%;
        max-height: 250px;
    }
    
    .mm-form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mm-footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mm-scroll-navigation {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .mm-primary-content {
        padding: 1rem 0.5rem;
    }
    
    .mm-hero-banner,
    .mm-digital-entertainment,
    .mm-community-aspects,
    .mm-newsletter-section,
    .mm-welcome-section,
    .mm-contact-container,
    .mm-responsible-section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .mm-hero-subtitle {
        font-size: 1rem;
    }
    
    .mm-feature-card,
    .mm-game-card,
    .mm-feature-block,
    .mm-testimonial-card,
    .mm-benefit-item,
    .mm-faq-column,
    .mm-welcome-item {
        min-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .mm-form-group input,
    .mm-form-group textarea,
    .mm-contact-form .mm-form-group input,
    .mm-contact-form .mm-form-group textarea {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-size: 16px;
    }
    
    .mm-contact-form .mm-form-group i {
        left: 0.75rem;
    }
    
    .mm-checkbox-group {
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .mm-checkbox-group label {
        font-size: 0.875rem;
    }
    
    .mm-checkbox-hint {
        left: 2.25rem;
    }
    
    .mm-footer-brand,
    .mm-link-group {
        min-width: 100%;
    }
    
    .mm-scroll-navigation {
        transform: scale(0.8);
        right: 0.5rem;
        bottom: 0.5rem;
    }
    
    .mm-scroll-up,
    .mm-scroll-down,
    .mm-scroll-progress {
        width: 40px;
        height: 40px;
    }
    
    .age-confirmation-dialog,
    .feedback-modal-window {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .age-dialog-actions {
        flex-direction: column;
    }
    
    .age-confirm-button,
    .age-decline-button {
        min-width: 100%;
    }

    .cookie-notification-bar {
        padding: 1.5rem 0.3rem;
    }
    
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .age-verification-overlay {
        align-items: flex-start;
    }

    .mm-header-nav {
        padding: 0.5rem;
    }
    
    .mm-hero-banner {
        padding: 1.5rem 1rem;
    }
    
    .mm-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mm-feature-cards,
    .mm-game-grid,
    .mm-features-grid,
    .mm-testimonials-grid {
        gap: 1rem;
    }
    
    .mm-success-actions {
        flex-direction: column;
    }
    
    .mm-action-unsubscribe,
    .mm-action-change,
    .mm-close-success {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mm-decoration-orb {
        display: none;
    }
    
    .mm-hero-banner::before {
        animation: none;
    }
    
    .mm-feature-card:hover,
    .mm-game-card:hover,
    .mm-testimonial-card:hover {
        transform: none;
    }
    
    .mm-action-primary:hover,
    .mm-action-secondary:hover,
    .mm-cta-link:hover,
    .mm-game-link:hover,
    .mm-responsible-link:hover,
    .mm-submit-button:hover,
    .mm-scroll-up:hover,
    .mm-scroll-down:hover,
    .cookie-accept-button:hover,
    .modal-submit-button:hover,
    .age-confirm-button:hover,
    .age-decline-button:hover,
    .mm-action-unsubscribe:hover,
    .mm-action-change:hover,
    .mm-close-success:hover {
        transform: none;
    }
    
    .mm-visual-element {
        animation: none;
    }
}

.mmpage-privacy {
    position: relative;
    min-height: 100vh;
    background: #0a0c14;
    color: #e2e8f0;
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
}

.mmpage-privacy__background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(15, 23, 42, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 41, 59, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #0a0c14 0%, #1a1d28 100%);
    z-index: -1;
}

.mmpage-privacy__intro {
    padding: 5rem 2rem 3rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 12, 20, 0.9) 0%, rgba(26, 29, 40, 0.7) 100%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.mmpage-privacy__intro-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mmpage-privacy__intro-icon {
    font-size: 4rem;
    color: #6366f1;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: mmpage-privacy-icon-float 6s ease-in-out infinite;
}

@keyframes mmpage-privacy-icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(5deg); }
    66% { transform: translateY(5px) rotate(-5deg); }
}

.mmpage-privacy__intro h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #e2e8f0, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.mmpage-privacy__intro-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mmpage-privacy__meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.mmpage-privacy__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.mmpage-privacy__meta-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateY(-2px);
}

.mmpage-privacy__meta-item i {
    color: #6366f1;
    font-size: 1.25rem;
}

.mmpage-privacy__meta-item span {
    color: #cbd5e1;
    font-size: 0.875rem;
}

.mmpage-privacy__content {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mmpage-privacy__container {
    position: relative;
    z-index: 2;
}

.mmpage-privacy__disclaimer {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: mmpage-privacy-pulse 4s ease-in-out infinite;
}

@keyframes mmpage-privacy-pulse {
    0%, 100% { border-color: rgba(99, 102, 241, 0.3); }
    50% { border-color: rgba(99, 102, 241, 0.6); }
}

.mmpage-privacy__disclaimer i {
    color: #6366f1;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-privacy__disclaimer p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.mmpage-privacy__sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.mmpage-privacy__section {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(30, 41, 59, 0.5);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mmpage-privacy__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.mmpage-privacy__section:hover::before {
    transform: scaleX(1);
}

.mmpage-privacy__section:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mmpage-privacy__section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mmpage-privacy__section-number {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(99, 102, 241, 0.2);
    line-height: 1;
}

.mmpage-privacy__section-icon {
    font-size: 2.5rem;
    color: #6366f1;
}

.mmpage-privacy__section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #e2e8f0;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.mmpage-privacy__section-content {
    color: #94a3b8;
    line-height: 1.7;
}

.mmpage-privacy__section-content > p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.mmpage-privacy__points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mmpage-privacy__point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.mmpage-privacy__point:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateX(10px);
}

.mmpage-privacy__point i {
    color: #6366f1;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-privacy__point h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-privacy__point p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.mmpage-privacy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mmpage-privacy__grid-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.mmpage-privacy__grid-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateY(-5px);
}

.mmpage-privacy__grid-item i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 1rem;
    display: inline-block;
}

.mmpage-privacy__grid-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.mmpage-privacy__grid-item p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-privacy__security {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.mmpage-privacy__security-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.mmpage-privacy__security-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: scale(1.05);
}

.mmpage-privacy__security-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mmpage-privacy__security-icon i {
    font-size: 2rem;
    color: white;
}

.mmpage-privacy__security-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.mmpage-privacy__security-item p {
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.mmpage-privacy__transfer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
}

.mmpage-privacy__transfer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mmpage-privacy__transfer-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(10px);
}

.mmpage-privacy__transfer-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mmpage-privacy__transfer-item i.ri-checkbox-circle-line {
    color: #10b981;
}

.mmpage-privacy__transfer-item i.ri-close-circle-line {
    color: #ef4444;
}

.mmpage-privacy__transfer-item span {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.5;
}

.mmpage-privacy__deletion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mmpage-privacy__deletion-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border-left: 4px solid #6366f1;
    transition: all 0.3s ease;
}

.mmpage-privacy__deletion-step:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(10px);
}

.mmpage-privacy__step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.mmpage-privacy__step-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-privacy__step-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.mmpage-privacy__contact-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.mmpage-privacy__contact-link:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
    transform: translateY(-2px);
}

.mmpage-privacy__rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mmpage-privacy__rights-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.mmpage-privacy__rights-card:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateY(-5px);
}

.mmpage-privacy__rights-card i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 1rem;
    display: inline-block;
}

.mmpage-privacy__rights-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.mmpage-privacy__rights-card p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-privacy__footer-note {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.mmpage-privacy__footer-note i {
    color: #6366f1;
    font-size: 2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-privacy__footer-note p {
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .mmpage-privacy__intro h1 {
        font-size: 2.5rem;
    }
    
    .mmpage-privacy__section {
        padding: 2rem;
    }
    
    .mmpage-privacy__section-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mmpage-privacy__intro {
        padding: 4rem 1.5rem 2rem;
    }
    
    .mmpage-privacy__intro h1 {
        font-size: 2rem;
    }
    
    .mmpage-privacy__content {
        padding: 2rem 1.5rem;
    }
    
    .mmpage-privacy__section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .mmpage-privacy__section-number {
        font-size: 2.5rem;
    }
    
    .mmpage-privacy__security,
    .mmpage-privacy__rights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mmpage-privacy__intro {
        padding: 3rem 0.3rem 1.5rem;
    }
    
    .mmpage-privacy__intro h1 {
        font-size: 1.75rem;
    }
    
    .mmpage-privacy__intro-subtitle {
        font-size: 1rem;
        padding: 0 0.3rem;
    }
    
    .mmpage-privacy__content {
        padding: 1.5rem 0.3rem;
    }
    
    .mmpage-privacy__section {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .mmpage-privacy__meta-item {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .mmpage-privacy__contact-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-height: 40px;
    }
    
    .mmpage-privacy__disclaimer {
        padding: 1rem;
        margin: 0 0.3rem 2rem;
    }
    
    .mmpage-privacy__footer-note {
        padding: 1.5rem 1rem;
        margin: 2rem 0.3rem 0;
    }

    .mmpage-privacy__deletion-step {
        flex-direction: column;
    }

    .mmpage-privacy__deletion-step a {
        font-size: 0.8rem;
        color: var(--mm-color-nova-pink);
    }
    
    .mmpage-privacy__point,
    .mmpage-privacy__grid-item,
    .mmpage-privacy__security-item,
    .mmpage-privacy__rights-card {
        min-width: 100%;
    }
    
    .mmpage-privacy__transfer-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .mmpage-privacy__intro h1 {
        font-size: 1.5rem;
    }
    
    .mmpage-privacy__intro-icon {
        font-size: 3rem;
    }
    
    .mmpage-privacy__meta {
        flex-direction: column;
        align-items: center;
    }
    
    .mmpage-privacy__section-header h2 {
        font-size: 1.25rem;
    }
    
    .mmpage-privacy__contact-link {
        font-size: 0.7rem;
    }
}

.mmpage-terms {
    position: relative;
    min-height: 100vh;
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
}

.mmpage-terms__particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(30, 41, 59, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(15, 23, 42, 0.6) 0%, transparent 40%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: -1;
}

.mmpage-terms__hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.mmpage-terms__hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.mmpage-terms__hero-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: mmpage-terms-icon-spin 20s linear infinite;
}

@keyframes mmpage-terms-icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mmpage-terms__hero-icon i {
    font-size: 3rem;
    color: white;
}

.mmpage-terms__hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #e2e8f0, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.mmpage-terms__hero-description {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mmpage-terms__hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.mmpage-terms__nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px;
}

.mmpage-terms__nav-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
    color: #e2e8f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.mmpage-terms__nav-link i {
    font-size: 1.25rem;
}

.mmpage-terms__hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.mmpage-terms__decoration-item {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: mmpage-terms-float 15s infinite ease-in-out;
}

.mmpage-terms__decoration-1 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.mmpage-terms__decoration-2 {
    width: 200px;
    height: 200px;
    background: #6366f1;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.mmpage-terms__decoration-3 {
    width: 150px;
    height: 150px;
    background: #3b82f6;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes mmpage-terms-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.mmpage-terms__notice {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 1.25rem 2rem;
}

.mmpage-terms__notice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mmpage-terms__notice i {
    color: #f59e0b;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.mmpage-terms__notice-content {
    flex: 1;
    min-width: 300px;
}

.mmpage-terms__notice-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-terms__notice-content p {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-terms__notice-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mmpage-terms__notice-close:hover {
    color: #e2e8f0;
    transform: rotate(90deg);
}

.mmpage-terms__content-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.mmpage-terms__sidebar {
    flex: 0 0 280px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(30, 41, 59, 0.5);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.mmpage-terms__sidebar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.mmpage-terms__sidebar-header i {
    color: #8b5cf6;
    font-size: 1.5rem;
}

.mmpage-terms__sidebar-header h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: #e2e8f0;
    margin: 0;
}

.mmpage-terms__sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mmpage-terms__sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    min-height: 44px;
}

.mmpage-terms__sidebar-link:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    color: #e2e8f0;
    transform: translateX(5px);
}

.mmpage-terms__sidebar-link.active {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
    color: #e2e8f0;
    font-weight: 500;
}

.mmpage-terms__sidebar-link i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.mmpage-terms__main-content {
    flex: 1;
    min-width: 300px;
}

.mmpage-terms__article {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(30, 41, 59, 0.5);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mmpage-terms__article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6, #6366f1);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s ease;
}

.mmpage-terms__article:hover::before {
    transform: scaleY(1);
}

.mmpage-terms__article:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mmpage-terms__article-header {
    margin-bottom: 2rem;
    position: relative;
}

.mmpage-terms__article-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.mmpage-terms__article h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-terms__article-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 0;
}

.mmpage-terms__article-content {
    color: #94a3b8;
    line-height: 1.7;
}

.mmpage-terms__article-content > p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.mmpage-terms__highlight {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.mmpage-terms__highlight i {
    color: #f59e0b;
    font-size: 2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-terms__highlight h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-terms__highlight p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.mmpage-terms__points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mmpage-terms__point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.mmpage-terms__point:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateX(10px);
}

.mmpage-terms__point-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mmpage-terms__point-icon i {
    color: #8b5cf6;
    font-size: 1.5rem;
}

.mmpage-terms__point-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-terms__point-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.mmpage-terms__requirements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.mmpage-terms__requirement {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.mmpage-terms__requirement:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(10px);
}

.mmpage-terms__requirement-check {
    width: 30px;
    height: 30px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.mmpage-terms__requirement-check i {
    color: white;
    font-size: 1rem;
}

.mmpage-terms__requirement-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-terms__requirement-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.mmpage-terms__account-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mmpage-terms__rule {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.mmpage-terms__rule:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.mmpage-terms__rule i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
    display: inline-block;
}

.mmpage-terms__rule h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.mmpage-terms__rule p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-terms__warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.mmpage-terms__warning i {
    color: #ef4444;
    font-size: 2rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-terms__warning p {
    color: #fca5a5;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.mmpage-terms__conduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mmpage-terms__conduct-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mmpage-terms__conduct-item:hover {
    transform: translateY(-5px);
}

.mmpage-terms__conduct-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.mmpage-terms__conduct-icon.acceptable {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
}

.mmpage-terms__conduct-icon.prohibited {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
}

.mmpage-terms__conduct-icon i {
    font-size: 1.75rem;
}

.mmpage-terms__conduct-icon.acceptable i {
    color: #10b981;
}

.mmpage-terms__conduct-icon.prohibited i {
    color: #ef4444;
}

.mmpage-terms__conduct-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.mmpage-terms__conduct-item p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-terms__responsibilities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mmpage-terms__responsibility {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.mmpage-terms__responsibility:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateX(10px);
}

.mmpage-terms__responsibility-number {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.3);
    line-height: 1;
    flex-shrink: 0;
}

.mmpage-terms__responsibility-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-terms__responsibility-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.mmpage-terms__limitations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mmpage-terms__limitation {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.mmpage-terms__limitation:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateY(-5px);
}

.mmpage-terms__limitation i {
    font-size: 2rem;
    color: #6366f1;
    margin-bottom: 1rem;
    display: inline-block;
}

.mmpage-terms__limitation h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
}

.mmpage-terms__limitation p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-terms__termination-cases {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.mmpage-terms__termination-case {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mmpage-terms__termination-case:hover {
    transform: translateX(10px);
}

.mmpage-terms__case-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mmpage-terms__case-icon.violation {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
}

.mmpage-terms__case-icon.voluntary {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid #8b5cf6;
}

.mmpage-terms__case-icon.technical {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid #3b82f6;
}

.mmpage-terms__case-icon i {
    font-size: 1.5rem;
}

.mmpage-terms__case-icon.violation i {
    color: #ef4444;
}

.mmpage-terms__case-icon.voluntary i {
    color: #8b5cf6;
}

.mmpage-terms__case-icon.technical i {
    color: #3b82f6;
}

.mmpage-terms__case-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-terms__case-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.mmpage-terms__changes-process {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mmpage-terms__process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
    transition: all 0.3s ease;
}

.mmpage-terms__process-step:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(10px);
}

.mmpage-terms__step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.mmpage-terms__step-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-terms__step-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.mmpage-terms__contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mmpage-terms__contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.mmpage-terms__contact-card:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8b5cf6;
    transform: translateX(10px);
}

.mmpage-terms__contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mmpage-terms__contact-icon i {
    color: #8b5cf6;
    font-size: 1.75rem;
}

.mmpage-terms__contact-details h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-terms__contact-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.mmpage-terms__contact-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.mmpage-terms__contact-details p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-terms__final-note {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.mmpage-terms__final-note i {
    color: #8b5cf6;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-terms__final-note p {
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
}

@media (max-width: 1024px) {
    .mmpage-terms__hero h1 {
        font-size: 2.75rem;
    }
    
    .mmpage-terms__content-wrapper {
        flex-direction: column;
    }
    
    .mmpage-terms__sidebar {
        position: static;
        width: 100%;
    }
    
    .mmpage-terms__sidebar-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .mmpage-terms__sidebar-link {
        flex: 1;
        min-width: 200px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mmpage-terms__hero {
        padding: 4rem 1.5rem 3rem;
    }
    
    .mmpage-terms__hero h1 {
        font-size: 2.25rem;
    }
    
    .mmpage-terms__hero-description {
        font-size: 1.125rem;
    }
    
    .mmpage-terms__content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .mmpage-terms__article {
        padding: 2rem;
    }
    
    .mmpage-terms__article h2 {
        font-size: 1.5rem;
    }
    
    .mmpage-terms__account-rules,
    .mmpage-terms__conduct-grid,
    .mmpage-terms__limitations {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mmpage-terms__hero {
        padding: 3rem 0.3rem 2rem;
    }
    
    .mmpage-terms__hero h1 {
        font-size: 1.75rem;
    }
    
    .mmpage-terms__hero-description {
        font-size: 1rem;
        padding: 0 0.3rem;
    }
    
    .mmpage-terms__hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mmpage-terms__nav-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mmpage-terms__notice {
        padding: 1rem 0.3rem;
    }
    
    .mmpage-terms__notice-container {
        padding: 0 0.3rem;
    }
    
    .mmpage-terms__content-wrapper {
        padding: 1.5rem 0.3rem;
        gap: 1.5rem;
    }
    
    .mmpage-terms__sidebar {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .mmpage-terms__sidebar-link {
        min-width: 100%;
        padding: 0.75rem 1rem;
    }

    .mmpage-terms__responsibility,
    .mmpage-terms__termination-case,
    .mmpage-terms__contact-card {
        flex-direction: column;
    }
    
    .mmpage-terms__article {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    .mmpage-terms__contact-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-height: 40px;
        word-break: break-all;
    }
    
    .mmpage-terms__point,
    .mmpage-terms__rule,
    .mmpage-terms__conduct-item,
    .mmpage-terms__limitation {
        min-width: 100%;
    }
    
    .mmpage-terms__highlight,
    .mmpage-terms__warning,
    .mmpage-terms__final-note {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

@media (max-width: 320px) {
    .mmpage-terms__hero h1 {
        font-size: 1.5rem;
    }
    
    .mmpage-terms__hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .mmpage-terms__hero-icon i {
        font-size: 2.5rem;
    }
    
    .mmpage-terms__article-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .mmpage-terms__article h2 {
        font-size: 1.25rem;
    }
    
    .mmpage-terms__contact-link {
        font-size: 0.7rem;
    }
}

.mmpage-responsible {
    position: relative;
    min-height: 100vh;
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
}

.mmpage-responsible__background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(30, 41, 59, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(15, 23, 42, 0.6) 0%, transparent 40%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: -1;
}

.mmpage-responsible__hero {
    padding: 6rem 2rem 4rem;
    position: relative;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.mmpage-responsible__hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.mmpage-responsible__hero-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: mmpage-responsible-heartbeat 2s ease-in-out infinite;
}

@keyframes mmpage-responsible-heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mmpage-responsible__hero-icon i {
    font-size: 3rem;
    color: white;
}

.mmpage-responsible__hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #e2e8f0, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.mmpage-responsible__hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.mmpage-responsible__hero-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mmpage-responsible__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.mmpage-responsible__tag:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    transform: translateY(-2px);
}

.mmpage-responsible__tag i {
    color: #ef4444;
    font-size: 1rem;
}

.mmpage-responsible__hero-visual {
    flex: 1;
    min-width: 230px;
    max-width: 500px;
}

.mmpage-responsible__visual-element {
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mmpage-responsible__visual-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(239, 68, 68, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(249, 115, 22, 0.2) 0%, transparent 50%);
    animation: mmpage-responsible-float 20s infinite linear;
}

@keyframes mmpage-responsible-float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mmpage-responsible__introduction {
    padding: 4rem 2rem;
    background: rgba(15, 23, 42, 0.7);
}

.mmpage-responsible__intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.mmpage-responsible__intro-text {
    flex: 1;
    min-width: 230px;
}

.mmpage-responsible__intro-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.mmpage-responsible__intro-text p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.125rem;
}

.mmpage-responsible__intro-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.mmpage-responsible__stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.mmpage-responsible__stat:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    transform: translateY(-5px);
}

.mmpage-responsible__stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0.5rem;
}

.mmpage-responsible__stat-label {
    color: #cbd5e1;
    font-size: 0.875rem;
}

.mmpage-responsible__principles {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mmpage-responsible__principles-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mmpage-responsible__principles-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-responsible__principles-header p {
    color: #94a3b8;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mmpage-responsible__principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mmpage-responsible__principle {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(30, 41, 59, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mmpage-responsible__principle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ef4444, #f97316);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s ease;
}

.mmpage-responsible__principle:hover::before {
    transform: scaleY(1);
}

.mmpage-responsible__principle:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
}

.mmpage-responsible__principle-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mmpage-responsible__principle-icon i {
    color: #ef4444;
    font-size: 1.75rem;
}

.mmpage-responsible__principle h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-responsible__principle p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mmpage-responsible__tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mmpage-responsible__tips li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.mmpage-responsible__tips li i {
    color: #10b981;
    font-size: 1rem;
}

.mmpage-responsible__warning-signs {
    padding: 4rem 2rem;
    background: rgba(15, 23, 42, 0.7);
}

.mmpage-responsible__warning-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mmpage-responsible__warning-header i {
    font-size: 3rem;
    color: #f59e0b;
}

.mmpage-responsible__warning-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #e2e8f0;
}

.mmpage-responsible__warning-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mmpage-responsible__healthy h3,
.mmpage-responsible__concerns h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.mmpage-responsible__concerns h3 {
    border-bottom-color: rgba(245, 158, 11, 0.3);
}

.mmpage-responsible__indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mmpage-responsible__indicator {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mmpage-responsible__indicator:hover {
    transform: translateX(10px);
}

.mmpage-responsible__indicator.positive {
    border-left: 4px solid #10b981;
}

.mmpage-responsible__indicator.caution {
    border-left: 4px solid #f59e0b;
}

.mmpage-responsible__indicator i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-responsible__indicator.positive i {
    color: #10b981;
}

.mmpage-responsible__indicator.caution i {
    color: #f59e0b;
}

.mmpage-responsible__indicator h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-responsible__indicator p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-responsible__tools {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mmpage-responsible__tools h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-responsible__tools-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mmpage-responsible__tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mmpage-responsible__tool {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(30, 41, 59, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

.mmpage-responsible__tool:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.mmpage-responsible__tool-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mmpage-responsible__tool-icon i {
    color: #3b82f6;
    font-size: 2rem;
}

.mmpage-responsible__tool h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-responsible__tool p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.mmpage-responsible__tool-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mmpage-responsible__tool-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    justify-content: center;
}

.mmpage-responsible__tool-benefits i {
    color: #10b981;
    font-size: 1rem;
}

.mmpage-responsible__resources {
    padding: 4rem 2rem;
    background: rgba(15, 23, 42, 0.7);
}

.mmpage-responsible__resources-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mmpage-responsible__resources-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-responsible__resources-header p {
    color: #94a3b8;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mmpage-responsible__resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mmpage-responsible__resource {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(30, 41, 59, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

.mmpage-responsible__resource:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.mmpage-responsible__resource-logo {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mmpage-responsible__resource-logo i {
    color: #8b5cf6;
    font-size: 2rem;
}

.mmpage-responsible__resource h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-responsible__resource p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.mmpage-responsible__resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b5cf6;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    min-height: 44px;
    justify-content: center;
}

.mmpage-responsible__resource-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.mmpage-responsible__contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mmpage-responsible__contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.mmpage-responsible__contact-info {
    flex: 1;
    min-width: 230px;
}

.mmpage-responsible__contact-info h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-responsible__contact-info p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mmpage-responsible__contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mmpage-responsible__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.mmpage-responsible__contact-item:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    transform: translateX(10px);
}

.mmpage-responsible__contact-item i {
    color: #ef4444;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-responsible__contact-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-responsible__email-link {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.mmpage-responsible__email-link:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: translateY(-2px);
}

.mmpage-responsible__contact-item p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-responsible__reminder {
    flex: 1;
    min-width: 230px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.mmpage-responsible__reminder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
}

.mmpage-responsible__reminder-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mmpage-responsible__reminder-icon i {
    color: #ef4444;
    font-size: 2rem;
}

.mmpage-responsible__reminder h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-responsible__reminder p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mmpage-responsible__age-restriction {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.mmpage-responsible__age-restriction i {
    color: #ef4444;
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .mmpage-responsible__hero h1 {
        font-size: 2.75rem;
    }
    
    .mmpage-responsible__principles-header h2,
    .mmpage-responsible__tools h2,
    .mmpage-responsible__resources-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mmpage-responsible__hero {
        padding: 4rem 1.5rem 3rem;
        flex-direction: column;
        text-align: center;
    }
    
    .mmpage-responsible__hero h1 {
        font-size: 2.25rem;
    }
    
    .mmpage-responsible__hero-subtitle {
        font-size: 1.125rem;
    }
    
    .mmpage-responsible__intro-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mmpage-responsible__intro-stats {
        justify-content: center;
    }
    
    .mmpage-responsible__principles-grid,
    .mmpage-responsible__warning-container,
    .mmpage-responsible__tools-grid,
    .mmpage-responsible__resources-grid {
        grid-template-columns: 1fr;
    }
    
    .mmpage-responsible__contact-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .mmpage-responsible__hero {
        padding: 3rem 0.3rem 2rem;
    }
    
    .mmpage-responsible__hero h1 {
        font-size: 1.75rem;
    }
    
    .mmpage-responsible__hero-subtitle {
        font-size: 1rem;
        padding: 0 0.3rem;
    }
    
    .mmpage-responsible__introduction,
    .mmpage-responsible__principles,
    .mmpage-responsible__warning-signs,
    .mmpage-responsible__tools,
    .mmpage-responsible__resources,
    .mmpage-responsible__contact {
        padding: 2rem 0.3rem;
    }
    
    .mmpage-responsible__intro-text h2,
    .mmpage-responsible__principles-header h2,
    .mmpage-responsible__warning-header h2,
    .mmpage-responsible__tools h2,
    .mmpage-responsible__resources-header h2,
    .mmpage-responsible__contact-info h2 {
        font-size: 1.5rem;
    }
    
    .mmpage-responsible__principle,
    .mmpage-responsible__tool,
    .mmpage-responsible__resource {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .mmpage-responsible__email-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-height: 40px;
    }
    
    .mmpage-responsible__resource-link {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        min-height: 40px;
    }
    
    .mmpage-responsible__contact-item {
        padding: 1rem;
    }
    
    .mmpage-responsible__reminder {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 320px) {
    .mmpage-responsible__hero h1 {
        font-size: 1.5rem;
    }
    
    .mmpage-responsible__hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .mmpage-responsible__hero-icon i {
        font-size: 2.5rem;
    }
    
    .mmpage-responsible__stat {
        min-width: 100px;
        padding: 1rem;
    }
    
    .mmpage-responsible__stat-number {
        font-size: 2rem;
    }
    
    .mmpage-responsible__email-link {
        font-size: 0.7rem;
    }
}

.mmpage-cookie {
    position: relative;
    min-height: 100vh;
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
}

.mmpage-cookie__background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 41, 59, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 23, 42, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: -1;
}

.mmpage-cookie__header {
    padding: 5rem 2rem 3rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.mmpage-cookie__header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mmpage-cookie__header-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: mmpage-cookie-spin 10s linear infinite;
}

@keyframes mmpage-cookie-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.mmpage-cookie__header-icon i {
    font-size: 3rem;
    color: white;
}

.mmpage-cookie__header h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #e2e8f0, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.mmpage-cookie__header-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.mmpage-cookie__header-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mmpage-cookie__consent-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border: none;
    border-radius: 50px;
    color: #1e293b;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.mmpage-cookie__consent-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.mmpage-cookie__manage-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 50px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px;
}

.mmpage-cookie__manage-link:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #e2e8f0;
    transform: translateY(-3px);
}

.mmpage-cookie__explanation {
    padding: 4rem 2rem;
    background: rgba(15, 23, 42, 0.7);
}

.mmpage-cookie__explanation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.mmpage-cookie__explanation-content {
    flex: 1;
    min-width: 230px;
}

.mmpage-cookie__explanation-content h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.mmpage-cookie__explanation-content p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.mmpage-cookie__explanation-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mmpage-cookie__point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.mmpage-cookie__point:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    transform: translateX(10px);
}

.mmpage-cookie__point i {
    color: #f59e0b;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-cookie__point h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-cookie__point p {
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

.mmpage-cookie__visual {
    flex: 1;
    min-width: 230px;
}

.mmpage-cookie__visual-element {
    width: 250px;
    height: 250px;
    position: relative;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.mmpage-cookie__cookie-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    animation: mmpage-cookie-float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.8;
}

.mmpage-cookie__cookie-item:nth-child(1) {
    top: 20%;
    left: 20%;
}

.mmpage-cookie__cookie-item:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mmpage-cookie__cookie-item:nth-child(3) {
    top: 70%;
    left: 70%;
}

@keyframes mmpage-cookie-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.mmpage-cookie__types {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mmpage-cookie__types h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-cookie__types-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mmpage-cookie__categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mmpage-cookie__category {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(30, 41, 59, 0.5);
    transition: all 0.3s ease;
}

.mmpage-cookie__category:hover {
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.mmpage-cookie__category-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(30, 41, 59, 0.5);
}

.mmpage-cookie__category-header.essential {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
}

.mmpage-cookie__category-header.functional {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
}

.mmpage-cookie__category-header.analytical {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid #8b5cf6;
}

.mmpage-cookie__category-header i {
    font-size: 2rem;
    flex-shrink: 0;
}

.mmpage-cookie__category-header.essential i {
    color: #ef4444;
}

.mmpage-cookie__category-header.functional i {
    color: #3b82f6;
}

.mmpage-cookie__category-header.analytical i {
    color: #8b5cf6;
}

.mmpage-cookie__category-header h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    color: #e2e8f0;
    margin: 0;
    flex: 1;
}

.mmpage-cookie__category-status {
    padding: 0.5rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

.mmpage-cookie__category-status.optional {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.mmpage-cookie__category-content {
    padding: 2rem;
}

.mmpage-cookie__category-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mmpage-cookie__category-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.mmpage-cookie__detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.875rem;
}

.mmpage-cookie__detail i {
    color: #10b981;
    font-size: 1rem;
}

.mmpage-cookie__category-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.mmpage-cookie__category-note i {
    color: #f59e0b;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.mmpage-cookie__toggle-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.mmpage-cookie__toggle-btn:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
}

.mmpage-cookie__toggle-switch {
    width: 50px;
    height: 26px;
    background: rgba(100, 116, 139, 0.5);
    border-radius: 13px;
    position: relative;
    transition: all 0.3s ease;
}

.mmpage-cookie__toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mmpage-cookie__toggle-btn.active .mmpage-cookie__toggle-switch {
    background: rgba(16, 185, 129, 0.5);
}

.mmpage-cookie__toggle-btn.active .mmpage-cookie__toggle-switch::after {
    transform: translateX(24px);
}

.mmpage-cookie__duration {
    padding: 4rem 2rem;
    background: rgba(15, 23, 42, 0.7);
}

.mmpage-cookie__duration h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-cookie__duration-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mmpage-cookie__duration-chart {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mmpage-cookie__duration-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(30, 41, 59, 0.5);
    transition: all 0.3s ease;
}

.mmpage-cookie__duration-item:hover {
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateX(10px);
}

.mmpage-cookie__duration-bar {
    width: 120px;
    height: 8px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.mmpage-cookie__duration-bar.session {
    width: 60px;
}

.mmpage-cookie__duration-bar.persistent {
    width: 90px;
}

.mmpage-cookie__duration-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 4px;
    animation: mmpage-cookie-fill 2s ease-in-out infinite;
}

@keyframes mmpage-cookie-fill {
    0%, 100% { width: 30%; }
    50% { width: 70%; }
}

.mmpage-cookie__duration-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-cookie__duration-info p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mmpage-cookie__duration-time {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.mmpage-cookie__management {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mmpage-cookie__management-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mmpage-cookie__management-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-cookie__management-header p {
    color: #94a3b8;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.mmpage-cookie__management-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.mmpage-cookie__browser-controls,
.mmpage-cookie__platform-controls {
    flex: 1;
    min-width: 230px;
}

.mmpage-cookie__browser-controls h3,
.mmpage-cookie__platform-controls h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-cookie__browser-controls p,
.mmpage-cookie__platform-controls p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mmpage-cookie__browser-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.mmpage-cookie__browser {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.mmpage-cookie__browser:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    transform: translateY(-3px);
}

.mmpage-cookie__browser i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    display: inline-block;
}

.mmpage-cookie__browser h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-cookie__browser p {
    color: #94a3b8;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

.mmpage-cookie__control-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mmpage-cookie__control-option {
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.mmpage-cookie__control-option:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    transform: translateY(-3px);
}

.mmpage-cookie__control-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mmpage-cookie__control-header i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.mmpage-cookie__control-header h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin: 0;
}

.mmpage-cookie__control-option p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.mmpage-cookie__clear-btn,
.mmpage-cookie__reset-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    border: none;
}

.mmpage-cookie__clear-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.mmpage-cookie__reset-btn {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.mmpage-cookie__clear-btn:hover,
.mmpage-cookie__reset-btn:hover {
    transform: translateY(-2px);
}

.mmpage-cookie__clear-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.mmpage-cookie__reset-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.mmpage-cookie__third-party {
    padding: 4rem 2rem;
    background: rgba(15, 23, 42, 0.7);
}

.mmpage-cookie__third-party h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-cookie__third-party-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mmpage-cookie__third-party-content {
    max-width: 800px;
    margin: 0 auto;
}

.mmpage-cookie__third-party-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.mmpage-cookie__third-party-note i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-cookie__third-party-note p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.mmpage-cookie__services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mmpage-cookie__service {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.mmpage-cookie__service:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    transform: translateX(10px);
}

.mmpage-cookie__service-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mmpage-cookie__service-icon i {
    color: #f59e0b;
    font-size: 1.5rem;
}

.mmpage-cookie__service-info h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-cookie__service-info p {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mmpage-cookie__service-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.mmpage-cookie__service-type.optional {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.mmpage-cookie__contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mmpage-cookie__contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.mmpage-cookie__contact-info {
    flex: 1;
    min-width: 230px;
}

.mmpage-cookie__contact-info h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-cookie__contact-info p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mmpage-cookie__contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mmpage-cookie__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.mmpage-cookie__contact-item:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    transform: translateX(10px);
}

.mmpage-cookie__contact-item i {
    color: #f59e0b;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-cookie__contact-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-cookie__email-link {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.mmpage-cookie__email-link:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
    transform: translateY(-2px);
}

.mmpage-cookie__contact-item p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-cookie__policy-note {
    flex: 1;
    min-width: 230px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.mmpage-cookie__policy-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
}

.mmpage-cookie__policy-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mmpage-cookie__policy-icon i {
    color: #f59e0b;
    font-size: 2rem;
}

.mmpage-cookie__policy-note h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.mmpage-cookie__policy-note p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mmpage-cookie__update-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.mmpage-cookie__update-info i {
    color: #f59e0b;
    font-size: 1.25rem;
}

.mmpage-cookie__notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transform: translateY(150%);
    transition: transform 0.6s ease;
    max-width: 500px;
    margin: 0 auto;
}

.mmpage-cookie__notification.show {
    transform: translateY(0);
}

.mmpage-cookie__notification-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mmpage-cookie__notification-content i {
    font-size: 2.5rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.mmpage-cookie__notification-text {
    flex: 1;
    min-width: 200px;
}

.mmpage-cookie__notification-text h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-cookie__notification-text p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-cookie__notification-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mmpage-cookie__notification-accept,
.mmpage-cookie__notification-manage {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    border: none;
}

.mmpage-cookie__notification-accept {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e293b;
}

.mmpage-cookie__notification-manage {
    background: rgba(30, 41, 59, 0.7);
    color: #cbd5e1;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.mmpage-cookie__notification-accept:hover,
.mmpage-cookie__notification-manage:hover {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .mmpage-cookie__header h1 {
        font-size: 2.5rem;
    }
    
    .mmpage-cookie__types h2,
    .mmpage-cookie__duration h2,
    .mmpage-cookie__management-header h2,
    .mmpage-cookie__third-party h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mmpage-cookie__header {
        padding: 4rem 1.5rem 2rem;
    }
    
    .mmpage-cookie__header h1 {
        font-size: 2rem;
    }
    
    .mmpage-cookie__header-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mmpage-cookie__consent-btn,
    .mmpage-cookie__manage-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .mmpage-cookie__explanation-container {
        flex-direction: column;
        text-align: center;
    }
    
    .mmpage-cookie__management-content {
        flex-direction: column;
    }
    
    .mmpage-cookie__contact-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .mmpage-cookie__header {
        padding: 3rem 0.3rem 1.5rem;
    }
    
    .mmpage-cookie__header h1 {
        font-size: 1.75rem;
    }
    
    .mmpage-cookie__header-subtitle {
        font-size: 1rem;
        padding: 0 0.3rem;
    }
    
    .mmpage-cookie__explanation,
    .mmpage-cookie__types,
    .mmpage-cookie__duration,
    .mmpage-cookie__management,
    .mmpage-cookie__third-party,
    .mmpage-cookie__contact {
        padding: 2rem 0.3rem;
    }
    
    .mmpage-cookie__explanation-content h2,
    .mmpage-cookie__types h2,
    .mmpage-cookie__duration h2,
    .mmpage-cookie__management-header h2,
    .mmpage-cookie__third-party h2,
    .mmpage-cookie__contact-info h2 {
        font-size: 1.5rem;
    }
    
    .mmpage-cookie__category-header {
        padding: 1.5rem 1rem;
        flex-wrap: wrap;
    }
    
    .mmpage-cookie__category-content {
        padding: 1.5rem 1rem;
    }
    
    .mmpage-cookie__duration-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mmpage-cookie__duration-bar {
        width: 100%;
        max-width: 200px;
    }
    
    .mmpage-cookie__email-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        min-height: 40px;
    }
    
    .mmpage-cookie__notification {
        left: 0.3rem;
        right: 0.3rem;
        bottom: 0.3rem;
    }
    
    .mmpage-cookie__notification-content {
        flex-direction: column;
        text-align: center;
    }

    .mmpage-cookie__point {
        flex-direction: column;
        padding: 1.5rem 0.2rem;
    }
}

@media (max-width: 320px) {
    .mmpage-cookie__header h1 {
        font-size: 1.5rem;
    }
    
    .mmpage-cookie__header-icon {
        width: 80px;
        height: 80px;
    }
    
    .mmpage-cookie__header-icon i {
        font-size: 2.5rem;
    }
    
    .mmpage-cookie__category-header h3 {
        font-size: 1.25rem;
    }
    
    .mmpage-cookie__email-link {
        font-size: 0.7rem;
    }
}

.mmpage-notfound {
    position: relative;
    min-height: 100vh;
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'Inter Tight', sans-serif;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mmpage-notfound__background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(30, 41, 59, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 23, 42, 0.6) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: -1;
}

.mmpage-notfound__content {
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.mmpage-notfound__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.mmpage-notfound__illustration {
    flex: 1;
    min-width: 230px;
    max-width: 500px;
    position: relative;
}

.mmpage-notfound__illustration-main {
    width: 260px;
    height: 260px;
    position: relative;
}

.mmpage-notfound__orb {
    position: absolute;
    border-radius: 50%;
    animation: mmpage-notfound-orb-float 15s ease-in-out infinite;
    filter: blur(20px);
}

.mmpage-notfound__orb-1 {
    width: 200px;
    height: 200px;
    background: rgba(99, 102, 241, 0.3);
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.mmpage-notfound__orb-2 {
    width: 150px;
    height: 150px;
    background: rgba(139, 92, 246, 0.3);
    top: 150px;
    right: 50px;
    animation-delay: 5s;
}

.mmpage-notfound__orb-3 {
    width: 100px;
    height: 100px;
    background: rgba(239, 68, 68, 0.3);
    bottom: 50px;
    left: 150px;
    animation-delay: 10s;
}

@keyframes mmpage-notfound-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.1); }
    66% { transform: translate(-10px, 10px) scale(0.9); }
}

.mmpage-notfound__central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mmpage-notfound-pulse 4s ease-in-out infinite;
}

@keyframes mmpage-notfound-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.mmpage-notfound__central i {
    font-size: 5rem;
    color: rgba(99, 102, 241, 0.8);
    animation: mmpage-notfound-icon-spin 20s linear infinite;
}

@keyframes mmpage-notfound-icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mmpage-notfound__illustration-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(99, 102, 241, 0.1);
    line-height: 1;
    -webkit-text-stroke: 2px rgba(99, 102, 241, 0.3);
    text-stroke: 2px rgba(99, 102, 241, 0.3);
}

.mmpage-notfound__text {
    flex: 1;
    min-width: 230px;
    max-width: 600px;
}

.mmpage-notfound__text h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #e2e8f0, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.mmpage-notfound__subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mmpage-notfound__message {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.mmpage-notfound__message i {
    color: #6366f1;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-notfound__message p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.mmpage-notfound__suggestions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.mmpage-notfound__suggestion {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(30, 41, 59, 0.5);
    transition: all 0.3s ease;
}

.mmpage-notfound__suggestion:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateX(10px);
}

.mmpage-notfound__suggestion i {
    color: #6366f1;
    font-size: 1.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.mmpage-notfound__suggestion h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.125rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.mmpage-notfound__suggestion p {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.mmpage-notfound__actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.mmpage-notfound__primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.mmpage-notfound__primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.mmpage-notfound__secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 50px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.mmpage-notfound__secondary-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    color: #e2e8f0;
    transform: translateY(-3px);
}

.mmpage-notfound__platform-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 41, 59, 0.5);
}

.mmpage-notfound__info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.mmpage-notfound__info-item:hover {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.mmpage-notfound__info-item i {
    color: #6366f1;
    font-size: 1rem;
}

.mmpage-notfound__decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mmpage-notfound__decoration-item {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    animation: mmpage-notfound-fall linear infinite;
}

.mmpage-notfound__decoration-item:nth-child(1) {
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.mmpage-notfound__decoration-item:nth-child(2) {
    left: 50%;
    animation-duration: 20s;
    animation-delay: 5s;
}

.mmpage-notfound__decoration-item:nth-child(3) {
    left: 90%;
    animation-duration: 25s;
    animation-delay: 10s;
}

@keyframes mmpage-notfound-fall {
    0% {
        top: -100px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .mmpage-notfound__text h1 {
        font-size: 2.75rem;
    }
    
    .mmpage-notfound__illustration-text {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .mmpage-notfound__container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .mmpage-notfound__text h1 {
        font-size: 2.25rem;
    }
    
    .mmpage-notfound__subtitle {
        font-size: 1.125rem;
    }
    
    .mmpage-notfound__illustration {
        order: -1;
    }
    
    .mmpage-notfound__illustration-main {
        height: 300px;
    }
    
    .mmpage-notfound__central {
        width: 150px;
        height: 150px;
    }
    
    .mmpage-notfound__central i {
        font-size: 4rem;
    }
    
    .mmpage-notfound__illustration-text {
        font-size: 5rem;
    }
    
    .mmpage-notfound__message {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mmpage-notfound__suggestion {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .mmpage-notfound__platform-info {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mmpage-notfound {
        padding: 1rem;
    }
    
    .mmpage-notfound__text h1 {
        font-size: 1.75rem;
    }
    
    .mmpage-notfound__subtitle {
        font-size: 1rem;
    }
    
    .mmpage-notfound__actions {
        flex-direction: column;
    }
    
    .mmpage-notfound__primary-btn,
    .mmpage-notfound__secondary-btn {
        width: 100%;
    }
    
    .mmpage-notfound__platform-info {
        flex-direction: column;
        align-items: center;
    }
    
    .mmpage-notfound__info-item {
        width: 100%;
        justify-content: center;
    }
    
    .mmpage-notfound__illustration-text {
        font-size: 4rem;
    }
}

@media (max-width: 320px) {
    .mmpage-notfound__text h1 {
        font-size: 1.5rem;
    }
    
    .mmpage-notfound__central {
        width: 120px;
        height: 120px;
    }
    
    .mmpage-notfound__central i {
        font-size: 3rem;
    }
    
    .mmpage-notfound__illustration-text {
        font-size: 3rem;
    }
}