        /* --- CORE VARIABLES --- */
        :root {
            --bg-dark: #0a0b10;
            --bg-card: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --mc-emerald: #50C878; /* Primary Action */
            --mc-diamond: #00e5ff; /* Accents/Tech */
            --mc-gold: #FFD700;    /* Premium/Highlight */
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --font-head: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        /* --- RESET & BASE --- */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        
        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 15% 50%, rgba(80, 200, 120, 0.05), transparent 25%),
                            radial-gradient(circle at 85% 30%, rgba(0, 229, 255, 0.05), transparent 25%);
        }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.02em; }
        .gradient-text {
            background: linear-gradient(135deg, var(--mc-diamond), var(--mc-emerald));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- LAYOUT UTILITIES --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section-padding { padding: 80px 0; }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: var(--font-head);
        }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 11, 16, 0.8);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--glass-border);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        .logo { font-size: 1.5rem; font-weight: 800; color: white; letter-spacing: -1px; }
        .logo span { color: var(--mc-emerald); }
        
        /* Selector de idiomas corregido */
        .lang-selector select {
            background: var(--bg-dark);
            border: 1px solid var(--glass-border);
            color: white;
            padding: 8px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-family: var(--font-body);
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 15px;
            padding-right: 35px;
        }
        .lang-selector select:focus { 
            outline: none; 
            border-color: var(--mc-diamond); 
        }
        .lang-selector select option {
            background: var(--bg-dark);
            color: white;
            padding: 10px;
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            padding-top: 70px;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        .hero-tags {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .tag {
            background: rgba(0, 229, 255, 0.1);
            border: 1px solid rgba(0, 229, 255, 0.3);
            color: var(--mc-diamond);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
        }
        .tag.gold {
            background: rgba(255, 215, 0, 0.1);
            border-color: rgba(255, 215, 0, 0.3);
            color: var(--mc-gold);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
        }
        .btn-primary {
            background: var(--mc-emerald);
            color: #000;
            box-shadow: 0 0 20px rgba(80, 200, 120, 0.4);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(80, 200, 120, 0.6);
        }
        
        /* --- TECH SPECS GRID --- */
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        .spec-item {
            text-align: center;
            padding: 30px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            transition: 0.3s;
        }
        .spec-item:hover { border-color: var(--mc-diamond); }
        .spec-item i { font-size: 2rem; color: var(--mc-diamond); margin-bottom: 15px; }

        /* --- PRICING --- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: center; /* Center vertically for scaling effect */
        }
        .price-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
        }
        .price-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Popular Card Styling */
        .price-card.popular {
            background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, rgba(10, 11, 16, 0.9) 100%);
            border: 1px solid var(--mc-gold);
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }
        .price-card.popular:hover { transform: scale(1.08); }
        .badge-popular {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--mc-gold);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .price-title { font-size: 1.5rem; margin-bottom: 10px; color: var(--text-main); }
        .price-amount { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; font-family: var(--font-head); }
        .price-amount span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
        
        .features-list { list-style: none; margin-bottom: 30px; flex-grow: 1; }
        .features-list li {
            margin-bottom: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        .features-list li i { color: var(--mc-emerald); }
        .features-list li strong { color: white; }

        .btn-card {
            width: 100%;
            padding: 15px;
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .btn-card:hover { background: white; color: black; }
        .popular .btn-card { background: var(--mc-gold); color: black; border: none; }
        .popular .btn-card:hover { background: #ffe44d; box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }

        /* --- CUSTOM SERVICES --- */
        .custom-section {
            background: linear-gradient(90deg, #0f111a 0%, #151824 100%);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            border: 1px solid var(--glass-border);
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }
        /* Decor for custom section */
        .custom-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
            background: var(--mc-diamond);
        }

        /* --- FOOTER --- */
        footer {
            border-top: 1px solid var(--glass-border);
            padding: 60px 0 20px;
            margin-top: 80px;
            background: #050507;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 { color: white; margin-bottom: 20px; }
        .footer-col a { color: var(--text-muted); text-decoration: none; display: block; margin-bottom: 10px; transition: 0.2s; }
        .footer-col a:hover { color: var(--mc-emerald); }
        .payment-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 10px;
        }
        .payment-icons i { 
            font-size: 1.8rem; 
            color: var(--text-muted);
            transition: all 0.3s ease;
        }
        .payment-icons i:hover {
            color: var(--mc-emerald);
            transform: translateY(-3px);
        }
        
        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.2rem; }
            .hero-tags { flex-direction: column; align-items: center; gap: 10px; }
            .price-card.popular { transform: scale(1); margin: 20px 0; }
            .price-card.popular:hover { transform: scale(1.02); }
            .payment-icons i { font-size: 1.5rem; }
        }
    /* --- DISCORD BANNER --- */
    .discord-banner {
        background: rgba(88, 101, 242, 0.1); /* Fondo sutil con el color de Discord */
        border: 1px solid #5865F2;
        color: white;
        padding: 18px 30px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 20px;
        transition: all 0.3s ease;
    }
    .discord-banner:hover {
        background: rgba(88, 101, 242, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(88, 101, 242, 0.2);
    }
    .discord-icon { 
        color: #5865F2;
        font-size: 1.8rem; 
    }
    .discord-text { display: flex; flex-direction: column; text-align: left; gap: 2px; }
    .discord-text span { font-size: 0.9rem; color: var(--text-muted); }
    .discord-text strong { 
        font-size: 1rem; 
        color: #5865F2; 
        text-transform: uppercase; 
        letter-spacing: 0.5px;
    }

.info-banner {
        background: linear-gradient(90deg, rgba(80, 200, 120, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
        border: 1px dashed var(--mc-diamond);
        padding: 20px 30px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 20px;
        transition: 0.3s;
        cursor: pointer;
    }
    .info-banner:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-2px);
        border-style: solid;
    }
    .info-icon { font-size: 1.5rem; }
    .info-text { display: flex; flex-direction: column; }
    .info-text span { color: var(--text-muted); font-size: 0.9rem; }
    .info-text strong { color: var(--mc-diamond); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
    
    @media (max-width: 600px) {
        .info-banner { flex-direction: column; text-align: center; }
    }
    .cookie-banner {
        position: fixed;
        bottom: -100px; /* Escondido al inicio */
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 600px;
        background: rgba(15, 17, 26, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 20px;
        z-index: 9999;
        transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }

    .cookie-banner.show {
        bottom: 30px; /* Se desliza hacia arriba */
    }

    .cookie-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .cookie-content p {
        color: #a0a0a0;
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.4;
    }

    .cookie-content a {
        color: #50C878;
        text-decoration: none;
        font-weight: 600;
    }

    .btn-cookie {
        background: #50C878;
        color: #000;
        border: none;
        padding: 8px 20px;
        border-radius: 8px;
        font-weight: 700;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        white-space: nowrap;
        transition: 0.3s;
    }

    .btn-cookie:hover {
        background: #40a864;
        transform: scale(1.05);
    }

    @media (max-width: 600px) {
        .cookie-content { flex-direction: column; text-align: center; }
        .btn-cookie { width: 100%; }
    }
/* --- LOGO CON IMAGEN --- */
.logo::before {
    content: "◼";
    font-size: 1.8rem;
    color: var(--mc-emerald);
    display: none; /* Solo se muestra si falla la imagen */
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}
.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(80, 200, 120, 0.5));
    transition: all 0.3s ease;
}
.logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(80, 200, 120, 0.8));
    transform: rotate(10deg) scale(1.05);
}
.logo span { 
    color: var(--mc-emerald); 
}
/* --- DECORATIVE CUBES IN PRICING CARDS --- */
.card-decorative-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 1;
    overflow: hidden;
}

.decorative-cube {
    width: 30px;
    height: 30px;
    filter: brightness(1.2);
    transition: all 0.4s ease;
}

/* Glow effects for each tier */
.card-decorative-icon.basic {
    background: rgba(128, 128, 128, 0.15);
    box-shadow: 0 0 15px rgba(128, 128, 128, 0.3);
    border: 1px solid rgba(200, 200, 200, 0.2);
}

.card-decorative-icon.standard {
    background: rgba(0, 229, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.card-decorative-icon.pro {
    background: rgba(255, 165, 0, 0.15);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
    border: 1px solid rgba(255, 165, 0, 0.3);
}

/* Hover effects */
.price-card:hover .decorative-cube {
    transform: rotate(15deg) scale(1.1);
}

.price-card:hover .card-decorative-icon.basic {
    box-shadow: 0 0 20px rgba(128, 128, 128, 0.5);
}

.price-card:hover .card-decorative-icon.standard {
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

.price-card:hover .card-decorative-icon.pro {
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.6);
}

/* Adjust for popular card (needs more z-index for badge) */
.price-card.popular {
    position: relative;
}
