/* Extracted from best-casinos.html block #1 attrs:  */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        /* Header Styles */
        header {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover,
        .nav-menu a.active {
            color: #667eea;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }
        
        .play-now-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .play-now-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }
        
        /* Breadcrumb */
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem 0;
        }
        
        .breadcrumb ul {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .breadcrumb li {
            color: white;
            opacity: 0.9;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .breadcrumb a:hover {
            opacity: 0.8;
        }
        
        .breadcrumb .separator {
            opacity: 0.5;
        }
        
        /* Main Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        /* Hero Section */
        .hero {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            position: relative;
            z-index: 1;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        /* Quick Stats */
        .quick-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .stat-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(102, 126, 234, 0.1);
            transition: transform 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .stat-value {
            font-weight: bold;
            color: #667eea;
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Content Sections */
        .content-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #333;
            position: relative;
            padding-bottom: 1rem;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }
        
        /* Casino Filter */
        .filter-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            color: white;
        }
        
        .filter-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .filter-label {
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .filter-select {
            padding: 0.75rem;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1rem;
        }
        
        .filter-select option {
            background: #667eea;
            color: white;
        }
        
        .filter-btn {
            background: white;
            color: #667eea;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1.5rem;
        }
        
        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Casino Cards */
        .casino-card {
            background: linear-gradient(145deg, #ffffff 0%, #fafaff 100%);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 2px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s;
            position: relative;
        }
        
        .casino-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
            border-color: #667eea;
        }
        
        .casino-rank {
            position: absolute;
            top: -15px;
            left: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .casino-header {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 1.5rem;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-top: 0.5rem;
        }
        
        .casino-logo {
            width: 120px;
            height: 80px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 2px solid #eee;
            font-weight: bold;
            color: #667eea;
        }
        
        .casino-info {
            flex: 1;
        }
        
        .casino-name {
            font-size: 1.8rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 0.5rem;
        }
        
        .casino-tagline {
            color: #666;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .casino-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .stars {
            color: #ffd700;
            font-size: 1.2rem;
        }
        
        .rating-text {
            color: #666;
            font-size: 0.9rem;
        }
        
        .casino-cta {
            text-align: center;
        }
        
        .bonus-badge {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: bold;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .play-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .play-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }
        
        .casino-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .feature-box {
            background: rgba(102, 126, 234, 0.05);
            padding: 1rem;
            border-radius: 10px;
            border-left: 3px solid #667eea;
        }
        
        .feature-label {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.3rem;
        }
        
        .feature-value {
            font-weight: bold;
            color: #333;
        }
        
        .pros-cons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .pros, .cons {
            padding: 1.5rem;
            border-radius: 12px;
        }
        
        .pros {
            background: linear-gradient(145deg, #e8f5e9 0%, #f1f8f4 100%);
            border-left: 4px solid #2e7d32;
        }
        
        .cons {
            background: linear-gradient(145deg, #ffebee 0%, #fef5f7 100%);
            border-left: 4px solid #c62828;
        }
        
        .pros h4, .cons h4 {
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }
        
        .pros h4 {
            color: #2e7d32;
        }
        
        .cons h4 {
            color: #c62828;
        }
        
        .pros ul, .cons ul {
            list-style: none;
            margin-left: 0;
        }
        
        .pros li, .cons li {
            padding-left: 1.5rem;
            position: relative;
            margin-bottom: 0.5rem;
            color: #555;
            font-size: 0.95rem;
        }
        
        .pros li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2e7d32;
            font-weight: bold;
        }
        
        .cons li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #c62828;
            font-weight: bold;
        }
        
        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-radius: 15px;
            overflow: hidden;
        }
        
        .comparison-table thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .comparison-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table tbody tr:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        }
        
        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .check-icon {
            color: #2ecc71;
            font-weight: bold;
        }
        
        .cross-icon {
            color: #e74c3c;
            font-weight: bold;
        }
        
        /* Live Wins Ticker */
        .wins-ticker-container {
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1rem 0;
        }
        
        .wins-ticker {
            display: flex;
            animation: scroll 30s linear infinite;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .win-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.15);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin: 0 0.5rem;
            min-width: 300px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .win-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .win-details {
            flex: 1;
        }
        
        .win-player {
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }
        
        .win-amount {
            color: #ffd700;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .win-casino {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        
        /* Casino Matcher Styles */
        .matcher-option {
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 1rem;
            text-align: left;
            color: white;
            width: 100%;
        }
        
        .matcher-option:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: white;
            transform: translateX(5px);
        }
        
        .matched-casino-card {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 1.5rem;
            align-items: center;
        }
        
        .matched-logo {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: #667eea;
        }
        
        .matched-info {
            flex: 1;
        }
        
        .matched-name {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        
        .matched-reason {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }
        
        .matched-features {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 0.75rem;
        }
        
        .matched-feature-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .matched-bonus {
            text-align: center;
        }
        
        .matched-bonus-amount {
            background: rgba(46, 204, 113, 0.3);
            border: 2px solid #2ecc71;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 15px;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            display: inline-block;
        }
        
        .matched-cta {
            background: white;
            color: #667eea;
            padding: 0.75rem 1.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: transform 0.3s;
        }
        
        .matched-cta:hover {
            transform: scale(1.05);
        }
        
        /* Payment Methods */
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .payment-card {
            background: linear-gradient(145deg, #fafbff 0%, #ffffff 100%);
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(102, 126, 234, 0.1);
            transition: transform 0.3s;
        }
        
        .payment-card:hover {
            transform: scale(1.05);
        }
        
        .payment-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .payment-name {
            font-size: 0.9rem;
            color: #666;
            font-weight: 600;
        }
        
        /* Bonus Calculator */
        .bonus-calculator {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 2.5rem;
            color: white;
            margin: 2rem 0;
        }
        
        .calc-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .calc-input-group {
            margin-bottom: 1.5rem;
        }
        
        .calc-label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .calc-input, .calc-select {
            width: 100%;
            padding: 0.75rem;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1rem;
        }
        
        .calc-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .calc-select option {
            background: #667eea;
        }
        
        .calc-button {
            width: 100%;
            padding: 1rem;
            background: white;
            color: #667eea;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .calc-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .calc-result {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            text-align: center;
        }
        
        .result-amount {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 1rem 0;
        }
        
        .result-breakdown {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 0.5rem;
        }
        
        /* Trust Badges */
        .trust-section {
            background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 1.5rem;
        }
        
        .trust-item {
            text-align: center;
        }
        
        .trust-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }
        
        .trust-title {
            font-weight: bold;
            color: #333;
            margin-bottom: 0.5rem;
        }
        
        .trust-desc {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            padding: 3rem;
            color: white;
            text-align: center;
            margin: 3rem 0;
        }
        
        .cta-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .cta-btn {
            background: white;
            color: #667eea;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
        }
        
        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        /* Footer */
        footer {
            background: #1a1a2e;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: #667eea;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #667eea;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid #333;
            margin-top: 2rem;
            color: #999;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                flex-direction: column;
                gap: 1rem;
            }
            
            h1 {
                font-size: 1.8rem;
            }
            
            .hero {
                padding: 2rem;
            }
            
            .content-section {
                padding: 2rem;
            }
            
            .casino-header {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .casino-logo {
                margin: 0 auto;
            }
        }
