/* Roulettelier - Styles personnalisés */
body {
    background-color: #121212;
    color: #D1D5DB;
    font-family: 'Poppins', sans-serif;
}

/* Header with backdrop blur */
.header-backdrop {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(17, 24, 39, 0.85);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.header-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.header-logo {
    height: 3rem;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(90deg, #A855F7, #FACC15);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Casino cards */
.casino-card {
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(168, 85, 247, 0.4);
}

/* Filter buttons */
.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: linear-gradient(90deg, #A855F7, #FACC15);
    color: #121212;
}

.filter-btn:hover {
    background: linear-gradient(90deg, #A855F7, #FACC15);
    color: #121212;
}

/* Top badges */
.top-badge {
    background: linear-gradient(90deg, #FACC15, #F59E0B);
    color: #121212;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    position: absolute;
    top: -8px;
    right: -8px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(250, 204, 21, 0.3);
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(135deg, #A855F7, #FACC15);
    color: #121212;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #A855F7;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .casino-card {
        margin-bottom: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .filter-btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #A855F7, #FACC15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9333EA, #EAB308);
}

/* Star ratings */
.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Modal enhancements */
.modal-overlay {
    backdrop-filter: blur(8px);
    background: rgba(18, 18, 18, 0.95);
}

.modal-content {
    background: linear-gradient(135deg, #1F1F1F 0%, #2D1B69 100%);
    border: 2px solid #A855F7;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

/* Hover effects for links */
a {
    transition: color 0.3s ease;
}

/* Section dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #A855F7, transparent);
    margin: 3rem 0;
}

/* Badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge-license {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.badge-bonus {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

/* Table styles for casino comparison */
.casino-table {
    border-collapse: collapse;
    width: 100%;
    background: #1F1F1F;
    border-radius: 12px;
    overflow: hidden;
}

.casino-table th,
.casino-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #374151;
}

.casino-table th {
    background: linear-gradient(135deg, #A855F7, #FACC15);
    color: #121212;
    font-weight: 700;
}

.casino-table tr:hover {
    background: rgba(168, 85, 247, 0.05);
}

/* Filter visibility classes */
.filter-license,
.filter-bonus,
.filter-slots,
.filter-netent {
    display: block;
}

.filter-hidden {
    display: none !important;
}

/* Animation for casino cards */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card.animate-in {
    animation: slideInUp 0.5s ease-out;
}

/* Mobile menu styles */
.mobile-menu-open {
    max-height: 300px;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu-closed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

