/* CASINO SLOTS - NEON FUTURISTIC DESIGN */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF00FF;
    --secondary: #00FFFF;
    --accent: #FFD700;
    --dark: #0f0f23;
    --dark-light: #1a1a3e;
    --text: #ffffff;
    --text-muted: #a0a0c0;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* NEON HEADER */
.neon-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    height: 80px;
}

.header-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-neon {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-icon-slot {
    font-size: 42px;
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-neon {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link-neon {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s;
    padding: 8px 0;
}

.nav-link-neon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

.nav-link-neon:hover {
    color: var(--text);
}

.nav-link-neon:hover::after {
    width: 100%;
}

.btn-neon-play {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-neon-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-neon-play:hover::before {
    width: 300px;
    height: 300px;
}

.btn-neon-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 40px rgba(255, 0, 255, 0.9);
}

/* HERO SECTION - FUTURISTIC */
.hero-futuristic {
    position: relative;
    margin-top: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
    z-index: 1;
}

.hero-content-futuristic {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-title-mega {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF00FF, #00FFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-stats-neon {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-neon-box {
    text-align: center;
}

.stat-neon-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-neon-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* CATEGORY TABS - FUTURISTIC */
.category-tabs-neon {
    max-width: 1600px;
    margin: 60px auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    background: var(--dark);
}

.tabs-grid-neon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tab-card-neon {
    background: rgba(26, 26, 62, 0.6);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tab-card-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.3), transparent);
    transition: left 0.5s;
}

.tab-card-neon:hover::before {
    left: 100%;
}

.tab-card-neon:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    transform: translateY(-5px);
}

.tab-card-neon.active {
    background: rgba(255, 0, 255, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
}

.tab-icon-neon {
    font-size: 56px;
    margin-bottom: 15px;
    display: block;
}

.tab-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tab-count {
    font-size: 14px;
    color: var(--text-muted);
}

/* CASINO GRID - FUTURISTIC CARDS */
.casinos-grid-neon {
    max-width: 1600px;
    margin: 0 auto 60px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    background: var(--dark);
}

.section-title-neon {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title-neon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
}

.casino-card-futuristic {
    background: rgba(26, 26, 62, 0.6);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.casino-card-futuristic::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.casino-card-futuristic:hover::before {
    opacity: 1;
}

.casino-card-futuristic:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 60px rgba(255, 0, 255, 0.6);
    transform: translateY(-10px);
}

.card-rank-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    z-index: 5;
    pointer-events: none;
}

.card-header-slot {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.casino-logo-futuristic {
    width: 90px;
    height: 90px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
}

.casino-logo-futuristic img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder-futuristic {
    font-size: 48px;
}

.casino-info-slot {
    flex: 1;
}

.casino-name-slot {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rating-neon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
}

.rating-number-neon {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.games-count-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--secondary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary);
}

.slot-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.feature-item-slot {
    padding: 12px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.jackpot-display {
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 0, 255, 0.2));
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
    border: 2px solid var(--accent);
    position: relative;
    z-index: 1;
}

.jackpot-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.jackpot-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.card-actions-slot {
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 25px;
    position: relative;
    z-index: 10;
}

.btn-play-futuristic {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-play-futuristic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-play-futuristic:hover::before {
    width: 300px;
    height: 300px;
}

.btn-play-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 40px rgba(255, 0, 255, 0.9);
}

.btn-info-futuristic {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-info-futuristic:hover {
    border-color: var(--primary);
    background: rgba(255, 0, 255, 0.1);
    text-decoration: none;
}

/* FOOTER - NEON */
/* ============================================
   FOOTER ENHANCED
   ============================================ */
.footer-neon {
    background: linear-gradient(180deg, rgba(15, 15, 35, 0.6), rgba(10, 10, 25, 0.95));
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary)) 1;
    padding: 60px 40px 30px;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.footer-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        var(--secondary), 
        var(--primary), 
        transparent
    );
    animation: borderFlow 3s ease-in-out infinite;
}

@keyframes borderFlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-content-neon {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column-neon {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-neon {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.4));
}

