:root {
    --mp-gold: #d4af37;
    --mp-gold-light: #f9e076;
    --mp-gold-dark: #b8860b;
    --mp-bg-dark: #0a0a0f;
    --mp-bg-card: rgba(15, 17, 23, 0.8);
    --mp-text: #f8f9fa;
    --mp-text-secondary: #a0aec0;
    --mp-border: rgba(212, 175, 55, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

.mp-body {
    font-family: 'Inter', system-ui, sans-serif;
    /* IMAGEN DE FONDO CORREGIDA - Transparente y elegante */
    background: linear-gradient(135deg, 
                rgba(10, 10, 15, 0.75), 
                rgba(5, 5, 10, 0.88)), 
                url('../images/page/public.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--mp-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Overlay elegante adicional para mejorar la visibilidad */
.mp-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
                rgba(255, 255, 255, 0.03) 0%, 
                rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 0;
}

.mp-particles {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

.mp-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--mp-border);
    transition: all 0.3s ease;
}
.mp-header.mp-scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.mp-header-container {
    max-width: 1280px; margin: 0 auto; padding: 0.8rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

/* Logo */
.mp-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; flex-shrink: 0; }
.mp-logo-ring {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
    color: #0a0a0a; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
.mp-logo-text { display: flex; flex-direction: column; }
.mp-logo-main {
    font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
    color: var(--mp-text); line-height: 1; letter-spacing: 2px;
}
.mp-logo-sub {
    font-size: 0.55rem; color: var(--mp-gold); text-transform: uppercase;
    letter-spacing: 3px; font-weight: 500;
}

.mp-nav { display: flex; align-items: center; gap: 0.5rem; }
.mp-nav a {
    color: var(--mp-text-secondary); text-decoration: none; font-size: 0.85rem;
    font-weight: 500; padding: 0.5rem 1rem; border-radius: 8px; transition: all 0.3s ease;
    white-space: nowrap;
}
.mp-nav a:hover, .mp-nav a.mp-active { color: var(--mp-gold); background: rgba(212, 175, 55, 0.08); }

.mp-auth { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.mp-btn-outline {
    padding: 0.5rem 1.2rem; border: 1px solid var(--mp-gold); border-radius: 8px;
    color: var(--mp-gold); background: transparent; font-size: 0.8rem; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: all 0.3s ease;
}
.mp-btn-outline:hover { background: rgba(212, 175, 55, 0.1); transform: translateY(-2px); }
.mp-btn-filled {
    padding: 0.5rem 1.2rem; border: none; border-radius: 8px; color: #0a0a0a;
    background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark));
    font-size: 0.8rem; font-weight: 600; text-decoration: none; cursor: pointer;
    transition: all 0.3s ease;
}
.mp-btn-filled:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3); }

.mp-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mp-menu-btn span { width: 25px; height: 2px; background: var(--mp-gold); border-radius: 2px; transition: all 0.3s ease; }
.mp-mobile-menu {
    display: none; position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px;
    height: 100vh; background: rgba(10, 10, 15, 0.98); backdrop-filter: blur(20px);
    z-index: 2000; padding: 2rem; transition: right 0.3s ease;
}
.mp-mobile-menu.mp-active { right: 0; display: block; }
.mp-mobile-close { background: none; border: none; color: var(--mp-gold); font-size: 1.5rem; cursor: pointer; float: right; margin-bottom: 2rem; }
.mp-mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; margin: 3rem 0 2rem; }
.mp-mobile-nav a {
    color: var(--mp-text-secondary); text-decoration: none; font-size: 1.1rem; padding: 1rem;
    border-radius: 10px; display: flex; align-items: center; gap: 0.75rem; transition: all 0.3s ease;
}
.mp-mobile-nav a:hover, .mp-mobile-nav a.mp-active { color: var(--mp-gold); background: rgba(212, 175, 55, 0.08); }
.mp-mobile-auth { display: flex; flex-direction: column; gap: 0.75rem; }
.mp-mobile-auth .mp-btn-outline, .mp-mobile-auth .mp-btn-filled { text-align: center; padding: 0.8rem; }
.mp-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 1500; }
.mp-overlay.mp-active { display: block; }

