/* ========================================
   MapleFrostHarbor - Premium Gaming Platform
   ======================================== */

/* CSS Variables */
:root {
    --mfh-bg-primary: #0B1220;
    --mfh-bg-secondary: #0F1B2D;
    --mfh-bg-card: #121E33;
    --mfh-bg-card-hover: #162543;
    --mfh-text-primary: #F2F6FF;
    --mfh-text-secondary: #B6C3DD;
    --mfh-accent-maple: #F2A74B;
    --mfh-accent-maple-red: #D65B4A;
    --mfh-accent-frost: #78B7FF;
    --mfh-accent-frost-light: #9FE3FF;
    --mfh-border: rgba(255, 255, 255, 0.10);
    --mfh-gradient-hero: linear-gradient(135deg, #0B1220 0%, #0F1B2D 45%, #162543 100%);
    --mfh-gradient-accent: linear-gradient(135deg, #F2A74B 0%, #D65B4A 60%, #78B7FF 120%);
    --mfh-gradient-frost: linear-gradient(135deg, #78B7FF 0%, #9FE3FF 100%);
    --mfh-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --mfh-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.2);
    --mfh-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --mfh-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--mfh-gradient-hero);
    background-attachment: fixed;
    color: var(--mfh-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.mfh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Popup */
.mfh-cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.mfh-cookie-overlay.mfh-hidden {
    opacity: 0;
    pointer-events: none;
}

.mfh-cookie-container {
    background: var(--mfh-bg-card);
    border: 1px solid var(--mfh-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--mfh-shadow-lg);
    animation: mfhSlideUp 0.5s ease;
}

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

.mfh-cookie-icon {
    font-size: 48px;
    color: var(--mfh-accent-maple);
    margin-bottom: 20px;
}

.mfh-cookie-title {
    font-size: 24px;
    color: var(--mfh-text-primary);
    margin-bottom: 15px;
}

.mfh-cookie-text {
    color: var(--mfh-text-secondary);
    margin-bottom: 25px;
}

.mfh-cookie-link {
    color: var(--mfh-accent-frost);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--mfh-transition);
}

.mfh-cookie-link:hover {
    border-bottom-color: var(--mfh-accent-frost);
}

.mfh-cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mfh-cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--mfh-transition);
}

.mfh-btn-accept {
    background: var(--mfh-gradient-accent);
    color: white;
}

.mfh-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--mfh-shadow-md);
}

.mfh-btn-decline {
    background: transparent;
    color: var(--mfh-text-secondary);
    border: 1px solid var(--mfh-border);
}

.mfh-btn-decline:hover {
    background: var(--mfh-bg-card-hover);
    color: var(--mfh-text-primary);
}

/* Header */
.mfh-header {
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mfh-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--mfh-transition);
}

.mfh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.mfh-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--mfh-transition);
}

.mfh-logo:hover {
    transform: scale(1.02);
}

.mfh-logo-icon {
    font-size: 32px;
    background: var(--mfh-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mfh-logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--mfh-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mfh-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mfh-nav-link {
    color: var(--mfh-text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--mfh-transition);
    position: relative;
}

.mfh-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mfh-gradient-accent);
    transition: var(--mfh-transition);
}

.mfh-nav-link:hover,
.mfh-nav-link.mfh-active {
    color: var(--mfh-text-primary);
}

.mfh-nav-link:hover::after,
.mfh-nav-link.mfh-active::after {
    width: 100%;
}

.mfh-nav-btn {
    background: var(--mfh-gradient-accent);
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--mfh-transition);
    box-shadow: 0 4px 15px rgba(242, 167, 75, 0.3);
}

.mfh-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 167, 75, 0.4);
}

.mfh-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mfh-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--mfh-text-primary);
    border-radius: 2px;
    transition: var(--mfh-transition);
}

/* Hero Section */
.mfh-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mfh-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        url('img/fon.png') center center / cover no-repeat,
        radial-gradient(ellipse at 20% 50%, rgba(11, 18, 32, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(15, 27, 45, 0.5) 0%, transparent 50%),
        var(--mfh-gradient-hero);
    filter: blur(3px);
    transform: scale(1.02);
    z-index: -1;
}

