:root {
    --primary-color: #d4af37; /* Gold */
    --primary-hover: #f5cc4e;
    --secondary-color: #8a0000; /* Dark Red */
    --bg-dark: #050505;
    --bg-card: rgba(21, 21, 21, 0.8);
    --text-light: #f4f4f4;
    --text-muted: #aaaaaa;
    --glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --accent-green: #2ecc71;
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Canvas Background */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

/* Header */
header {
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: 0.3s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.logo span {
    color: var(--text-light);
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary-color);
    text-shadow: var(--glow);
}

.btn-nav {
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: radial-gradient(circle at center, rgba(0,0,0,0.6) 0%, rgba(5,5,5,1) 100%), url('https://servidores.kaheim.net/img/fondo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(0,0,0,0.9);
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #d4af37, #aa8620);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ddd;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.btn-main {
    background: linear-gradient(45deg, var(--secondary-color), #600000);
    color: white;
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(138, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #600000, var(--secondary-color));
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}

.btn-main:hover::before {
    opacity: 1;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 0, 0, 0.6);
    color: white;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 80px;
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    border: var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: var(--primary-hover);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Plans Section */
.plans {
    padding: 120px 0;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); /* Subtle texture */
    background-color: #080808;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.plan-card {
    background-color: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 35px 25px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
}

.plan-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    transform: scale(1.03);
    z-index: 10;
    background: linear-gradient(to bottom, rgba(30,30,30,0.95), rgba(20,20,20,0.95));
}

.plan-card.popular:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), #b8962e);
    color: var(--bg-dark);
    padding: 5px 25px;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 25px;
}

.plan-header h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.plan-desc {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: normal;
}

.discount-note {
    color: var(--accent-green);
    font-size: 0.85rem;
    margin-top: 10px;
    font-weight: 500;
    background: rgba(46, 204, 113, 0.1);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
}

.plan-features {
    margin-bottom: 35px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-buy:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.plan-card.popular .btn-buy {
    background: linear-gradient(90deg, var(--primary-color), #b8962e);
    color: var(--bg-dark);
    border: none;
}

.plan-card.popular .btn-buy:hover {
    background: linear-gradient(90deg, #b8962e, var(--primary-color));
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

/* Plan Backgrounds */
.plan-card.plan-guerrero {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), rgba(5, 5, 5, 0.8)), url('https://tse1.mm.bing.net/th/id/OIP.XJmUqFg9h2HLQAj50TpVmgHaIZ?rs=1&pid=ImgDetMain&o=7&rm=3');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.plan-card.plan-mago {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), rgba(5, 5, 5, 0.8)), url('https://tse2.mm.bing.net/th/id/OIP.WayqEQLEJ1_1cK6ZvmeUyQAAAA?rs=1&pid=ImgDetMain&o=7&rm=3');
    background-size: cover;
    background-position: center;
}

.plan-card.plan-master {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), rgba(5, 5, 5, 0.8)), url('https://guiaytrucos.com/wp-content/uploads/2008/12/mu-online-dark-knight-600x434.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Custom Plan Styles */
.plan-card.custom-plan {
    border: 1px dashed rgba(255,255,255,0.2);
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), rgba(5, 5, 5, 0.8)), url('https://th.bing.com/th/id/R.e4b58fd8c2edf0bd395ffff377474c3d?rik=y8H%2f6Zfa%2bLsmNA&pid=ImgRaw&r=0');
    background-size: cover;
    background-position: center;
}

.plan-card.custom-plan:hover {
    border-color: var(--primary-color);
    border-style: solid;
}

.custom-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin: 20px 0;
    transition: 0.4s;
}

.plan-card.custom-plan:hover .custom-icon {
    color: var(--primary-color);
    transform: rotate(15deg) scale(1.1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.custom-text {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-custom {
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.btn-custom:hover {
    background-color: var(--text-muted);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Footer */
footer {
    background-color: #020202;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.whatsapp-link {
    font-size: 1.8rem;
    color: #25D366; /* WhatsApp Green */
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.whatsapp-link:hover {
    color: #128c7e;
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Floating WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-message {
    background-color: white;
    color: #333;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-size: 0.95rem;
    font-weight: 500;
    max-width: 250px;
    position: relative;
    animation: fadeIn 1s ease-out;
    text-align: right;
    border: 1px solid rgba(0,0,0,0.1);
}

.whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 22px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.float-whatsapp {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.float-whatsapp:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Support Hours in Footer */
.support-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 10px;
}

.support-hours h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hours-time {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 5px;
}

.hours-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 400px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.payments {
    padding: 120px 0;
    background: linear-gradient(to bottom, #0a0a0a, #080808);
}
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: stretch;
}
.payment-card {
    background-color: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 35px 25px;
    position: relative;
    border: var(--glass-border);
    transition: 0.4s;
    text-align: center;
}
.payment-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
}
.payment-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.payment-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-light);
}
.payment-card.paypal i {
    color: #1e3a8a;
}
.payment-card.binance i {
    color: #f3ba2f;
}

/* Payment Methods */
.payment-methods {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.payment-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.payment-badge i {
    color: var(--primary-color);
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
}