.mp-main { 
    padding-top: 70px; 
    position: relative; 
    z-index: 2; 
    min-height: calc(100vh - 200px); 
}

.mp-footer {
    background: rgba(10, 10, 15, 0.9); 
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--mp-border);
    padding: 2rem 1.5rem; 
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}
.mp-footer-container {
    max-width: 1280px; margin: 0 auto; display: flex; align-items: center;
    justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.mp-footer-item { display: flex; align-items: center; gap: 0.5rem; color: var(--mp-text-secondary); font-size: 0.85rem; }
.mp-footer-item i { color: var(--mp-gold); }
.mp-footer-bottom { text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.mp-footer-bottom p { color: var(--mp-text-secondary); font-size: 0.8rem; margin-bottom: 0.5rem; }
.mp-footer-badge { color: var(--mp-gold); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.mp-btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 2rem;
    border-radius: 12px; font-weight: 600; font-size: 0.9rem; text-decoration: none;
    cursor: pointer; transition: all 0.3s ease; border: none;
}
.mp-btn-primary { background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark)); color: #0a0a0a; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); }
.mp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4); }

.mp-slider { position: relative; width: 100%; height: 500px; overflow: hidden; margin-bottom: 2rem; }
.mp-slider-wrapper { position: relative; width: 100%; height: 100%; }
.mp-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease;
}
.mp-slide.mp-active { opacity: 1; }
.mp-slide-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%); }
.mp-slide-content { position: absolute; bottom: 4rem; left: 50%; transform: translateX(-50%); text-align: center; z-index: 2; width: 90%; max-width: 600px; }
.mp-slide-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.mp-slider-dots { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 2; }
.mp-dot {
    width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.3);
    cursor: pointer; transition: all 0.3s ease;
}
.mp-dot.mp-active { background: var(--mp-gold); width: 30px; border-radius: 5px; }

.mp-stats { max-width: 1280px; margin: 0 auto 2rem; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.mp-stat-card {
    background: var(--mp-bg-card); backdrop-filter: blur(10px); border: 1px solid var(--mp-border);
    border-radius: 16px; padding: 1.5rem; text-align: center; transition: all 0.3s ease;
}
.mp-stat-card:hover { transform: translateY(-3px); border-color: var(--mp-gold); }
.mp-stat-value {
    font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
    background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mp-stat-label { color: var(--mp-text-secondary); font-size: 0.8rem; margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 1px; }

.mp-promo {
    max-width: 800px; margin: 0 auto 2.5rem; padding: 2rem; text-align: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(180,130,0,0.03));
    backdrop-filter: blur(10px); border-radius: 20px; border: 1px solid var(--mp-border);
}
.mp-promo-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--mp-gold); margin-bottom: 0.5rem; }
.mp-promo-amount {
    font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900;
    background: linear-gradient(135deg, var(--mp-gold-light), var(--mp-gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin: 0.5rem 0;
}
.mp-promo-text { color: var(--mp-text-secondary); font-size: 0.9rem; margin-bottom: 1.5rem; }
.mp-promo-text strong { color: var(--mp-gold); }
.mp-promo-btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 2.2rem;
    background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark)); color: #0a0a0a;
    font-weight: 700; font-size: 0.95rem; text-decoration: none; border-radius: 50px;
    transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.mp-promo-btn:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5); }

.mp-section-header { text-align: center; margin: 2.5rem 0 1.5rem; }
.mp-section-title {
    font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
    background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.5rem;
}
.mp-section-subtitle { color: var(--mp-text-secondary); font-size: 0.9rem; }