.mfh-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(120, 183, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: mfhFloat 20s linear infinite;
    z-index: -1;
}

@keyframes mfhFloat {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.mfh-hero-content {
    text-align: center;
    padding: 60px 20px;
}

.mfh-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: mfhFadeInUp 0.8s ease;
}

.mfh-gradient-text {
    background: var(--mfh-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.mfh-hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--mfh-text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: mfhFadeInUp 0.8s ease 0.2s both;
}

.mfh-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: mfhFadeInUp 0.8s ease 0.4s both;
}

.mfh-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--mfh-transition);
    cursor: pointer;
    border: none;
}

.mfh-btn-primary {
    background: var(--mfh-gradient-accent);
    color: white;
    box-shadow: 0 4px 20px rgba(242, 167, 75, 0.3);
}

.mfh-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(242, 167, 75, 0.4);
}

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

.mfh-btn-secondary:hover {
    background: var(--mfh-accent-frost);
    color: var(--mfh-bg-primary);
}

/* Section Styles */
.mfh-about,
.mfh-features,
.mfh-games {
    padding: 100px 0;
}

.mfh-stats {
    padding: 80px 0;
    background: var(--mfh-bg-card);
}

.mfh-cta {
    padding: 100px 0;
}

.mfh-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mfh-section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.mfh-section-divider {
    width: 80px;
    height: 4px;
    background: var(--mfh-gradient-accent);
    border-radius: 2px;
    margin: 0 auto;
}

/* About Section */
.mfh-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.mfh-about-text {
    font-size: 18px;
    color: var(--mfh-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

/* Stats Section */
.mfh-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mfh-stat-card {
    background: var(--mfh-bg-card-hover);
    border: 1px solid var(--mfh-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--mfh-transition);
}

.mfh-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--mfh-gradient-accent);
    transform: scaleX(0);
    transition: var(--mfh-transition);
}

.mfh-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mfh-shadow-md);
}

.mfh-stat-card:hover::before {
    transform: scaleX(1);
}

.mfh-stat-number {
    font-size: 56px;
    font-weight: 800;
    background: var(--mfh-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.mfh-stat-label {
    font-size: 18px;
    color: var(--mfh-text-secondary);
    margin-bottom: 10px;
}

.mfh-stat-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--mfh-border);
    opacity: 0.3;
}

/* Features Section */
.mfh-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mfh-feature-card {
    background: var(--mfh-bg-card);
    border: 1px solid var(--mfh-border);
    border-radius: 16px;
    padding: 35px;
    transition: var(--mfh-transition);
}

.mfh-feature-card:hover {
    transform: translateY(-5px);
    background: var(--mfh-bg-card-hover);
    box-shadow: var(--mfh-shadow-md);
}

.mfh-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--mfh-gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mfh-feature-icon {
    font-size: 32px;
    color: white;
}

.mfh-feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--mfh-text-primary);
}

.mfh-feature-description {
    color: var(--mfh-text-secondary);
    line-height: 1.7;
}

/* Games Section */
.mfh-games-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mfh-game-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--mfh-bg-card);
    border: 1px solid var(--mfh-border);
    border-radius: 24px;
    padding: 30px;
    transition: var(--mfh-transition);
}

.mfh-game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mfh-shadow-lg);
}

.mfh-game-image {
    aspect-ratio: 16/9;
    background: url('img/game.webp') center center / cover no-repeat;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.mfh-game-image::after {
    content: '\f135';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    opacity: 0;
    transition: var(--mfh-transition);
}

.mfh-game-card:hover .mfh-game-image::after {
    opacity: 1;
}

.mfh-game-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.mfh-game-badge {
    background: var(--mfh-accent-maple);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.mfh-game-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mfh-game-description {
    color: var(--mfh-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mfh-game-features {
    list-style: none;
    margin-bottom: 25px;
}

.mfh-game-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mfh-text-secondary);
    margin-bottom: 10px;
}

.mfh-game-features i {
    color: var(--mfh-accent-frost);
}

.mfh-btn-game {
    background: var(--mfh-gradient-accent);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--mfh-transition);
}

.mfh-btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(242, 167, 75, 0.4);
}

