/* main.css - Estilos principales para Apuesta del Sol
 * Desarrollado por mhmtcngz47
 * Tema: Solar Energy / Vibrant Sunrise
 */

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* ===== VARIABLES CSS ===== */
:root {
    /* Colores principales - Tema Solar */
    --color-primary: #FF6F00;
    --color-primary-dark: #E65100;
    --color-secondary: #003087;
    --color-secondary-light: #1976D2;
    --color-accent: #FFC107;
    --color-accent-light: #FFD54F;
    --color-danger: #C62828;
    --color-success: #4CAF50;
    --color-warning: #FF9800;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #FF6F00 0%, #003087 100%);
    --gradient-secondary: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    --gradient-accent: linear-gradient(135deg, #FF6F00 0%, #FFC107 100%);
    
    /* Sombras */
    --shadow-light: 0 4px 20px rgba(255, 111, 0, 0.15);
    --shadow-medium: 0 8px 30px rgba(255, 111, 0, 0.25);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Bordes */
    --border-radius: 20px;
    --border-radius-small: 10px;
    --border-radius-large: 30px;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navegación desktop */
.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    transition: all var(--transition-normal);
    position: relative;
}

.nav-desktop a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-desktop a:hover::before {
    width: 100%;
}

.nav-desktop a:hover {
    color: var(--color-primary);
    background: rgba(255, 193, 7, 0.1);
}

/* Botón menú móvil */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Menú móvil */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--gradient-primary);
    z-index: 999;
    transition: left var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu nav ul {
    list-style: none;
    text-align: center;
}

.mobile-menu nav li {
    margin: 2rem 0;
}

.mobile-menu nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    display: block;
    transition: all var(--transition-normal);
}

.mobile-menu nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: url('/images/i1.webp') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.8) 0%, rgba(255, 111, 0, 0.7) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.sun-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
    animation: sunPulse 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes sunPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3); 
        opacity: 0.6; 
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-disclaimer {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.badge.age-18 {
    background: var(--color-danger);
    color: white;
}

.badge.gamble-aware,
.badge.gamcare {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-secondary);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== BOTONES ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 193, 7, 0.5); }
    to { box-shadow: 0 0 30px rgba(255, 193, 7, 0.8); }
}

.btn-play {
    background: var(--gradient-accent);
    color: white;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.btn-play:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* ===== SECCIONES ===== */
.section-title {
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* ===== CASINOS SECTION ===== */
.casinos-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.casino-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.casino-card:hover::before {
    transform: scaleX(1);
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-accent);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.casino-logo img {
    max-width: 120px;
    height: auto;
}

.casino-rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1.2rem;
}

.star.full { color: var(--color-accent); }
.star.half { color: var(--color-accent); opacity: 0.7; }
.star.empty { color: #ddd; }

.casino-name {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.casino-bonus {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--color-accent);
}

.bonus-label {
    font-weight: 600;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.bonus-text {
    color: var(--color-primary);
    font-weight: 500;
}

.casino-qualities h4 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.casino-qualities ul {
    list-style: none;
    padding-left: 0;
}

.casino-qualities li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.casino-qualities li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0.3rem;
}

.casino-actions {
    margin-top: 2rem;
    text-align: center;
}

.casino-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.casino-social a {
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    transition: all var(--transition-normal);
}

.casino-social a:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

/* ===== FEATURES SECTION ===== */
.why-us-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Sección de Juegos */
.games-section {
    background: var(--gradient-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/games-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.games-section .container {
    position: relative;
    z-index: 2;
}

/* Games Slider */
.games-slider {
    position: relative;
    margin-top: 50px;
    padding: 0 60px;
    outline: none;
}

.games-slider:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: var(--border-radius);
}

.slider-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
}

.slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 5;
    pointer-events: none;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 193, 7, 0.1), transparent);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 193, 7, 0.1), transparent);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.game-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-accent);
}

.game-card:hover img {
    filter: drop-shadow(0 6px 12px rgba(255, 193, 7, 0.5));
    transform: scale(1.1);
}