.mp-features { max-width: 1280px; margin: 0 auto 2.5rem; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.mp-feature {
    background: var(--mp-bg-card); backdrop-filter: blur(10px); border: 1px solid var(--mp-border);
    border-radius: 20px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s ease;
}
.mp-feature:hover { transform: translateY(-5px); border-color: var(--mp-gold); }
.mp-feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mp-feature-title { font-size: 1.1rem; font-weight: 700; color: var(--mp-text); margin-bottom: 0.5rem; }
.mp-feature-text { color: var(--mp-text-secondary); font-size: 0.85rem; line-height: 1.5; }

.mp-clubs-section { max-width: 1280px; margin: 0 auto 2.5rem; padding: 0 1.5rem; }
.mp-clubs-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1rem; }
.mp-club {
    background: var(--mp-bg-card); backdrop-filter: blur(10px); border: 1px solid var(--mp-border);
    border-radius: 16px; padding: 1rem; text-align: center; transition: all 0.3s ease;
}
.mp-club:hover { transform: translateY(-3px); border-color: var(--mp-gold); }
.mp-club-logo { max-width: 60px; max-height: 60px; margin: 0 auto 0.5rem; object-fit: contain; }
.mp-club-name { color: var(--mp-text); font-size: 0.7rem; font-weight: 600; }
.mp-club-badge {
    display: inline-block; margin-top: 0.3rem; padding: 0.15rem 0.5rem;
    background: rgba(234,179,8,0.15); color: #facc15; border-radius: 10px; font-size: 0.55rem;
    font-weight: 600; text-transform: uppercase;
}

.mp-cta { text-align: center; padding: 3rem 1.5rem; margin: 2.5rem 0; }
.mp-cta-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--mp-text); margin-bottom: 0.5rem; }
.mp-cta-text { color: var(--mp-text-secondary); font-size: 1rem; margin-bottom: 1.5rem; }

.mp-games-container { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem; }
.mp-games-hero { text-align: center; margin-bottom: 3rem; }
.mp-games-hero h2 {
    font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
    background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-light), var(--mp-gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.75rem; letter-spacing: -0.5px;
}
.mp-games-hero p { color: var(--mp-text-secondary); font-size: 1rem; max-width: 600px; margin: 0 auto; }

.mp-games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-bottom: 3rem; }
.mp-game-card {
    position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 3/4;
    background-size: cover; background-position: center; transition: all 0.4s ease;
    border: 1px solid var(--mp-border); cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.mp-game-card:hover { transform: translateY(-10px); border-color: var(--mp-gold); box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2); }