/* CTA Section */
.mfh-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mfh-cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.mfh-cta-text {
    font-size: 20px;
    color: var(--mfh-text-secondary);
    margin-bottom: 40px;
}

.mfh-btn-cta {
    background: var(--mfh-gradient-accent);
    color: white;
    font-size: 20px;
    padding: 18px 45px;
}

.mfh-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(242, 167, 75, 0.5);
}

/* Responsible Gaming Section in Footer */
.mfh-responsible-gaming {
    background: rgba(120, 183, 255, 0.08);
    border: 1px solid rgba(120, 183, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.mfh-rg-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mfh-rg-icon {
    font-size: 28px;
    color: var(--mfh-accent-frost);
}

.mfh-rg-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--mfh-text-primary);
}

.mfh-rg-text {
    color: var(--mfh-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.mfh-rg-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.mfh-rg-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--mfh-bg-secondary);
    border-radius: 10px;
    font-size: 14px;
    color: var(--mfh-text-secondary);
}

.mfh-rg-tip i {
    color: var(--mfh-accent-frost);
    font-size: 16px;
}

/* Contact Info in Footer */
.mfh-footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: var(--mfh-bg-secondary);
    border: 1px solid var(--mfh-border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.mfh-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.mfh-footer-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--mfh-gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mfh-footer-contact-icon i {
    font-size: 18px;
    color: white;
}

.mfh-footer-contact-info {
    display: flex;
    flex-direction: column;
}

.mfh-footer-contact-label {
    font-size: 12px;
    color: var(--mfh-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mfh-footer-contact-value {
    font-size: 14px;
    color: var(--mfh-text-primary);
    font-weight: 500;
}

/* Responsible Gaming Logos in Footer */
.mfh-footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 25px 0;
    margin-bottom: 20px;
}

.mfh-footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 60px;
    background: var(--mfh-bg-secondary);
    border: 1px solid var(--mfh-border);
    border-radius: 10px;
    transition: var(--mfh-transition);
}

.mfh-footer-logo-link:hover {
    background: var(--mfh-bg-card-hover);
    border-color: var(--mfh-accent-frost);
    transform: translateY(-3px);
}

.mfh-footer-logo-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Footer */
.mfh-footer {
    background: var(--mfh-bg-card);
    border-top: 1px solid var(--mfh-border);
    padding: 40px 0 30px;
    margin-top: 60px;
}

.mfh-disclaimer-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(214, 91, 74, 0.1);
    border: 1px solid rgba(214, 91, 74, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 40px;
}

.mfh-disclaimer-icon {
    font-size: 24px;
    color: var(--mfh-accent-maple-red);
}

.mfh-disclaimer-text {
    color: var(--mfh-text-secondary);
    font-size: 14px;
}

.mfh-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.mfh-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mfh-footer-logo i {
    color: var(--mfh-accent-frost);
}

.mfh-footer-description {
    color: var(--mfh-text-secondary);
    line-height: 1.7;
}

.mfh-footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--mfh-text-primary);
}

.mfh-footer-links {
    list-style: none;
}

.mfh-footer-links li {
    margin-bottom: 12px;
}

.mfh-footer-links a {
    color: var(--mfh-text-secondary);
    text-decoration: none;
    transition: var(--mfh-transition);
}

.mfh-footer-links a:hover {
    color: var(--mfh-accent-frost);
    padding-left: 5px;
}

.mfh-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--mfh-border);
    color: var(--mfh-text-secondary);
}

/* Contact Page Styles */
.mfh-contact {
    padding: 60px 0 100px;
}

.mfh-contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.mfh-contact-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
}