.footer-brand-icon {
    font-size: 42px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-neon {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-neon {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.footer-link-neon::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-link-neon:hover {
    color: var(--primary);
    padding-left: 25px;
    text-decoration: none;
}

.footer-link-neon:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon-neon {
    width: 45px;
    height: 45px;
    background: rgba(255, 0, 255, 0.1);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon-neon:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.4);
}

.footer-age-badge {
    padding: 15px 25px;
    background: linear-gradient(135deg, #ff0000, #ff6b00);
    border-radius: 15px;
    font-weight: 900;
    font-size: 32px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.6); }
    50% { box-shadow: 0 0 50px rgba(255, 0, 0, 0.9); }
}

.footer-bottom-neon {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 0, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright-neon {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.footer-payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-icon {
    width: 50px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.3s;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-disclaimer-neon {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .footer-content-neon {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-neon {
        padding: 40px 20px 20px;
    }
    
    .footer-content-neon {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-brand-neon {
        font-size: 28px;
    }
    
    .footer-age-badge {
        font-size: 24px;
        padding: 12px 20px;
    }
    
    .footer-bottom-neon {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-payment-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* SEO CONTENT */
.seo-section-neon {
    max-width: 1400px;
    margin: 100px auto;
    padding: 60px;
    background: rgba(26, 26, 62, 0.6);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 24px;
    position: relative;
    z-index: 10;
}

.seo-section-neon h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-section-neon h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 30px 0 15px;
    color: var(--primary);
}

.seo-section-neon p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.seo-section-neon ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.seo-section-neon li {
    padding: 12px 0 12px 35px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
}

.seo-section-neon li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 20px;
}

/* MOBILE MENU */
.mobile-menu-toggle-neon {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle-neon span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.mobile-menu-neon {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.98);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-bottom: 2px solid var(--primary);
}

.mobile-menu-neon.active {
    display: flex;
}

.mobile-menu-neon a {
    padding: 15px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid rgba(255, 0, 255, 0.3);
    transition: all 0.3s;
}

.mobile-menu-neon a:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .casino-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .tabs-grid-neon {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-neon {
        display: none;
    }
    
    .mobile-menu-toggle-neon {
        display: flex;
    }
    
    .header-wrapper {
        padding: 15px 20px;
    }
    
    .hero-futuristic {
        margin-top: 80px;
        padding: 40px 20px;
    }
    
    .hero-title-mega {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats-neon {
        gap: 30px;
    }
    
    .stat-neon-number {
        font-size: 32px;
    }
    
    .category-tabs-neon {
        padding: 0 20px;
        margin: 40px auto;
    }
    
    .tabs-grid-neon {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tab-card-neon {
        padding: 20px 15px;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .casino-card-futuristic {
        padding: 25px;
        min-height: auto;
    }
    
    .card-rank-badge {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: 15px;
        right: 15px;
        z-index: 10;
    }
    
    .card-header-slot {
        flex-direction: column;
        text-align: center;
        position: relative;
        padding-top: 10px;
    }
    
    .casino-logo-futuristic {
        margin: 0 auto;
    }
    
    .casino-info-slot {
        position: relative;
        z-index: 1;
    }
    
    .casino-name-slot {
        font-size: 20px;
        position: relative;
        z-index: 1;
    }
    
    .slot-features-grid {
        grid-template-columns: 1fr;
    }
    
    .jackpot-amount {
        font-size: 24px;
    }
    
    .card-actions-slot {
        flex-direction: column;
    }
    
    .btn-play-futuristic,
    .btn-info-futuristic {
        width: 100%;
        padding: 14px;
    }
    
    .section-title-neon {
        font-size: 32px;
    }
    
    .footer-content-neon {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links-neon {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 15px 20px;
    }
    
    .hero-futuristic {
        margin-top: 80px;
        padding: 60px 20px;
    }
    
    .casinos-grid-neon {
        padding: 0 20px;
        margin: 0 auto 40px;
    }
    
    .seo-section-neon {
        padding: 30px 20px;
    }
}

/* ANIMATIONS */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* LOADING ANIMATION */
.loader-neon {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 0, 255, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* PAGE HERO */
.page-hero-neon {
    margin-top: 80px;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1a1a3e 0%, #0f0f23 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
}

.page-hero-neon h1 {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

/* REVIEW PAGE STYLES */
.review-page-container {
    margin-top: 80px;
    padding: 60px 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.review-hero-neon {
    text-align: center;
    margin-bottom: 60px;
}

.back-link-neon {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 700;
    transition: all 0.3s;
}

.back-link-neon:hover {
    transform: translateX(-5px);
    text-decoration: none;
}

.review-title-neon {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.rating-large-neon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
}

.stars-large {
    font-size: 32px;
}

.rating-value-large {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-content-neon {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.review-main-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.casino-logo-review {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background: rgba(26, 26, 62, 0.6);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.casino-logo-review img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder-large {
    font-size: 100px;
}

.info-block-neon {
    background: rgba(26, 26, 62, 0.6);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    padding: 35px;
}

.info-block-neon h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary);
}

.info-block-neon p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-muted);
}

.info-block-neon ul {
    list-style: none;
    padding: 0;
}

.info-block-neon ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
}

.info-block-neon ul li:last-child {
    border-bottom: none;
}

.info-block-neon ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.cta-block-neon {
    text-align: center;
    padding: 40px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 20px;
    border: 2px solid var(--primary);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.review-sidebar-neon {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget-neon {
    background: rgba(26, 26, 62, 0.6);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
}

.sidebar-widget-neon h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary);
}

.info-row-neon {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 0, 255, 0.1);
}

.info-row-neon:last-child {
    border-bottom: none;
}

.label-neon {
    color: var(--text-muted);
    font-weight: 600;
}

.value-neon {
    color: var(--white);
    font-weight: 700;
}

.value-neon-gold {
    color: var(--accent);
    font-weight: 900;
    font-size: 20px;
}

.pros-list-neon {
    list-style: none;
    padding: 0;
}

.pros-list-neon li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
}

.pros-list-neon li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-weight: 900;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .review-content-neon {
        grid-template-columns: 1fr;
    }
    
    .review-sidebar-neon {
        order: 2;
    }
    
    .review-main-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .review-page-container {
        padding: 30px 20px;
    }
    
    .review-title-neon {
        font-size: 36px;
    }
    
    .rating-value-large {
        font-size: 32px;
    }
    
    .info-block-neon {
        padding: 25px 20px;
    }
    
    .casino-logo-review {
        width: 150px;
        height: 150px;
    }
    
    .sidebar-widget-neon {
        padding: 25px 20px;
    }
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-title-neon {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-desc-neon {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

.content-section-neon {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* INFO BOXES */
.info-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-box-neon {
    background: rgba(26, 26, 62, 0.6);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.info-box-neon:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
    transform: translateY(-5px);
}

.info-icon-neon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.info-box-neon h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.info-box-neon p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