.mp-game-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.8rem; background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.1) 100%);
    transition: all 0.3s ease;
}
.mp-game-card:hover .mp-game-overlay { background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, rgba(212,175,55,0.05) 100%); }
.mp-game-title { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.mp-game-desc { color: #ccc; font-size: 0.75rem; margin-bottom: 0.8rem; line-height: 1.4; }
.mp-game-stats { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; }
.mp-game-stat {
    text-align: center; background: rgba(0,0,0,0.4); padding: 0.3rem 0.6rem;
    border-radius: 8px; min-width: 55px;
}
.mp-game-stat-val { color: var(--mp-gold); font-weight: 700; font-size: 0.75rem; }
.mp-game-stat-lbl { color: #aaa; font-size: 0.5rem; text-transform: uppercase; }
.mp-game-badge {
    display: inline-block; padding: 0.2rem 0.7rem; background: rgba(34,197,94,0.15);
    color: #4ade80; border-radius: 20px; font-size: 0.6rem; font-weight: 700; width: fit-content;
}
.mp-game-badge-soon { background: rgba(234,179,8,0.15); color: #facc15; }

.mp-how { background: rgba(20,20,30,0.5); backdrop-filter: blur(10px); border-radius: 24px; padding: 2.5rem 2rem; border: 1px solid var(--mp-border); margin: 2.5rem 0; }
.mp-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.mp-how-card { text-align: center; padding: 1rem; transition: all 0.3s ease; }
.mp-how-card:hover { transform: translateY(-5px); }
.mp-how-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.mp-how-title { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.mp-how-text { color: var(--mp-text-secondary); font-size: 0.8rem; line-height: 1.5; }

.mp-prizes-container { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem; }
.mp-prizes-hero {
    text-align: center; margin-bottom: 3rem; padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(20,10,5,0.7));
    border-radius: 32px; border: 1px solid var(--mp-border); position: relative; overflow: hidden;
}
.mp-prizes-hero h2 {
    font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
    background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-light), var(--mp-gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    position: relative; z-index: 1; margin-bottom: 0.5rem;
}
.mp-prizes-hero p { color: var(--mp-text-secondary); font-size: 1rem; position: relative; z-index: 1; }

.mp-jackpots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-bottom: 2rem; }
.mp-jackpot-card {
    position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 3/4;
    background-size: cover; background-position: center; border: 1px solid var(--mp-border);
    transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.mp-jackpot-card:hover { transform: translateY(-10px); border-color: var(--mp-gold); box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2); }
.mp-jackpot-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.8rem; background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.1) 100%);
}
.mp-jackpot-title { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.mp-jackpot-amount {
    font-size: 1.6rem; font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, var(--mp-gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin: 0.3rem 0; line-height: 1.2;
}
.mp-jackpot-desc { color: #ccc; font-size: 0.75rem; margin-bottom: 1rem; }
.mp-jackpot-badge {
    display: inline-block; padding: 0.2rem 0.7rem; background: rgba(34,197,94,0.15);
    color: #4ade80; border-radius: 20px; font-size: 0.6rem; font-weight: 700; width: fit-content;
}

.mp-contact-container { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem; }
.mp-contact-hero { text-align: center; margin-bottom: 3rem; }
.mp-contact-hero h2 {
    font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
    background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-light), var(--mp-gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 0.75rem;
}
.mp-contact-hero p { color: var(--mp-text-secondary); font-size: 1rem; max-width: 600px; margin: 0 auto; }

.mp-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.mp-contact-card {
    background: var(--mp-bg-card); backdrop-filter: blur(20px); border-radius: 20px;
    padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--mp-border);
    transition: all 0.4s ease;
}
.mp-contact-card:hover { transform: translateY(-8px); border-color: var(--mp-gold); }
.mp-contact-icon {
    width: 70px; height: 70px; margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(212,175,55,0.2); font-size: 1.8rem; color: var(--mp-gold);
}
.mp-contact-card h3 { font-size: 0.85rem; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
.mp-contact-card p, .mp-contact-card a { font-size: 1rem; font-weight: 500; color: var(--mp-gold); text-decoration: none; }

.mp-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.mp-faq-item {
    background: linear-gradient(145deg, rgba(26,28,38,0.7), rgba(22,24,34,0.8));
    border-radius: 16px; padding: 1.75rem; border: 1px solid rgba(212,175,55,0.08);
    transition: all 0.3s ease;
}
.mp-faq-item:hover { border-color: rgba(212,175,55,0.25); }
.mp-faq-item h3 { font-size: 1rem; font-weight: 600; color: #e2e8f0; margin-bottom: 0.6rem; }
.mp-faq-item h3 i { color: var(--mp-gold); font-size: 0.5rem; margin-right: 0.5rem; }
.mp-faq-item p { font-size: 0.9rem; color: #9ca3af; line-height: 1.7; }

@media (max-width: 1024px) {
    .mp-games-grid, .mp-jackpots-grid { grid-template-columns: repeat(2, 1fr); }
    .mp-stats { grid-template-columns: repeat(2, 1fr); }
    .mp-features { grid-template-columns: repeat(2, 1fr); }
    .mp-how-grid { grid-template-columns: repeat(2, 1fr); }
    .mp-clubs-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .mp-nav, .mp-auth { display: none; }
    .mp-menu-btn { display: flex; }
    .mp-slider { height: 350px; }
    .mp-games-hero h2, .mp-prizes-hero h2, .mp-contact-hero h2 { font-size: 2rem; }
}

@media (max-width: 640px) {
    .mp-games-grid, .mp-jackpots-grid { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
    .mp-stats { grid-template-columns: 1fr 1fr; }
    .mp-features { grid-template-columns: 1fr; }
    .mp-how-grid { grid-template-columns: 1fr; }
    .mp-clubs-grid { grid-template-columns: repeat(3, 1fr); }
    .mp-contact-grid, .mp-faq-grid { grid-template-columns: 1fr; }
    .mp-slider { height: 250px; }
    .mp-stat-value { font-size: 1.3rem; }
    .mp-games-hero h2, .mp-prizes-hero h2, .mp-contact-hero h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .mp-clubs-grid { grid-template-columns: repeat(2, 1fr); }
    .mp-footer-container { gap: 1.5rem; }
}