.game-card:hover h3 {
    color: var(--color-primary);
}

.game-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 111, 0, 0.3));
    transition: all var(--transition-normal);
}

.game-card h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.game-card p {
    color: var(--color-text);
    line-height: 1.6;
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-medium);
    z-index: 10;
    color: var(--color-secondary);
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-heavy);
    color: var(--color-primary);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

.games-section .btn {
    margin-top: 40px;
}

/* Nueva Sección: Promociones Relampagueantes */
.promotions-section {
    background: var(--gradient-accent);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promotions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    z-index: 1;
}

.promotions-section .container {
    position: relative;
    z-index: 2;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.promotion-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.promotion-card:hover::before {
    background: var(--gradient-accent);
}

.promotion-image {
    margin-bottom: 25px;
}

.promotion-image img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.4));
}

.promotion-card h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.promotion-card p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.promotion-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-light);
}

/* Nueva Sección: Seguridad y Confianza */
.security-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.1) 0%, rgba(255, 111, 0, 0.1) 100%);
    z-index: 1;
}

.security-section .container {
    position: relative;
    z-index: 2;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.security-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-accent);
}

.security-icon {
    margin-bottom: 25px;
}

.security-icon img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 4px 8px rgba(0, 48, 135, 0.3));
}

.security-card h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.security-card p {
    color: var(--color-text);
    line-height: 1.6;
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge-item img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: var(--transition-normal);
}

.badge-item:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Nueva Sección: Experiencia del Usuario */
.experience-section {
    background: var(--gradient-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    z-index: 1;
}

.experience-section .container {
    position: relative;
    z-index: 2;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.experience-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.experience-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.4));
}

.feature-content h3 {
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.experience-image {
    text-align: center;
}

.experience-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    filter: drop-shadow(0 8px 24px rgba(255, 193, 7, 0.3));
}

/* Nueva Sección: Seguridad y Confianza */
.seguridad-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.seguridad-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.1) 0%, rgba(255, 111, 0, 0.1) 100%);
    z-index: 1;
}

.seguridad-section .container {
    position: relative;
    z-index: 2;
}

/* Header de la sección */
.seguridad-header {
    text-align: center;
    margin-bottom: 60px;
}

.seguridad-header h2 {
    color: var(--color-accent);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Anton', sans-serif;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.seguridad-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.5s forwards;
    width: 0;
}

@keyframes expandWidth {
    to {
        width: 100px;
    }
}

.seguridad-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid de características de seguridad */
.seguridad-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.seguridad-feature-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.seguridad-feature-card:nth-child(1) { animation-delay: 0.1s; }
.seguridad-feature-card:nth-child(2) { animation-delay: 0.2s; }
.seguridad-feature-card:nth-child(3) { animation-delay: 0.3s; }

.seguridad-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.seguridad-feature-card:hover::before {
    transform: scaleX(1);
}

.seguridad-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-accent);
}

.seguridad-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.seguridad-icon svg {
    width: 60px;
    height: 60px;
    color: var(--color-primary);
    filter: drop-shadow(0 4px 8px rgba(255, 111, 0, 0.3));
    transition: all var(--transition-normal);
}

.seguridad-feature-card:hover .seguridad-icon svg {
    color: var(--color-accent);
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 193, 7, 0.5));
}

.seguridad-feature-card h3 {
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.seguridad-feature-card p {
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Header de banners */
.seguridad-banners-header {
    text-align: center;
    margin-bottom: 40px;
}

.seguridad-banners-header h3 {
    color: var(--color-accent);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Anton', sans-serif;
}

.seguridad-banners-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Grid de banners de confianza */
.seguridad-banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.seguridad-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-small);
    padding: 20px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.seguridad-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.5s ease;
}

.seguridad-banner:hover::before {
    left: 100%;
}

.seguridad-banner:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-medium);
}

.seguridad-banner img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all var(--transition-normal);
}

.seguridad-banner:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.seguridad-banner.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
}

