        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: #0f172a;
            min-height: 100vh;
        }
        
        /* Animated background */
        .page-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            opacity: 0.05;
            z-index: 0;
        }
        
        .page-content {
            position: relative;
            z-index: 1;
        }
        
        /* Hero section */
        .casino-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .casino-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }
        
        .hero-content {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .casino-hero h1 {
            font-size: 3rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 800;
            text-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        
        .casino-hero .subtitle {
            color: rgba(255,255,255,0.95);
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .hero-stat {
            text-align: center;
        }
        
        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            display: block;
        }
        
        .hero-stat-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            margin-top: 5px;
        }
        
        /* Filters section */
        .filters-wrapper {
            max-width: 1400px;
            margin: -40px auto 40px;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }
        
        .filters-container {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        
        .filters-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .filters-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .clear-filters {
            background: #f1f5f9;
            border: none;
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            color: #64748b;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .clear-filters:hover {
            background: #e2e8f0;
            color: #475569;
        }
        
        .filters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .filter-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #475569;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .filter-group input,
        .filter-group select {
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
            background: white;
        }
        
        .filter-group input:focus,
        .filter-group select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
        }
        
        /* Results bar */
        .results-bar {
            max-width: 1400px;
            margin: 0 auto 30px;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .results-count {
            font-size: 1rem;
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .sort-options {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .sort-btn {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.85rem;
            backdrop-filter: blur(10px);
        }
        
        .sort-btn:hover,
        .sort-btn.active {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
        }
        
        /* Casinos grid - ULTRA COMPACT LIST */
        .casinos-grid {
            max-width: 900px;
            margin: 0 auto 40px;
            padding: 40px 40px 60px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        /* Casino card - COMPACT & REFINED with MEDAL BORDERS */
        .casino-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid #f1f5f9;
            display: grid;
            grid-template-columns: 60px 1fr auto;
            align-items: center;
            padding: 12px 16px;
            gap: 14px;
        }
        
        /* Medal borders for ranking */
        .casino-card:nth-child(1) {
            border-color: #FFD700;
            border-width: 3px;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
        }
        
        .casino-card:nth-child(2) {
            border-color: #C0C0C0;
            border-width: 3px;
            box-shadow: 0 4px 20px rgba(192, 192, 192, 0.3);
        }
        
        .casino-card:nth-child(3) {
            border-color: #CD7F32;
            border-width: 3px;
            box-shadow: 0 4px 20px rgba(205, 127, 50, 0.3);
        }
        
        /* Medal badge indicators */
        .casino-card:nth-child(1)::after,
        .casino-card:nth-child(2)::after,
        .casino-card:nth-child(3)::after {
            content: '';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            z-index: 1;
        }
        
        .casino-card:nth-child(1)::after {
            content: '🥇';
            background: linear-gradient(135deg, #FFD700, #FFA500);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
        }
        
        .casino-card:nth-child(2)::after {
            content: '🥈';
            background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
            box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
        }
        
        .casino-card:nth-child(3)::after {
            content: '🥉';
            background: linear-gradient(135deg, #CD7F32, #B8860B);
            box-shadow: 0 2px 8px rgba(205, 127, 50, 0.4);
        }
        
        .casino-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .casino-card:hover::before {
            opacity: 1;
        }
        
        .casino-card:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 20px rgba(102,126,234,0.15);
            border-color: #e0e7ff;
        }
        
        /* Logo section - COMPACT */
        .casino-logo-section {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .casino-logo-container {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fafbfc, #f5f7fa);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: all 0.3s;
        }
        
        .casino-card:hover .casino-logo-container {
            box-shadow: 0 4px 12px rgba(102,126,234,0.1);
        }
        
        .casino-logo-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        /* Info section - COMPACT */
        .casino-info-section {
            flex: 1;
            min-width: 0;
        }
        
        .casino-header-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 6px;
            flex-wrap: wrap;
        }
        
        .casino-name {
            font-size: 1.05rem;
            font-weight: 800;
            color: #1e293b;
            margin: 0;
            letter-spacing: -0.01em;
        }
        
        .adm-badge-inline {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 2px 7px;
            border-radius: 6px;
            font-size: 0.6rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 2px;
            box-shadow: 0 1px 4px rgba(16,185,129,0.2);
        }
        
        .verified-badge {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 2px 7px;
            border-radius: 6px;
            font-size: 0.6rem;
            font-weight: 700;
            box-shadow: 0 1px 4px rgba(59,130,246,0.2);
        }
        
        .casino-promo-inline {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-left: 3px solid #f59e0b;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #92400e;
            margin: 6px 0;
            box-shadow: 0 1px 6px rgba(245,158,11,0.12);
            display: inline-block;
        }
        
        .casino-description-inline {
            color: #64748b;
            font-size: 0.75rem;
            line-height: 1.5;
            margin: 4px 0 0 0;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .casino-features-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 6px;
        }
        
        .casino-feature-inline {
            background: #f1f5f9;
            padding: 3px 8px;
            border-radius: 5px;
            font-size: 0.65rem;
            color: #64748b;
            font-weight: 600;
            border: 1px solid #e2e8f0;
            transition: all 0.2s;
        }
        
        .casino-card:hover .casino-feature-inline {
            background: #e0e7ff;
            border-color: #c7d2fe;
            color: #5b21b6;
        }
        
        /* CTA section - COMPACT with Review Button */
        .casino-cta-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .cta-buttons-row {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        
        .casino-cta-compact {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(102,126,234,0.3);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }
        
        .casino-cta-compact::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }
        
        .casino-cta-compact:hover::before {
            width: 200px;
            height: 200px;
        }
        
        .casino-cta-compact:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(102,126,234,0.4);
        }
        
        .casino-cta-compact span {
            position: relative;
            z-index: 1;
        }
        
        .casino-review-btn {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.2s;
            cursor: pointer;
            white-space: nowrap;
            display: inline-block;
        }
        
        .casino-review-btn:hover {
            color: #764ba2;
            text-decoration: underline;
        }
        
        .adm-disclaimer {
            font-size: 0.6rem;
            color: #64748b;
            text-align: center;
            line-height: 1.4;
            margin-top: 4px;
        }
        
        .adm-disclaimer a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }
        
        .adm-disclaimer a:hover {
            text-decoration: underline;
        }
        
        /* No results */
        .no-results {
            text-align: center;
            padding: 80px 20px;
            color: white;
        }
        
        .no-results-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.5;
        }
        
        .no-results h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .no-results p {
            font-size: 1.1rem;
            opacity: 0.8;
        }
        
        /* Loading animation */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .loading {
            animation: pulse 1.5s infinite;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .casino-hero h1 {
                font-size: 2rem;
            }
            
            .casino-hero .subtitle {
                font-size: 1rem;
            }
            
            .hero-stats {
                gap: 25px;
            }
            
            .hero-stat-number {
                font-size: 2rem;
            }
            
            .casino-card {
                grid-template-columns: 50px 1fr;
                grid-template-rows: auto auto;
                gap: 10px;
                padding: 10px 12px;
            }
            
            .casino-logo-section {
                grid-row: 1 / 3;
            }
            
            .casino-logo-container {
                width: 50px;
                height: 50px;
            }
            
            .casino-cta-section {
                grid-column: 2;
                width: 100%;
            }
            
            .cta-buttons-row {
                width: 100%;
                flex-direction: column;
                gap: 6px;
            }
            
            .casino-cta-compact,
            .casino-review-btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .filters-grid {
                grid-template-columns: 1fr;
            }
            
            .filters-container {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .casino-hero {
                padding: 60px 15px 40px;
            }
            
            .casino-hero h1 {
                font-size: 1.6rem;
            }
            
            .casino-card {
                border-radius: 10px;
            }
            
            .casino-name {
                font-size: 0.95rem;
            }
            
            .casino-promo-inline,
            .casino-description-inline {
                font-size: 0.7rem;
            }
            
            .casino-feature-inline {
                font-size: 0.6rem;
                padding: 2px 6px;
            }
            
            .casino-cta-compact {
                font-size: 0.8rem;
                padding: 8px 16px;
            }
            
            .casino-review-btn {
                font-size: 0.7rem;
                padding: 6px 12px;
            }
        }
