/* --- 1. HERO SLIDER --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    color: white;
    margin-bottom: 20px;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 0;
}

/* Fondos específicos para cada slide */
.slide-1 { background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); }
.slide-2 { background: linear-gradient(135deg, #000000, #2c0b40); }
.slide-3 { background: linear-gradient(135deg, #051410, #004d40); }

.slide.active { opacity: 1; z-index: 1; }

.slide-content {
    max-width: 800px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.slide h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.slide p { font-size: 1.2rem; margin-bottom: 30px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }

/* Botones del Hero */
.hero-btns { display: flex; gap: 15px; justify-content: center; }
.btn-hero { padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: bold; transition: 0.3s; font-size: 1rem; }
.btn-p { background: #bf00ff; color: white; border: none; }
.btn-p:hover { background: #d633ff; transform: scale(1.05); box-shadow: 0 0 20px rgba(191, 0, 255, 0.4); }
.btn-s { border: 2px solid white; color: white; background: transparent; }
.btn-s:hover { background: white; color: black; transform: scale(1.05); }

/* Botones Especiales de los slides */
.btn-gamer { background: #ffd700; color: black; }
.btn-gamer:hover { background: #ffea00; transform: scale(1.05); }
.btn-premium { background: #00ffaa; color: black; }
.btn-premium:hover { background: #00e699; transform: scale(1.05); }

/* Flechas y Puntos */
.prev-slide, .next-slide {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.3); color: white; border: none;
    font-size: 2rem; padding: 20px; cursor: pointer; z-index: 10;
    border-radius: 50%; transition: 0.3s;
}
.prev-slide:hover, .next-slide:hover { background: rgba(255,255,255,0.2); }
.prev-slide { left: 20px; }
.next-slide { right: 20px; }

.slider-dots {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 10px;
}
.dot {
    width: 12px; height: 12px; background: rgba(255,255,255,0.5);
    border-radius: 50%; cursor: pointer; transition: 0.3s;
}
.dot.active { background: #fff; transform: scale(1.3); }

@keyframes fadeInUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* --- 2. BANNER ZONA GAMER --- */
.gamer-banner-section {
    padding: 50px 20px;
    background: linear-gradient(90deg, #050505 0%, #1a0525 100%);
    border-top: 1px solid #333; border-bottom: 1px solid #333;
    margin-top: 40px;
}
.gamer-banner-content {
    max-width: 1000px; margin: 0 auto; display: flex;
    align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px;
}
.gamer-text h2 { font-size: 2.5rem; margin-bottom: 15px; color: white; }
.rewards-list { list-style: none; padding: 0; margin-bottom: 30px; color: #ddd; }
.rewards-list li { margin-bottom: 8px; }

.btn-play-now {
    display: inline-block; padding: 15px 35px; background: #ffd700; color: black;
    font-weight: 800; text-decoration: none; border-radius: 50px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4); transition: transform 0.3s;
}
.btn-play-now:hover { transform: scale(1.05); background: #ffea00; }
.gamer-visual { font-size: 6rem; animation: float 3s ease-in-out infinite; }

/* --- 3. ANUNCIO FLOTANTE --- */
.game-promo-card {
    position: fixed; bottom: 20px; right: 20px;
    background: rgba(15, 15, 15, 0.95); border: 1px solid #bf00ff;
    border-radius: 12px; padding: 15px; width: 300px;
    box-shadow: 0 0 20px rgba(191, 0, 255, 0.3); z-index: 9999;
    animation: slideIn 1s ease-out; cursor: pointer; display: flex;
    align-items: center; backdrop-filter: blur(10px); transition: transform 0.3s;
}
.game-promo-card:hover { transform: scale(1.02); }
.promo-content { display: flex; align-items: center; width: 100%; }
.promo-icon { font-size: 2.5rem; margin-right: 15px; animation: bounce 2s infinite; }
.promo-text strong { display: block; color: #00ffaa; font-size: 1rem; }
.promo-text small { color: #ccc; font-size: 0.8rem; }
.close-promo {
    position: absolute; top: 5px; right: 8px; background: transparent;
    border: none; color: #666; font-size: 1.2rem; cursor: pointer;
}
.close-promo:hover { color: white; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes slideIn { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

@media (max-width: 768px) {
    .hero-slider { height: 75vh; }
    .slide h1 { font-size: 2.2rem; }
    .gamer-banner-content { text-align: center; justify-content: center; }
    .game-promo-card { width: 90%; bottom: 10px; right: 5%; }
}