/* Bookmaker-specific styles */

/* Bookmaker logo hover */
.bookmaker-logo {
    transition: transform 0.2s ease;
}

.bookmaker-card:hover .bookmaker-logo {
    transform: scale(1.05);
}

/* Top bookmakers sidebar */
.top-bookmaker-item {
    transition: all 0.2s ease;
}

.top-bookmaker-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transform: translateX(5px);
}

/* Sports grid */
.sport-item {
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.sport-item:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
    transform: translateY(-1px);
}

/* Filters section */
.filters-section {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.sticky-filters {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
}

/* Filter checkbox */
.filter-checkbox {
    transition: all 0.2s ease;
}

.filter-checkbox:checked {
    transform: scale(1.1);
}

/* Sidebar sections */
.sidebar-section {
    transition: all 0.3s ease;
}

.sidebar-section:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Gradient utilities */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blue load more button */
#load-more-btn:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s infinite;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sidebar-mobile {
        order: -1;
        margin-bottom: 2rem;
    }
}
