/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b69 50%, #1a0b2e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Kompakt Tasarım */
.header {
    padding: 15px 0;
    text-align: center;
    position: relative;
}

.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-image {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #8b5cf6, #a855f7, #c084fc);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.5),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 0 0 35px rgba(139, 92, 246, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.2); }
}

.skull-icon {
    font-size: 40px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.roulette-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: conic-gradient(from 0deg, #ff0000, #000000, #ff0000, #000000);
    border-radius: 50%;
    opacity: 0.3;
    animation: rouletteSpin 4s linear infinite;
}

@keyframes rouletteSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 2s ease-in-out infinite alternate;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* VIP Banner - Kompakt */
.vip-banner {
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.vip-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: vipShimmer 2s ease-in-out infinite alternate;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
}

@keyframes vipShimmer {
    0% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    100% { 
        background-position: 100% 50%;
        transform: scale(1.03);
    }
}

/* VIP Sites Section */
.vip-sites-section {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.05));
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.vip-sites-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
}

.vip-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.vip-site-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.1));
    border: 3px solid #ffd700;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 215, 0, 0.7),
        0 0 50px rgba(255, 215, 0, 0.5),
        0 0 75px rgba(255, 215, 0, 0.3);
    animation: vipSiteGlow 2s ease-in-out infinite alternate;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@keyframes vipSiteGlow {
    0% { 
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.3),
            0 0 25px rgba(255, 215, 0, 0.7),
            0 0 50px rgba(255, 215, 0, 0.5),
            0 0 75px rgba(255, 215, 0, 0.3);
        border-color: #ffd700;
    }
    100% { 
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.3),
            0 0 35px rgba(255, 215, 0, 0.9),
            0 0 70px rgba(255, 215, 0, 0.7),
            0 0 105px rgba(255, 215, 0, 0.5);
        border-color: #ffed4e;
    }
}

.vip-site-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.vip-site-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vip-site-left {
    flex-shrink: 0;
}

.vip-site-chip {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    animation: vipChipFloat 3s ease-in-out infinite;
}

@keyframes vipChipFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.vip-site-middle {
    flex: 1;
}

.vip-site-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.vip-site-bonus {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vip-site-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    color: #ffffff;
}

.vip-site-right {
    flex-shrink: 0;
}

.vip-site-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vip-site-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Casino Cards Section */
.casino-cards-section {
    padding: 30px 0;
}

.casino-cards-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

.casino-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.casino-card {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.casino-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover::before {
    opacity: 1;
}

/* Card Specific Styles */
.mers-card {
    background: linear-gradient(135deg, #dc2626, #991b1b, #7f1d1d);
    border: 2px solid #fca5a5;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(220, 38, 38, 0.6),
        0 0 40px rgba(220, 38, 38, 0.4),
        0 0 60px rgba(220, 38, 38, 0.2);
    animation: mersNeonGlow 2s ease-in-out infinite alternate;
}

@keyframes mersNeonGlow {
    0% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(220, 38, 38, 0.6),
            0 0 40px rgba(220, 38, 38, 0.4),
            0 0 60px rgba(220, 38, 38, 0.2);
        border-color: #fca5a5;
    }
    100% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(220, 38, 38, 0.8),
            0 0 60px rgba(220, 38, 38, 0.6),
            0 0 90px rgba(220, 38, 38, 0.4);
        border-color: #fecaca;
    }
}

.amg-card {
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
    border: 2px solid #93c5fd;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(37, 99, 235, 0.6),
        0 0 40px rgba(37, 99, 235, 0.4),
        0 0 60px rgba(37, 99, 235, 0.2);
    animation: amgNeonGlow 2.5s ease-in-out infinite alternate;
}

@keyframes amgNeonGlow {
    0% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(37, 99, 235, 0.6),
            0 0 40px rgba(37, 99, 235, 0.4),
            0 0 60px rgba(37, 99, 235, 0.2);
        border-color: #93c5fd;
    }
    100% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(37, 99, 235, 0.8),
            0 0 60px rgba(37, 99, 235, 0.6),
            0 0 90px rgba(37, 99, 235, 0.4);
        border-color: #dbeafe;
    }
}

