/* Custom CSS for Shakebet Casino */

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Text Shadow Effects */
.text-shadow-3d {
    text-shadow: 
        2px 2px 0px #000,
        4px 4px 0px #333,
        6px 6px 0px #666;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-star, .floating-explosion {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.star-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: #fff201;
}

.star-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    color: #fff201;
}

.star-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    color: #fff201;
}

.star-4 {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    color: #fff201;
}

.explosion-1 {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    font-size: 3rem;
}

.explosion-2 {
    top: 70%;
    right: 40%;
    animation-delay: 5s;
    font-size: 2.5rem;
}

.explosion-3 {
    top: 50%;
    left: 5%;
    animation-delay: 1.5s;
    font-size: 2rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px #fff201;
    }
    50% {
        box-shadow: 0 0 40px #fff201, 0 0 60px #fff201;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes spotlight {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Header Styles */
.header-float {
    animation: slideInUp 1s ease-out;
    backdrop-filter: blur(10px);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

/* Button Styles */
.cta-button {
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.hover-transform:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Card Styles */
.bonus-box {
    animation: pulse-glow 2s infinite;
}

.step-card, .game-card, .portfolio-card, .support-card, .promo-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-overlay {
    transition: all 0.3s ease;
}

.pulse-icon {
    animation: bounce 2s infinite;
}

/* VIP Card Styles */
.vip-card {
    transition: all 0.3s ease;
    position: relative;
}

.vip-card:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Provider Card Styles */
.provider-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.provider-card:hover {
    transform: scale(1.1);
    background: #fff201;
    color: #0a0a0a;
}

/* FAQ Styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: -5px 0 15px rgba(255, 242, 1, 0.3);
}

/* Trust Badge Styles */
.trust-badge {
    transition: all 0.3s ease;
    cursor: pointer;
}

.trust-badge:hover {
    transform: scale(1.1) rotateY(10deg);
}

/* Parallax Elements */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-star, .floating-explosion {
        font-size: 1.5rem;
    }
    
    .text-shadow-3d {
        text-shadow: 
            1px 1px 0px #000,
            2px 2px 0px #333;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .bonus-box {
        padding: 20px;
    }
    
    .bonus-box .text-6xl {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .floating-elements {
        display: none;
    }
    
    .header-float {
        margin: 8px;
    }
    
    .bonus-box .text-6xl {
        font-size: 2.5rem;
    }
    
    .step-card, .game-card, .portfolio-card {
        padding: 16px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-card, .game-card, .portfolio-card, .support-card, .promo-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Spotlight Effect */
.cta-button {
    background-image: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: spotlight 3s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #fff201;
    border-radius: 0;
    border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
    background: #fe2a18;
}

/* High Contrast Focus States */
.cta-button:focus,
.nav-link:focus {
    outline: 3px solid #fff201;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .floating-elements,
    .cta-button,
    nav {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}