:root {
    --bg-dark: #0f1115;
    --bg-card: rgba(25, 27, 34, 0.6);
    --primary: #5865F2;
    --primary-hover: #4752C4;
    --secondary: rgba(255, 255, 255, 0.05);
    --secondary-hover: rgba(255, 255, 255, 0.1);
    --text-main: #FFFFFF;
    --text-muted: #A1A3A6;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --neon-pink: #eb459e;
    --neon-cyan: #00f0ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Glassmorphism Effect */
.blob {
    position: absolute;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.6;
    animation: float 10s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* Glassmorphism utility */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    border-top: none;
    border-left: none;
    border-right: none;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
}

.nav-brand i {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 0 4rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.badge i {
    color: var(--neon-cyan);
    margin-right: 0.3rem;
}

.title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(235, 69, 158, 0.2));
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.stat-info h3 span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 4px;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
    .nav-links { display: none; }
    .cta-group { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* Footer y Legal */
.footer {
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
    border-radius: 20px 20px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.separator {
    color: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.legal-container {
    padding: 3rem;
    border-radius: 20px;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-section p, .legal-section li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .footer-links { flex-direction: column; gap: 0.5rem; }
    .separator { display: none; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-rating { justify-content: center; }
    .hero-illustration { display: none; }
}

/* =========================================
   MEE6 THEME REPLICA (Index.html only)
========================================== */

body.mee6-theme {
    background-color: #1a1e27; /* Dark grayish blue */
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Top Banner */
.mee6-theme .top-banner {
    background: linear-gradient(90deg, #372b47 0%, #1a1e27 100%);
    color: #fff;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mee6-theme .top-banner .banner-btn {
    background: #e6bcf1;
    color: #1a1e27;
    padding: 5px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
}

/* MEE6 Navbar */
.mee6-theme .navbar {
    background: transparent;
    padding: 1.5rem 5%;
    border: none;
}
.mee6-theme .nav-left, .mee6-theme .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.mee6-theme .nav-brand {
    font-size: 1.8rem;
    color: #fff;
}
.mee6-theme .nav-links .dropdown a {
    color: #b0b4bd;
    text-decoration: none;
    font-weight: 600;
}
.mee6-theme .nav-links .dropdown a:hover { color: #fff; }

.mee6-theme .lang-selector {
    color: #b0b4bd;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.mee6-theme .btn-premium {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-radius: 8px;
    padding: 0.6rem 1rem;
}
.mee6-theme .btn-discord {
    background: #5865F2;
    color: #fff;
    border-radius: 8px;
}
.mee6-theme .btn-discord:hover { background: #4752C4; }

/* Hero Section */
.mee6-theme .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 5%;
    min-height: 80vh;
    align-items: center;
}

.mee6-theme .hero-content {
    max-width: 600px;
}

.mee6-theme .hero-badge {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2rem;
}

.mee6-theme .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.mee6-theme .hero-subtitle {
    font-size: 1.15rem;
    color: #b0b4bd;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.mee6-theme .hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.mee6-theme .btn-dark {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 8px;
}
.mee6-theme .btn-dark:hover { background: rgba(255,255,255,0.12); }

.mee6-theme .hero-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mee6-theme .stars {
    color: #00b67a;
    background: rgba(0, 182, 122, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.1rem;
}

.mee6-theme .rating-text {
    color: #b0b4bd;
    font-size: 0.95rem;
}

.mee6-theme .rating-text strong {
    color: #fff;
}

.mee6-theme .hero-illustration {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.mee6-theme .hero-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Mobile Navigation */
.mee6-theme .mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

.mee6-theme .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-grow: 1;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .mee6-theme .mobile-toggle {
        display: block;
    }
    
    .mee6-theme .nav-menu {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #1a1e27;
        padding: 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .mee6-theme .nav-menu.active {
        display: flex;
    }
    
    .mee6-theme .nav-links, .mee6-theme .nav-right {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    
    .mee6-theme .btn-discord, .mee6-theme .btn-premium {
        width: 100%;
        text-align: center;
    }
}