.hojabet-card {
    background: linear-gradient(135deg, #16a34a, #15803d, #166534);
    border: 2px solid #86efac;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(22, 163, 74, 0.6),
        0 0 40px rgba(22, 163, 74, 0.4),
        0 0 60px rgba(22, 163, 74, 0.2);
    animation: hojabetNeonGlow 3s ease-in-out infinite alternate;
}

@keyframes hojabetNeonGlow {
    0% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(22, 163, 74, 0.6),
            0 0 40px rgba(22, 163, 74, 0.4),
            0 0 60px rgba(22, 163, 74, 0.2);
        border-color: #86efac;
    }
    100% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(22, 163, 74, 0.8),
            0 0 60px rgba(22, 163, 74, 0.6),
            0 0 90px rgba(22, 163, 74, 0.4);
        border-color: #bbf7d0;
    }
}

/* Dynamic Casino Card Colors - Default fallback */
.casino-card:not(.mers-card):not(.amg-card):not(.hojabet-card) {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed, #6d28d9);
    border: 2px solid #c084fc;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.2);
    animation: defaultNeonGlow 2.2s ease-in-out infinite alternate;
}

@keyframes defaultNeonGlow {
    0% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(139, 92, 246, 0.6),
            0 0 40px rgba(139, 92, 246, 0.4),
            0 0 60px rgba(139, 92, 246, 0.2);
        border-color: #c084fc;
    }
    100% { 
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(139, 92, 246, 0.8),
            0 0 60px rgba(139, 92, 246, 0.6),
            0 0 90px rgba(139, 92, 246, 0.4);
        border-color: #e9d5ff;
    }
}

.card-content {
    display: flex;
    align-items: center;
    padding: 18px;
    gap: 15px;
}

.card-left {
    flex-shrink: 0;
}

.casino-chip {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 0 15px rgba(0, 0, 0, 0.3),
        inset 0 0 8px rgba(255, 255, 255, 0.1);
    animation: chipFloat 3s ease-in-out infinite;
}

@keyframes chipFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(3deg); }
}

.mers-chip {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    border: 3px solid #fca5a5;
}

.amg-chip {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border: 3px solid #93c5fd;
}

