/* Betazo Casino - Enhanced Localized Styles */

/* Enhanced Banner with Betazo_Image */
.betazo-hero-enhanced {
    background: 
        linear-gradient(rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.6)),
        radial-gradient(circle at 30% 70%, rgba(246, 131, 24, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 79, 0.15) 0%, transparent 40%),
        url('img/Betazo_Image.png') center/cover no-repeat,
        #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Betazo Brand Colors */
.betazo-red {
    color: #ff3030;
}

.betazo-dark-red {
    color: #ff0020;
}

.betazo-bright-red {
    color: #ff1040;
}

/* Enhanced Glow Effects */
.betazo-glow-red {
    text-shadow: 
        0 0 10px #ff3030,
        0 0 20px rgba(255, 48, 48, 0.8),
        0 0 30px rgba(255, 48, 48, 0.6);
}

.betazo-glow-red {
    text-shadow: 
        0 0 10px #ff004f,
        0 0 20px rgba(255, 0, 79, 0.8),
        0 0 30px rgba(255, 0, 79, 0.6);
}

.betazo-glow-cyan {
    text-shadow: 
        0 0 10px #00f6ff,
        0 0 20px rgba(0, 246, 255, 0.8),
        0 0 30px rgba(0, 246, 255, 0.6);
}

/* Dynamic Background Overlay */
.betazo-dynamic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(246, 131, 24, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(0, 246, 255, 0.08) 0%, transparent 45%),
        linear-gradient(135deg, transparent 0%, rgba(255, 0, 79, 0.05) 50%, transparent 100%);
    animation: betazoDynamicShift 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes betazoDynamicShift {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1) rotate(0deg);
    }
    33% { 
        opacity: 0.7; 
        transform: scale(1.02) rotate(1deg);
    }
    66% { 
        opacity: 0.5; 
        transform: scale(1.01) rotate(-1deg);
    }
}

/* Enhanced Button Styles */
.betazo-button {
    background: linear-gradient(135deg, rgba(255, 48, 48, 0.1), rgba(0, 0, 0, 0.4));
    border: 2px solid #ff3030;
    color: #ff3030;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 8px;
    backdrop-filter: blur(15px);
}

.betazo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 48, 48, 0.3), transparent);
    transition: left 0.6s ease;
}

.betazo-button:hover {
    background: linear-gradient(135deg, rgba(255, 48, 48, 0.2), rgba(0, 0, 0, 0.3));
    box-shadow: 
        0 0 25px rgba(255, 48, 48, 0.6),
        0 0 50px rgba(255, 48, 48, 0.3),
        inset 0 0 20px rgba(255, 48, 48, 0.1);
    color: #ffffff;
    transform: scale(1.05);
}

.betazo-button:hover::before {
    left: 100%;
}

/* Enhanced Card Styles */
.betazo-card-enhanced {
    background: linear-gradient(145deg, rgba(255, 48, 48, 0.05), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(255, 48, 48, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.betazo-card-enhanced:hover {
    background: linear-gradient(145deg, rgba(255, 48, 48, 0.1), rgba(0, 0, 0, 0.2));
    border-color: #ff3030;
    box-shadow: 
        0 10px 30px rgba(255, 48, 48, 0.3),
        0 0 20px rgba(255, 48, 48, 0.2);
    transform: translateY(-5px) scale(1.02);
}

/* Animated Logo Enhancement */
.betazo-logo-enhanced {
    filter: 
        drop-shadow(0 0 20px rgba(255, 48, 48, 0.6))
        drop-shadow(0 0 40px rgba(255, 48, 48, 0.3));
    animation: betazoLogoFloat 8s ease-in-out infinite;
}

@keyframes betazoLogoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        filter: 
            drop-shadow(0 0 20px rgba(255, 48, 48, 0.6))
            drop-shadow(0 0 40px rgba(255, 48, 48, 0.3));
    }
    33% { 
        transform: translateY(-15px) rotate(2deg) scale(1.05);
        filter: 
            drop-shadow(0 0 30px rgba(255, 48, 48, 0.8))
            drop-shadow(0 0 60px rgba(255, 48, 48, 0.4));
    }
    66% { 
        transform: translateY(-8px) rotate(-1deg) scale(1.02);
        filter: 
            drop-shadow(0 0 25px rgba(255, 48, 48, 0.7))
            drop-shadow(0 0 50px rgba(255, 48, 48, 0.35));
    }
}

/* Enhanced Text Animations */
.betazo-text-gradient {
    background: linear-gradient(45deg, #ffffff, #ff3030, #ff0020, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: betazoTextGradient 6s ease-in-out infinite;
}

@keyframes betazoTextGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .betazo-hero-enhanced {
        background: 
            linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.7)),
            radial-gradient(circle at center, rgba(246, 131, 24, 0.2) 0%, transparent 60%),
            url('img/Betazo_Image.png') center/cover no-repeat,
            #0a0a0a;
    }
    
    .betazo-dynamic-overlay {
        animation-duration: 8s;
    }
    
    .betazo-logo-enhanced {
        animation-duration: 6s;
    }
}

@media (max-width: 480px) {
    .betazo-hero-enhanced {
        background: 
            linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8)),
            radial-gradient(circle at center, rgba(246, 131, 24, 0.15) 0%, transparent 50%),
            url('img/Betazo_Image.png') center/cover no-repeat,
            #0a0a0a;
    }
}

/* Registration Section Styles */
.registration-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.4);
    margin: 0;
    border-top: 1px solid rgba(246, 131, 24, 0.3);
    border-bottom: 1px solid rgba(246, 131, 24, 0.3);
}

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

.registration-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ff3030;
    text-shadow: 0 0 20px rgba(255, 48, 48, 0.6);
    animation: betazoTextGradient 6s ease-in-out infinite;
}

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

.registration-card {
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(255, 48, 48, 0.08), rgba(0, 0, 0, 0.6));
    border: 2px solid rgba(255, 48, 48, 0.3);
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.registration-card:hover {
    border-color: #ff3030;
    box-shadow: 
        0 15px 40px rgba(255, 48, 48, 0.4),
        inset 0 0 20px rgba(255, 48, 48, 0.1);
    transform: translateY(-10px) scale(1.02);
}

.registration-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 48, 48, 0.6));
    animation: betazoLogoFloat 6s ease-in-out infinite;
}

.registration-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff3030;
    text-shadow: 0 0 10px rgba(255, 48, 48, 0.5);
}

.registration-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.registration-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Custom Scrollbar */
.betazo-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.betazo-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.betazo-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff3030, #ff0020);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 48, 48, 0.5);
}

.betazo-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff0020, #ff3030);
}

/* Mobile responsive for registration */
@media (max-width: 768px) {
    .registration-section {
        padding: 60px 15px;
    }
    
    .registration-title {
        font-size: 2rem;
    }
    
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .registration-card {
        padding: 30px 20px;
    }
}
