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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #1A1A1A;
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

/* RTP Bar Styles */
.rtp-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.rtp-bar {
    height: 100%;
    background: linear-gradient(90deg, #6B21A8, #D4AF37, #6B21A8);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Jackpot Counter Styles */
.jackpot-container {
    animation: pulse 2s infinite ease-in-out;
}

#jackpot-counter {
    background: linear-gradient(to right, #D4AF37, #FFFFFF, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Game Card Styles */
.game-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: #D4AF37;
}

/* Custom Media Queries */
@media (max-width: 768px) {
    .container {
        padding-bottom: 60px; /* Space for mobile footer */
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .jackpot-container {
        margin-bottom: 10px;
    }
    
    #jackpot-counter {
        font-size: 1.5rem;
    }
    
    .rtp-bar-container {
        height: 15px;
    }
    
    .rtp-bar {
        font-size: 10px;
    }
}

/* Button Hover Effects */
a.bg-accent:hover {
    box-shadow: 0 0 15px #D4AF37;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #6B21A8;
    border-radius: 4px;
}

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