/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif; /* Fuente futurista */
    color: #e0e0e0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a2e 100%); /* Fondo más oscuro */
    line-height: 1.6;
    overflow-x: hidden; /* Evitar scroll horizontal */
}

/* Animación de fondo sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

/* Encabezado */
.hero {
    background: linear-gradient(45deg, #0a0a0a, #16213e);
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Espacio entre logo y título */
    margin-bottom: 0.5rem;
}

.hero .logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 10px #00ffff);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 3rem;
    text-shadow: 0 0 20px #00ffff;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sección plan */
.plan {
    padding: 3rem 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.8); /* Más oscuro */
    backdrop-filter: blur(10px);
}

.plan h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.plan-card {
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0a0a0a, #16213e);
    border: 1px solid #00ffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff00ff;
}

.plan-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ff00;
}

.plan-card p {
    margin-bottom: 1rem;
}

.plan-card .note {
    font-style: italic;
    color: #ccc;
}

/* Sección plataformas */
.platforms-section {
    padding: 3rem 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.8); /* Más oscuro */
    backdrop-filter: blur(10px);
}

.platforms-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.platform:hover {
    transform: scale(1.1);
}

.platform img {
    width: 60px; /* Más pequeñas como pediste */
    height: 60px;
    filter: drop-shadow(0 0 10px #ff00ff);
    margin-bottom: 0.5rem;
}

.platform span {
    font-weight: bold;
    color: #e0e0e0;
}

/* Sección why-us */
.why-us {
    padding: 3rem 1rem;
    background: rgba(0, 0, 0, 0.8); /* Más oscuro */
    backdrop-filter: blur(10px);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra las tarjetas */
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    min-width: 250px;
    flex: 1 1 250px;
    max-width: 300px;
    background: linear-gradient(135deg, #0a0a0a, #16213e);
    border: 1px solid #ff00ff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ff00;
}

/* Sección buy */
.buy {
    padding: 3rem 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.8); /* Más oscuro */
    backdrop-filter: blur(10px);
}

.buy h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.buy p {
    margin-bottom: 1rem;
}

.discord {
    display: inline-block;
    background: linear-gradient(135deg, #0a0a0a, #16213e);
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transition: transform 0.3s ease;
}

.discord:hover {
    transform: scale(1.05);
}

.discord span {
    color: #e0e0e0;
}

.discord strong {
    color: #00ff00;
    font-size: 1.2rem;
}

/* Pie de página */
footer {
    background: linear-gradient(135deg, #000000, #0a0a0a);
    color: #e0e0e0;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #00ffff;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .platforms {
        gap: 1rem;
    }
    .why-grid {
        flex-direction: column;
        align-items: center;
    }
}