.hojabet-chip {
    background: linear-gradient(45deg, #16a34a, #22c55e);
    border: 3px solid #86efac;
}

/* Dynamic Casino Chip Colors - Default fallback */
.casino-chip:not(.mers-chip):not(.amg-chip):not(.hojabet-chip) {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border: 3px solid #c084fc;
}

.chip-center {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.card-middle {
    flex: 1;
}

.casino-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.bonus-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bonus-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.card-right {
    flex-shrink: 0;
}

.bonus-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bonus-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.mers-btn {
    background: linear-gradient(45deg, #dc2626, #ef4444);
}

.amg-btn {
    background: linear-gradient(45deg, #2563eb, #3b82f6);
}

.hojabet-btn {
    background: linear-gradient(45deg, #16a34a, #22c55e);
}

/* Dynamic Casino Button Colors - Default fallback */
.bonus-btn:not(.mers-btn):not(.amg-btn):not(.hojabet-btn) {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
}

/* Telegram Section - Kompakt */
.telegram-section {
    padding: 25px 0;
}

.telegram-card {
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
    border-radius: 15px;
    padding: 18px;
    box-shadow: 
        0 8px 25px rgba(37, 99, 235, 0.3),
        0 0 20px rgba(37, 99, 235, 0.6),
        0 0 40px rgba(37, 99, 235, 0.4),
        0 0 60px rgba(37, 99, 235, 0.2);
    border: 2px solid #93c5fd;
    animation: telegramNeonGlow 2.8s ease-in-out infinite alternate;
}

@keyframes telegramNeonGlow {
    0% { 
        box-shadow: 
            0 8px 25px rgba(37, 99, 235, 0.3),
            0 0 20px rgba(37, 99, 235, 0.6),
            0 0 40px rgba(37, 99, 235, 0.4),
            0 0 60px rgba(37, 99, 235, 0.2);
        border-color: #93c5fd;
    }
    100% { 
        box-shadow: 
            0 8px 25px rgba(37, 99, 235, 0.3),
            0 0 30px rgba(37, 99, 235, 0.8),
            0 0 60px rgba(37, 99, 235, 0.6),
            0 0 90px rgba(37, 99, 235, 0.4);
        border-color: #dbeafe;
    }
}

.telegram-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.telegram-left {
    flex-shrink: 0;
}

.telegram-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.5);
}

.paper-plane {
    font-size: 1.3rem;
    color: white;
}

.telegram-middle {
    flex: 1;
}

.telegram-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.telegram-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

.telegram-right {
    flex-shrink: 0;
}

.telegram-btn {
    padding: 12px 20px;
    background: linear-gradient(45deg, #60a5fa, #3b82f6);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Footer - Kompakt */
.footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer p {
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Responsive Design - Kompakt */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .skull-icon {
        font-size: 35px;
    }
    
    .vip-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .card-content {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        padding: 12px;
        align-items: center;
    }
    
    .casino-name {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }
    
    .bonus-info {
        gap: 2px;
    }
    
    .bonus-text {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .casino-chip {
        width: 45px;
        height: 45px;
    }
    
    .chip-center {
        font-size: 0.9rem;
    }
    
    .bonus-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .telegram-content {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        align-items: center;
    }
    
    .telegram-title {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .telegram-subtitle {
        font-size: 0.75rem;
    }
    
    .telegram-icon {
        width: 40px;
        height: 40px;
    }
    
    .paper-plane {
        font-size: 1rem;
    }
    
    .telegram-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
    
    .skull-icon {
        font-size: 30px;
    }
    
    .vip-text {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .vip-sites-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vip-site-card {
        padding: 15px;
    }
    
    .vip-site-content {
        gap: 15px;
    }
    
    .vip-site-chip {
        width: 60px;
        height: 60px;
    }
    
    .vip-site-name {
        font-size: 1.4rem;
    }
    
    .vip-site-text {
        font-size: 0.9rem;
    }
    
    .vip-site-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .casino-cards-title {
        font-size: 1.5rem;
    }
    
    .card-content {
        flex-direction: row;
        text-align: left;
        gap: 10px;
        padding: 10px;
        align-items: center;
    }
    
    .casino-name {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .bonus-info {
        gap: 1px;
    }
    
    .bonus-text {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .casino-chip {
        width: 40px;
        height: 40px;
    }
    
    .chip-center {
        font-size: 0.8rem;
    }
    
    .bonus-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        min-width: 55px;
    }
    
    .telegram-card {
        padding: 10px;
    }
    
    .telegram-content {
        flex-direction: row;
        text-align: left;
        gap: 10px;
        align-items: center;
    }
    
    .telegram-title {
        font-size: 0.9rem;
        margin-bottom: 1px;
    }
    
    .telegram-subtitle {
        font-size: 0.7rem;
    }
    
    .telegram-icon {
        width: 35px;
        height: 35px;
    }
    
    .paper-plane {
        font-size: 0.9rem;
    }
    
    .telegram-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        min-width: 55px;
    }
    
    .vip-sites-title {
        font-size: 1.5rem;
    }
    
    .vip-site-card {
        padding: 12px;
    }
    
    .vip-site-content {
        gap: 12px;
    }
    
    .vip-site-chip {
        width: 50px;
        height: 50px;
    }
    
    .vip-site-name {
        font-size: 1.2rem;
    }
    
    .vip-site-text {
        font-size: 0.8rem;
    }
    
    .vip-site-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .casino-cards-title {
        font-size: 1.3rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card {
    animation: fadeInUp 0.6s ease-out;
}

.casino-card:nth-child(1) { animation-delay: 0.1s; }
.casino-card:nth-child(2) { animation-delay: 0.2s; }
.casino-card:nth-child(3) { animation-delay: 0.3s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a0b2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #a855f7, #c084fc);
}
