:root {
            --primary-color: #ff9900;
            --primary-light: #ffad33;
            --primary-dark: #e68a00;
            --secondary-color: #8e44ad;
            --secondary-light: #a55bbf;
            --secondary-dark: #6d3584;
            --accent-color: #e74c3c;
            --accent-light: #ec7063;
            --accent-dark: #c0392b;
            --success-color: #27ae60;
            --info-color: #3498db;
            --warning-color: #f39c12;
            --danger-color: #e74c3c;
            --dark-bg: #121212;
            --darker-bg: #080808;
            --medium-bg: #1e1e1e;
            --card-bg: rgba(45, 45, 45, 0.95);
            --card-hover: rgba(60, 60, 60, 0.98);
            --light-text: #f5f5f5;
            --medium-text: #b0b0b0;
            --highlight: #ffcc00;
            --gradient-start: #ff9900;
            --gradient-end: #ff5e62;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--dark-bg);
            background-image: 
                radial-gradient(circle at 80% 20%, rgba(142, 68, 173, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.15) 0%, transparent 40%),
                linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--highlight);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header styles */
        header {
            background-color: rgba(8, 8, 8, 0.95);
            border-bottom: 1px solid rgba(255, 153, 0, 0.3);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        header.scrolled {
            background-color: rgba(8, 8, 8, 0.98);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        header.hidden {
            transform: translateY(-100%);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--light-text);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .logo span {
            color: var(--primary-color);
            text-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
        }

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

        .logo:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            bottom: -5px;
            left: 0;
            transform-origin: center;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .logo:hover:after {
            transform: scaleX(1);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            color: var(--light-text);
            font-weight: 600;
            padding: 8px 0;
            display: block;
            position: relative;
            font-size: 1.05rem;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        nav ul li a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .mobile-menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 1100;
        }

        /* Review-specific styles */
        .review-header {
            padding: 0;
            position: relative;
            overflow: hidden;
            background-color: var(--darker-bg);
            margin-top: 80px;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.8) 100%), url('data:image/webp;base64,UklGRlIAAABXRUJQVlA4TEUAAAAvE8AEAA9whrZt27Zt27Zt27Zt27Zt2za3bXvbtus/ERFxBgDyo6IoiqIoiqIoiqIkiqIoiqIkiqIoiqIkiqIoSqIoiqI8BQA=');
            background-position: center;
            background-size: cover;
            z-index: 1;
            opacity: 0.8;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 153, 0, 0.6);
            box-shadow: 0 0 10px 2px rgba(255, 153, 0, 0.3);
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-30px) translateX(30px);
            }
            50% {
                transform: translateY(-10px) translateX(10px);
            }
            75% {
                transform: translateY(20px) translateX(-20px);
            }
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 500px;
            position: relative;
            z-index: 10;
            padding: 60px 0;
        }

        .hero-info {
            flex: 0 0 55%;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            margin-bottom: 20px;
        }

        .hero-title h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 15px;
            background: linear-gradient(to right, #fff, var(--primary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-title p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0;
            color: var(--medium-text);
            animation: fadeInUp 0.8s 0.2s ease forwards;
            opacity: 0;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            animation: fadeInUp 0.8s 0.4s ease forwards;
            opacity: 0;
        }

        .hero-feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            padding: 10px 18px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-feature:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .hero-feature i {
            color: var(--primary-color);
            font-size: 0.9rem;
        }

        .hero-feature span {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--light-text);
        }

        .hero-cta {
            margin-top: 40px;
            display: flex;
            gap: 20px;
            animation: fadeInUp 0.8s 0.6s ease forwards;
            opacity: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        .btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .btn-primary {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 153, 0, 0.5);
            color: white;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: all 0.8s ease;
        }

        .btn-primary:hover::after {
            transform: translateX(100%);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background: rgba(255, 153, 0, 0.1);
            transform: translateY(-5px);
        }

        .hero-card {
            flex: 0 0 40%;
            background: rgba(30, 30, 30, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 10;
            animation: fadeInRight 0.8s ease forwards;
            transform: perspective(1000px) rotateY(10deg);
            transition: all 0.5s ease;
            overflow: hidden;
        }

        .hero-card:hover {
            transform: perspective(1000px) rotateY(0);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 153, 0, 0.2), transparent 80%);
            z-index: -1;
        }

        .casino-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background: var(--card-bg);
            border-radius: 15px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .casino-logo::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                transparent, 
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent,
                transparent
            );
            transform: rotate(30deg);
            animation: shine 3s infinite linear;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) rotate(30deg);
            }
            100% {
                transform: translateX(100%) rotate(30deg);
            }
        }

        .casino-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .hero-bonus {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }

        .bonus-label {
            font-size: 0.9rem;
            color: var(--medium-text);
            margin-bottom: 8px;
        }

        .bonus-value {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--highlight);
            margin-bottom: 5px;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
        }

        .bonus-desc {
            font-size: 0.9rem;
            color: var(--medium-text);
        }

        .hero-rating {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
        }

        .rating-box, .ranking-box {
            text-align: center;
            flex: 0 0 48%;
            padding: 10px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }

        .rating-label, .ranking-label {
            font-size: 0.85rem;
            color: var(--medium-text);
            margin-bottom: 5px;
        }

        .rating-value, .ranking-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .stars {
            display: inline-flex;
            color: var(--medium-text);
            position: relative;
            font-size: 1rem;
            margin-top: 5px;
        }

        .stars-filled {
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
            color: var(--highlight);
            white-space: nowrap;
            transition: width 0.8s ease;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .hero-btn {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .hero-btn-play {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .hero-btn-play:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
            color: white;
        }

        .hero-btn-play::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: all 0.6s ease;
        }

        .hero-btn-play:hover::after {
            transform: translateX(100%);
        }

        .hero-btn-terms {
            background: transparent;
            border: none;
            color: var(--medium-text);
            font-size: 0.8rem;
            padding: 0;
        }

        .hero-btn-terms:hover {
            color: var(--light-text);
            text-decoration: underline;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: perspective(1000px) translateX(50px) rotateY(10deg);
            }
            to {
                opacity: 1;
                transform: perspective(1000px) translateX(0) rotateY(10deg);
            }
        }

        .review-nav {
            background-color: var(--medium-bg);
            padding: 15px 0;
            position: sticky;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        
        .review-nav.scrolled {
            padding: 10px 0;
            background-color: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(10px);
        }
        
        .review-nav-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            overflow-x: auto;
            white-space: nowrap;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }
        
        .review-nav-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        .review-nav-item {
            color: var(--medium-text);
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .review-nav-item:hover, .review-nav-item.active {
            color: var(--primary-color);
            background: rgba(255, 255, 255, 0.05);
        }
        
        .review-content {
            padding: 80px 0;
        }
        
        .review-section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .review-section:last-child {
            border-bottom: none;
        }
        
        .review-section-header {
            margin-bottom: 40px;
            position: relative;
            text-align: center;
        }
        
        .review-section-title {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--light-text);
            position: relative;
            display: inline-block;
        }
        
        .review-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .review-section-desc {
            max-width: 800px;
            margin: 0 auto;
            color: var(--medium-text);
            font-size: 1.1rem;
        }
        
        .pros-cons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .pros, .cons {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .pros:hover, .cons:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .pros::before, .cons::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--success-color);
        }
        
        .cons::before {
            background: var(--danger-color);
        }
        
        .pros-title, .cons-title {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--light-text);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 10px;
        }
        
        .pros-title i {
            color: var(--success-color);
            margin-right: 10px;
        }
        
        .cons-title i {
            color: var(--danger-color);
            margin-right: 10px;
        }
        
        .pros-list, .cons-list {
            list-style: none;
        }
        
        .pros-item, .cons-item {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .pros-item::before {
            content: "\f00c";
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--success-color);
            position: absolute;
            left: 0;
        }
        
        .cons-item::before {
            content: "\f00d";
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--danger-color);
            position: absolute;
            left: 0;
        }
        
        .info-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .info-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .info-card-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .info-card-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--light-text);
        }
        
        .info-card-value {
            font-size: 1.1rem;
            color: var(--highlight);
            font-weight: 600;
        }
        
        .review-text {
            color: var(--medium-text);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .review-text p {
            margin-bottom: 20px;
        }
        
        .review-text h3 {
            font-size: 1.4rem;
            margin: 30px 0 15px;
            color: var(--light-text);
        }
        
        .review-text ul, .review-text ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .review-text li {
            margin-bottom: 10px;
        }
        
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .payment-method {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100px;
        }
        
        .payment-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: var(--card-hover);
        }
        
        .payment-logo {
            height: 40px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .payment-logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }
        
        .payment-name {
            font-size: 1rem;
            color: var(--medium-text);
            text-align: center;
        }
        
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            overflow: hidden;
        }
        
        .info-table th, .info-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .info-table th {
            color: var(--light-text);
            font-weight: 600;
            background-color: rgba(0, 0, 0, 0.2);
        }
        
        .info-table td {
            color: var(--medium-text);
        }
        
        .info-table tr:hover td {
            background-color: rgba(255, 255, 255, 0.02);
        }

        .info-table tr:last-child td {
            border-bottom: none;
        }
        
        .bonus-overview {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .bonus-title {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--light-text);
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .bonus-item {
            display: flex;
            margin-bottom: 20px;
        }
        
        .bonus-icon {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-right: 15px;
            min-width: 24px;
        }
        
        .bonus-desc {
            flex: 1;
        }
        
        .bonus-desc h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--light-text);
        }
        
        .bonus-desc p {
            color: var(--medium-text);
            font-size: 1rem;
        }
        
        .bonus-terms {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
        }
        
        .terms-title {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--light-text);
        }
        
        .terms-list {
            list-style: none;
        }
        
        .terms-item {
            display: flex;
            margin-bottom: 10px;
        }
        
        .terms-label {
            min-width: 180px;
            color: var(--medium-text);
        }
        
        .terms-value {
            color: var(--light-text);
        }
        
        .steps-guide {
            margin: 40px 0;
        }
        
        .guide-steps {
            counter-reset: step;
        }
        
        .guide-step {
            position: relative;
            padding: 0 0 30px 60px;
        }
        
        .guide-step:last-child {
            padding-bottom: 0;
        }
        
        .guide-step::before {
            content: counter(step);
            counter-increment: step;
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .guide-step::after {
            content: '';
            position: absolute;
            top: 40px;
            left: 20px;
            height: calc(100% - 40px);
            width: 2px;
            background: linear-gradient(to bottom, var(--primary-color), transparent);
        }
        
        .guide-step:last-child::after {
            display: none;
        }
        
        .step-content h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--light-text);
        }
        
        .step-content p {
            color: var(--medium-text);
        }
        
        .game-providers {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }
        
        .provider {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 80px;
        }
        
        .provider:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: var(--card-hover);
        }
        
        .provider img {
            max-width: 100%;
            max-height: 50px;
            object-fit: contain;
        }
        
        .faq-container {
            margin: 40px 0;
        }
        
        .faq-item {
            background: var(--card-bg);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: var(--light-text);
            font-weight: 600;
        }
        
        .faq-question i {
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding: 0 20px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 20px 20px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .games-slider {
            margin: 40px 0;
            position: relative;
            padding: 0 40px;
        }
        
        .games-container {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-behavior: smooth;
            scrollbar-width: none;
            scroll-snap-type: x mandatory;
        }
        
        .games-container::-webkit-scrollbar {
            display: none;
        }
        
        .game-card {
            min-width: 200px;
            background: var(--card-bg);
            border-radius: 12px;
            padding: 15px;
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .game-image {
            height: 120px;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .game-title {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--light-text);
        }
        
        .game-provider {
            font-size: 0.9rem;
            color: var(--medium-text);
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .slider-btn:hover {
            background: var(--accent-color);
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-btn.prev {
            left: 0;
        }
        
        .slider-btn.next {
            right: 0;
        }
        
        .security-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .security-item {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .security-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: var(--card-hover);
        }
        
        .security-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 153, 0, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .security-content {
            flex: 1;
        }
        
        .security-title {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--light-text);
        }
        
        .security-desc {
            font-size: 0.9rem;
            color: var(--medium-text);
        }
        
        .ratings-overview {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .rating-chart {
            flex: 1;
            min-width: 300px;
        }
        
        .rating-items {
            flex: 1;
            min-width: 300px;
        }
        
        .rating-item {
            margin-bottom: 20px;
        }
        
        .rating-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .rating-name {
            font-size: 1rem;
            color: var(--light-text);
        }
        
        .rating-score {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .rating-bar {
            height: 8px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }
        
        .rating-progress {
            height: 100%;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            width: 0;
            transition: width 1.5s ease-in-out;
        }
        
        .rating-item.in-view .rating-progress {
            width: var(--width);
        }
        
        .chart-container {
            position: relative;
            width: 100%;
            height: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .circular-chart {
            width: 200px;
            height: 200px;
            position: relative;
        }
        
        .circle-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 3.8;
        }
        
        .circle {
            fill: none;
            stroke-width: 3.8;
            stroke-linecap: round;
            stroke: url(#gradient);
            stroke-dasharray: 0 100;
            transition: stroke-dasharray 2s ease-in-out;
        }
        
        .circular-chart.in-view .circle {
            stroke-dasharray: var(--percentage) 100;
        }
        
        .percentage {
            fill: var(--light-text);
            font-size: 0.5rem;
            text-anchor: middle;
            font-weight: bold;
        }
        
        .center-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        
        .score-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .score-label {
            font-size: 1rem;
            color: var(--medium-text);
        }
        
        .compare-casinos {
            margin: 40px 0;
        }
        
        .comparison-table-wrapper {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th, .comparison-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .comparison-table th {
            background-color: rgba(0, 0, 0, 0.3);
            font-weight: 600;
            color: var(--light-text);
        }
        
        .comparison-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }
        
        .comparison-table td {
            color: var(--medium-text);
        }
        
        .comparison-table tr:hover td {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .casino-link {
            padding: 8px 15px;
            background: rgba(255, 153, 0, 0.1);
            color: var(--primary-color);
            border-radius: 4px;
            font-size: 0.9rem;
            text-align: center;
            transition: all 0.3s ease;
            display: inline-block;
            font-weight: 600;
            text-decoration: none;
        }
        
        .casino-link:hover {
            background: rgba(255, 153, 0, 0.2);
            transform: translateY(-3px);
        }
        
        .verdict-box {
            background: linear-gradient(135deg, rgba(142, 68, 173, 0.1), rgba(231, 76, 60, 0.1));
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }
        
        .verdict-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--light-text);
            text-align: center;
        }
        
        .verdict-content {
            color: var(--medium-text);
            font-size: 1.1rem;
            text-align: center;
        }
        
        .verdict-cta {
            text-align: center;
            margin-top: 30px;
        }
        
        .related-casinos {
            margin: 60px 0;
        }
        
        .related-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--light-text);
            text-align: center;
            position: relative;
        }
        
        .related-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .related-casinos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-casino-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .related-casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .related-casino-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(0, 0, 0, 0.2);
        }
        
        .related-casino-logo {
            width: 80px;
            height: 80px;
            background: var(--medium-bg);
            border-radius: 8px;
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .related-casino-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .related-casino-rating {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .related-casino-content {
            padding: 20px;
        }
        
        .related-casino-name {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--light-text);
        }
        
        .related-casino-bonus {
            font-size: 1rem;
            color: var(--highlight);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .related-casino-features {
            margin-bottom: 20px;
        }
        
        .related-feature {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: var(--medium-text);
        }
        
        .related-feature i {
            color: var(--success-color);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .related-casino-actions {
            display: flex;
            gap: 10px;
        }
        
        .related-casino-btn {
            flex: 1;
            padding: 10px;
            text-align: center;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .related-play {
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
        }
        
        .related-play:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
        }
        
        .related-review {
            background: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .related-review:hover {
            background: rgba(255, 153, 0, 0.1);
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 15px 0;
            z-index: 99;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            border-top: 1px solid rgba(255, 153, 0, 0.3);
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
        }

        .sticky-cta.visible {
            transform: translateY(0);
        }

        .sticky-cta-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sticky-cta-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .sticky-cta-logo {
            width: 50px;
            height: 50px;
            background: var(--medium-bg);
            border-radius: 8px;
            padding: 5px;
            display: none;
        }

        .sticky-cta-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .sticky-cta-text {
            flex: 1;
        }

        .sticky-cta-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--light-text);
            margin-bottom: 3px;
        }

        .sticky-cta-bonus {
            font-size: 0.9rem;
            color: var(--highlight);
            font-weight: 500;
        }

        .sticky-cta-button {
            flex: 0 0 auto;
        }

        .sticky-cta-btn {
            padding: 10px 20px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            display: inline-block;
        }

        .sticky-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
            color: white;
        }

        /* Footer styles */
        footer {
            background-color: var(--darker-bg);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--primary-color));
            background-size: 300% 100%;
            animation: gradientMove 15s linear infinite;
        }
        
        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: var(--light-text);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: var(--medium-text);
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }
        
        .footer-links a::before {
            content: '›';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--primary-color);
        }
        
        .footer-links a:hover::before {
            opacity: 1;
            left: -10px;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-about p {
            color: var(--medium-text);
            margin-top: 15px;
            line-height: 1.7;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-icon {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--medium-bg), rgba(40, 40, 40, 0.8));
            border-radius: 50%;
            color: var(--medium-text);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .social-icon:hover {
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            color: white;
            border-color: transparent;
        }
        
        .social-icon:hover::before {
            opacity: 1;
        }
        
        .social-icon i {
            position: relative;
            z-index: 2;
        }
        
        .footer-bottom {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: var(--medium-text);
            font-size: 0.9rem;
        }
        
        .footer-bottom p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        /* Responsive design */
        @media (max-width: 1200px) {
            .hero-content {
                padding: 40px 0;
            }
            
            .hero-title h1 {
                font-size: 2.5rem;
            }

            .hero-card {
                flex: 0 0 45%;
            }
            
            .hero-info {
                flex: 0 0 50%;
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-info {
                margin-bottom: 40px;
                flex: 0 0 100%;
            }
            
            .hero-card {
                max-width: 400px;
                margin: 0 auto;
                flex: 0 0 100%;
                transform: perspective(1000px) rotateY(0);
            }
            
            .hero-features {
                justify-content: center;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .pros-cons {
                grid-template-columns: 1fr;
            }
            
            .info-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .security-features {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .sticky-cta-logo {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content {
                min-height: auto;
                padding: 30px 0;
            }
            
            .hero-title h1 {
                font-size: 2.2rem;
            }
            
            .hero-cta {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-cta .btn {
                width: 100%;
            }
            
            .info-cards {
                grid-template-columns: 1fr;
            }
            
            .casino-logo {
                width: 100px;
                height: 100px;
            }
            
            .review-section-title {
                font-size: 1.8rem;
            }
            
            .review-badges {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .review-nav-container {
                justify-content: flex-start;
                padding: 5px 0;
            }
            
            .review-nav-item {
                white-space: nowrap;
                padding: 8px 12px;
                font-size: 0.9rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background-color: var(--darker-bg);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
                padding: 80px 20px 30px;
                transition: right 0.5s ease;
                z-index: 999;
                overflow-y: auto;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                width: 100%;
            }

            nav ul li {
                margin: 0;
                padding: 15px 0;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            nav ul li:last-child {
                border-bottom: none;
            }

            nav ul li a {
                display: block;
                width: 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .sticky-cta-container {
                flex-direction: column;
                gap: 15px;
                align-items: stretch;
            }
            
            .sticky-cta-info {
                justify-content: center;
                text-align: center;
            }
            
            .sticky-cta-text {
                text-align: center;
            }
            
            .sticky-cta-button {
                width: 100%;
                text-align: center;
            }
            
            .sticky-cta-btn {
                width: 100%;
            }
            
            }
        }
        
        @media (max-width: 576px) {
            .review-header {
                margin-top: 70px;
            }
            
            .hero-content {
                padding: 20px 0 30px;
            }
            
            .hero-title h1 {
                font-size: 1.8rem;
            }
            
            .hero-title p {
                font-size: 1rem;
            }
            
            .hero-features {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            
            .hero-feature {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .hero-card {
                padding: 20px;
            }
            
            .bonus-value {
                font-size: 1.4rem;
            }
            
            .rating-value, .ranking-value, .score-value {
                font-size: 1.3rem;
            }
            
            .review-section-title {
                font-size: 1.6rem;
            }
            
            .review-section-desc {
                font-size: 1rem;
            }
            
            .related-casinos-grid {
                grid-template-columns: 1fr;
            }

            .payment-methods {
                grid-template-columns: repeat(2, 1fr);
            }

            .game-providers {
                grid-template-columns: repeat(2, 1fr);
            }
            

        }