.seguridad-banner.disabled:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.seguridad-banner.disabled:hover img {
    transform: none;
}


/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-small);
}

.contact-item .icon {
    font-size: 1.5rem;
}

/* ===== FORMULARIOS ===== */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-small);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-secondary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: white;
    transform: translateY(-2px);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--color-danger);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: var(--color-accent);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-legal {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal p {
    margin-bottom: 0.5rem;
}

.developer-credit a {
    color: var(--color-accent);
    text-decoration: none;
}

.developer-credit a:hover {
    text-decoration: underline;
}

/* ===== NOTIFICACIONES ===== */
.success-notification,
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-heavy);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform var(--transition-normal);
}

.success-notification.show,
.error-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.5rem;
}

.notification-text {
    color: var(--color-secondary);
    font-weight: 500;
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 193, 7, 0.3);
    border-top: 4px solid var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .casinos-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .games-slider {
        padding: 0 40px;
    }
    
    .game-card {
        flex: 0 0 280px;
    }
    
    .promotions-grid,
    .security-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Responsive para Seguridad */
    .seguridad-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .seguridad-feature-card {
        padding: 30px 25px;
    }
    
    .seguridad-banners-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .seguridad-header h2 {
        font-size: 2rem;
    }
    
    .seguridad-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .casino-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .promotion-card,
    .security-card {
        padding: 25px 20px;
    }
    
    .experience-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .games-slider {
        padding: 0 20px;
    }
    
    .game-card {
        flex: 0 0 260px;
        padding: 25px 20px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    /* Responsive para Seguridad en móvil */
    .seguridad-section {
        padding: 60px 0;
    }
    
    .seguridad-feature-card {
        padding: 25px 20px;
    }
    
    .seguridad-banners-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
    }
    
    .seguridad-banner {
        padding: 15px;
    }
    
    .seguridad-header h2 {
        font-size: 1.8rem;
    }
    
    .seguridad-subtitle {
        font-size: 1rem;
    }
    
    .seguridad-banners-header h3 {
        font-size: 1.5rem;
    }
}

/* ===== ESTADOS ESPECIALES ===== */
.menu-open {
    overflow: hidden;
}

.casino-card.hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(255, 111, 0, 0.3);
}

/* ===== ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== UTILIDADES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== ESTADOS DE ERROR ===== */
.error-message {
    text-align: center;
    padding: 3rem;
    background: rgba(198, 40, 40, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid var(--color-danger);
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-message h3 {
    color: var(--color-danger);
    margin-bottom: 1rem;
}

.error-message p {
    color: #666;
    margin-bottom: 2rem;
}

.btn-retry {
    background: var(--color-danger);
    color: white;
}

.btn-retry:hover {
    background: #b71c1c;
}

/* ===== MEJORAS DE PERFORMANCE ===== */
img {
    max-width: 100%;
    height: auto;
}

.lazy {
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lazy.loaded {
    opacity: 1;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, #FDFDFD, #F8F9FA);
    margin: 15% auto;
    padding: 40px;
    border: 3px solid #FFD700;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    font-family: 'Cinzel', serif;
    color: #2E3A87;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.modal-content p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(45deg, #FFD700, #DAA520);
    color: #2C3E50;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #DAA520, #FFD700);
}

.btn-secondary {
    background: linear-gradient(45deg, #6A4C93, #2E3A87);
    color: #FDFDFD;
    box-shadow: 0 5px 15px rgba(46, 58, 135, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 58, 135, 0.5);
    background: linear-gradient(45deg, #2E3A87, #6A4C93);
}

/* Cookie Banner Styles */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2E3A87, #6A4C93);
    color: #FDFDFD;
    padding: 20px 0;
    z-index: 9998;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.cookie-links {
    margin-top: 10px;
}

.cookie-links a {
    color: #FFD700;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.cookie-links a:hover {
    color: #DAA520;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.text-gold {
    color: #FFD700 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 5% auto;
        padding: 25px 15px;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
    }
    
    .modal-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}