        :root {
            /* Professional Casino Review Theme */
            --primary: #8148f9;
            --primary-dark: #4c2a94;
            --primary-light: #a983f8;
            --secondary: #ff7222;
            --secondary-dark: #e05a00;
            --accent: #ffcd1a;
            --accent-dark: #d4a600;
            --dark: #041421;
            --darker: #012643;
            --light: #ffffff;
            --gray-light: #f8f9fa;
            --gray: #e9ecef;
            --gray-dark: #6c757d;
            --success: #e7f5e3;
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            
            /* Shadows */
            --shadow: 0 10px 30px rgba(129, 72, 249, 0.1);
            --shadow-dark: 0 15px 40px rgba(4, 20, 33, 0.15);
            --shadow-secondary: 0 10px 25px rgba(255, 114, 34, 0.15);
            
            /* Border Radius */
            --radius-lg: 20px;
            --radius-md: 12px;
            --radius-sm: 8px;
            
            /* Transitions */
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.8;
            color: var(--dark);
            background: var(--gray-light);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.3;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }
        
        /* Promo Banner with Logo */
        .promo-banner {
            background: var(--gradient-primary);
            color: var(--light);
            padding: 40px 0 50px;
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            box-shadow: var(--shadow-dark);
        }
        
        .promo-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, var(--primary-light) 0%, transparent 50%);
            opacity: 0.2;
        }
        
        .banner-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .site-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }
        
        .logo-image {
            width: 50px;
            height: 50px;
            background: var(--light);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 800;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--light);
        }
        
        .logo-subtext {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 2px;
        }
        
        .promo-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .promo-badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--light);
            font-weight: 800;
            font-size: 0.9rem;
            padding: 8px 25px;
            border-radius: 50px;
            margin-bottom: 20px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        
        .promo-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .promo-subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }
        
        .bonus-highlight {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: var(--light);
            padding: 25px 50px;
            border-radius: var(--radius-lg);
            font-size: 2.5rem;
            font-weight: 800;
            margin: 30px auto;
            display: inline-block;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .bonus-highlight span {
            color: var(--accent);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .promo-cta {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--secondary);
            color: var(--light);
            padding: 22px 50px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.4rem;
            text-decoration: none;
            margin-top: 30px;
            transition: var(--transition);
            box-shadow: 0 10px 25px rgba(255, 114, 34, 0.3);
            text-transform: uppercase;
            border: none;
            cursor: pointer;
        }
        
        .promo-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 114, 34, 0.4);
            background: var(--secondary-dark);
        }
        
        /* Expert Author Section */
        .expert-section {
            background: var(--light);
            padding: 60px;
            border-radius: var(--radius-lg);
            margin-bottom: 40px;
            box-shadow: var(--shadow);
            position: relative;
            border-top: 5px solid var(--accent);
        }
        
        .expert-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .expert-title {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }
        
        .expert-subtitle {
            font-size: 1.2rem;
            color: var(--secondary);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .expert-content {
            display: flex;
            gap: 50px;
            align-items: center;
            margin-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .expert-content {
                flex-direction: column;
            }
        }
        
        .expert-avatar {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--secondary);
            box-shadow: var(--shadow-secondary);
            flex-shrink: 0;
        }
        
        .expert-info {
            flex: 1;
        }
        
        .expert-name {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        .expert-title {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .expert-bio {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark);
            margin-bottom: 25px;
        }
        
        .expert-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 25px;
            background: var(--gray-light);
            border-radius: var(--radius-md);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .expert-quote {
            background: linear-gradient(135deg, rgba(129, 72, 249, 0.05) 0%, rgba(129, 72, 249, 0.02) 100%);
            padding: 40px;
            border-radius: var(--radius-md);
            margin-top: 40px;
            border-left: 4px solid var(--secondary);
            position: relative;
        }
        
        .expert-quote:before {
            content: "“";
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 5rem;
            color: var(--primary-light);
            font-family: 'Playfair Display', serif;
            opacity: 0.3;
        }
        
        .quote-text {
            font-size: 1.4rem;
            line-height: 1.7;
            color: var(--primary-dark);
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .quote-author {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.1rem;
        }
        
        /* Author Header */
        .author-header {
            background: var(--light);
            padding: 40px;
            border-radius: var(--radius-lg);
            margin-bottom: 40px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 30px;
            border-left: 5px solid var(--primary);
        }
        
        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
        }
        
        .author-info h2 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            color: var(--primary-dark);
        }
        
        .author-title {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .author-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: var(--gray-dark);
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Content Sections */
        .content-section {
            background: var(--light);
            padding: 50px;
            border-radius: var(--radius-lg);
            margin-bottom: 40px;
            box-shadow: var(--shadow);
            position: relative;
            border-top: 5px solid var(--primary);
        }
        
        .section-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--gray);
        }
        
        .section-number {
            background: var(--gradient-primary);
            color: var(--light);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            flex-shrink: 0;
        }
        
        .section-title {
            font-size: 2.2rem;
            color: var(--primary-dark);
        }
        
        /* Fact Cards */
        .quick-facts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .fact-card {
            background: var(--light);
            padding: 35px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 5px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        .fact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
        }
        
        .fact-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-dark);
        }
        
        .fact-icon {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .fact-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }
        
        /* Lists and Text Content */
        .fact-list {
            list-style: none;
            padding: 0;
        }
        
        .fact-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .fact-list li:last-child {
            border-bottom: none;
        }
        
        .fact-label {
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .fact-value {
            font-weight: 700;
            color: var(--secondary);
        }
        
        .content-intro {
            font-size: 1.3rem;
            line-height: 1.9;
            margin-bottom: 40px;
            padding: 25px;
            background: linear-gradient(135deg, rgba(129, 72, 249, 0.05) 0%, rgba(129, 72, 249, 0.02) 100%);
            border-radius: var(--radius-md);
            border-left: 4px solid var(--primary);
        }
        
        .content-intro strong {
            color: var(--primary-dark);
        }
        
        .pros-cons-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin: 50px 0;
        }
        
        .pros-box, .cons-box {
            padding: 30px;
            border-radius: var(--radius-md);
        }
        
        .pros-box {
            background: linear-gradient(135deg, rgba(231, 245, 227, 0.8) 0%, rgba(231, 245, 227, 0.4) 100%);
            border: 2px solid rgba(76, 175, 80, 0.2);
        }
        
        .cons-box {
            background: linear-gradient(135deg, rgba(255, 235, 235, 0.8) 0%, rgba(255, 235, 235, 0.4) 100%);
            border: 2px solid rgba(244, 67, 54, 0.2);
        }
        
        .pros-box h3, .cons-box h3 {
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .pros-box h3 {
            color: #2e7d32;
        }
        
        .cons-box h3 {
            color: #c62828;
        }
        
        .pros-cons-list {
            list-style: none;
            padding: 0;
        }
        
        .pros-cons-list li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            font-size: 1.05rem;
        }
        
        .pros-cons-list li:last-child {
            border-bottom: none;
        }
        
        .pros-cons-list li i.fa-check {
            color: #2e7d32;
            background: rgba(46, 125, 50, 0.1);
            padding: 8px;
            border-radius: 50%;
        }
        
        .pros-cons-list li i.fa-times {
            color: #c62828;
            background: rgba(198, 40, 40, 0.1);
            padding: 8px;
            border-radius: 50%;
        }
        
        /* Games Grid */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .game-card {
            background: var(--light);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-dark);
        }
        
        .game-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary);
            color: var(--light);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            z-index: 2;
        }
        
        .game-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .game-content {
            padding: 25px;
        }
        
        .game-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-dark);
        }
        
        .game-provider {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gray-dark);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .game-content p {
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--gray-dark);
        }
        
        .game-features {
            display: flex;
            justify-content: space-between;
            padding-top: 20px;
            border-top: 1px solid var(--gray);
        }
        
        .feature-item {
            text-align: center;
        }
        
        .feature-value {
            font-weight: 800;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .feature-label {
            font-size: 0.8rem;
            color: var(--gray-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Tables */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            box-shadow: var(--shadow);
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        
        .data-table th {
            background: var(--gradient-dark);
            color: var(--light);
            padding: 25px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .data-table td {
            padding: 25px 20px;
            border-bottom: 1px solid var(--gray);
        }
        
        .table-highlight {
            background: linear-gradient(135deg, rgba(129, 72, 249, 0.05) 0%, rgba(129, 72, 249, 0.02) 100%);
        }
        
        .table-badge {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 800;
            font-size: 0.9rem;
        }
        
        .badge-primary {
            background: var(--primary);
            color: var(--light);
        }
        
        /* Payment Methods */
        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .payment-method {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 25px;
            background: var(--gray-light);
            border-radius: var(--radius-sm);
            font-weight: 600;
            border: 2px solid var(--gray);
        }
        
        .payment-method i {
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gradient-dark);
            color: var(--light);
            padding: 70px 40px;
            border-radius: var(--radius-lg);
            margin: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--light);
        }
        
        .cta-text {
            font-size: 1.3rem;
            line-height: 1.9;
            max-width: 900px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--secondary);
            color: var(--light);
            padding: 22px 45px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.3rem;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-secondary);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 114, 34, 0.4);
            background: var(--secondary-dark);
        }
        
        /* Footer with Menu */
        .review-footer {
            background: var(--gradient-dark);
            color: var(--light);
            padding: 60px 0 30px;
            position: relative;
        }
        
        .review-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-logo {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .footer-logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            color: var(--light);
            margin-bottom: 10px;
        }
        
        .footer-description {
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.6;
        }
        
        .footer-menu h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--light);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-menu h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
        }
        
        .footer-menu ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-menu li {
            margin-bottom: 12px;
        }
        
        .footer-menu a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }
        
        .footer-menu a:hover {
            color: var(--light);
            padding-left: 5px;
        }
        
        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        .final-rating {
            font-size: 5rem;
            font-weight: 800;
            color: var(--accent);
            margin: 30px 0;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .verdict-text {
            max-width: 900px;
            margin: 0 auto 50px;
            font-size: 1.3rem;
            line-height: 1.9;
            opacity: 0.95;
        }
        
        .disclaimer {
            font-size: 0.95rem;
            opacity: 0.7;
            max-width: 1000px;
            margin: 60px auto 0;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                max-width: 100%;
            }
        }
        
        @media (max-width: 992px) {
            .promo-title {
                font-size: 2.8rem;
            }
            
            .bonus-highlight {
                font-size: 2rem;
                padding: 20px 40px;
            }
            
            .promo-cta {
                padding: 20px 40px;
                font-size: 1.2rem;
            }
            
            .content-section {
                padding: 40px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pros-cons-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .promo-title {
                font-size: 2.3rem;
            }
            
            .promo-subtitle {
                font-size: 1.2rem;
            }
            
            .bonus-highlight {
                font-size: 1.7rem;
                padding: 15px 30px;
            }
            
            .content-section {
                padding: 30px;
            }
            
            .section-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .section-number {
                margin: 0 auto;
            }
            
            .author-header {
                flex-direction: column;
                text-align: center;
            }
            
            .author-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-menu h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .promo-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .banner-header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .promo-cta, .cta-button {
                width: 100%;
                max-width: 400px;
            }
            
            .payment-methods {
                flex-direction: column;
                align-items: flex-start;
            }
        }