.mfh-contact-hero p {
    font-size: 20px;
    color: var(--mfh-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.mfh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mfh-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mfh-contact-card {
    background: var(--mfh-bg-card);
    border: 1px solid var(--mfh-border);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--mfh-transition);
}

.mfh-contact-card:hover {
    transform: translateY(-3px);
    background: var(--mfh-bg-card-hover);
}

.mfh-contact-card-icon {
    width: 55px;
    height: 55px;
    background: var(--mfh-gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mfh-contact-card-icon i {
    font-size: 24px;
    color: white;
}

.mfh-contact-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mfh-contact-card-content p {
    color: var(--mfh-text-secondary);
}

.mfh-contact-card-content a {
    color: var(--mfh-accent-frost);
    text-decoration: none;
}

.mfh-contact-form-wrapper {
    background: var(--mfh-bg-card);
    border: 1px solid var(--mfh-border);
    border-radius: 20px;
    padding: 40px;
}

.mfh-contact-form h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.mfh-form-group {
    margin-bottom: 25px;
}

.mfh-form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--mfh-text-primary);
}

.mfh-form-input,
.mfh-form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--mfh-bg-secondary);
    border: 1px solid var(--mfh-border);
    border-radius: 10px;
    color: var(--mfh-text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: var(--mfh-transition);
}

.mfh-form-input:focus,
.mfh-form-textarea:focus {
    outline: none;
    border-color: var(--mfh-accent-frost);
    box-shadow: 0 0 0 3px rgba(120, 183, 255, 0.1);
}

.mfh-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.mfh-form-input::placeholder,
.mfh-form-textarea::placeholder {
    color: var(--mfh-text-secondary);
}

.mfh-btn-submit {
    width: 100%;
    background: var(--mfh-gradient-accent);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--mfh-transition);
}

.mfh-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 167, 75, 0.4);
}

/* Game Page Styles */
.mfh-game-page {
    padding: 40px 0 80px;
}

.mfh-game-header {
    text-align: center;
    margin-bottom: 40px;
}

.mfh-game-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 15px;
}

.mfh-game-header p {
    color: var(--mfh-text-secondary);
    font-size: 18px;
}

.mfh-game-container {
    background: var(--mfh-bg-card);
    border: 1px solid var(--mfh-border);
    border-radius: 20px;
    padding: 20px;
    aspect-ratio: 16/9;
}

.mfh-game-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Policy Pages */
.mfh-policy-page {
    padding: 60px 0 100px;
}

.mfh-policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.mfh-policy-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
}

.mfh-policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.mfh-policy-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--mfh-accent-frost);
}

.mfh-policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
}

.mfh-policy-content p {
    color: var(--mfh-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.mfh-policy-content ul,
.mfh-policy-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.mfh-policy-content li {
    color: var(--mfh-text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.mfh-policy-content a {
    color: var(--mfh-accent-frost);
}

/* Responsive Design */
@media (max-width: 900px) {
    .mfh-game-card {
        grid-template-columns: 1fr;
    }

    .mfh-contact-grid {
        grid-template-columns: 1fr;
    }

    .mfh-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mfh-footer-logos {
        gap: 15px;
    }

    .mfh-footer-logo-link {
        width: 80px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .mfh-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--mfh-bg-card);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--mfh-border);
    }

    .mfh-nav.mfh-active {
        display: flex;
    }

    .mfh-mobile-toggle {
        display: flex;
    }

    .mfh-hero-buttons {
        flex-direction: column;
    }

    .mfh-stats-grid {
        grid-template-columns: 1fr;
    }

    .mfh-features-grid {
        grid-template-columns: 1fr;
    }

    .mfh-cookie-container {
        margin: 20px;
        padding: 30px 20px;
    }

    .mfh-cookie-buttons {
        flex-direction: column;
    }

    .mfh-game-container {
        padding: 10px;
    }

    .mfh-footer-logos {
        gap: 12px;
    }

    .mfh-footer-logo-link {
        width: 70px;
        height: 45px;
    }
}
