:root {
            --primary: #22c55e;
            --primary-hover: #16a34a;
            --secondary: #f59e0b;
            --accent: #8b5cf6;
            --neutral: #1f2937;
            --base-100: #0f172a;
            --base-200: #1e293b;
            --base-300: #334155;
            --base-content: #f8fafc;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--base-100);
            color: var(--base-content);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        header {
            background-color: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 50;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            color: var(--base-content);
        }

        .nav-menu {
            display: flex;
            gap: 1.5rem;
        }

        .nav-link {
            color: var(--base-content);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--base-content);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .hero {
            position: relative;
            padding: 4rem 0;
            background: linear-gradient(to bottom, var(--base-100), var(--base-200));
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/images/casino-pattern.svg');
            opacity: 0.05;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--base-content);
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary);
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
        }

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

        .btn-outline:hover {
            background-color: var(--primary);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .casino-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .casino-card {
            background-color: var(--base-200);
            border-radius: 1rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .casino-card-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--primary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 10;
        }

        .casino-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .casino-card-content {
            padding: 1.5rem;
        }

        .casino-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .casino-card-description {
            color: rgba(248, 250, 252, 0.8);
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }

        .casino-card-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .casino-card-stat {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.75rem;
            border-radius: 0.5rem;
            text-align: center;
        }

        .casino-card-stat-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
        }

        .casino-card-stat-label {
            font-size: 0.75rem;
            color: rgba(248, 250, 252, 0.6);
        }

        .casino-card-actions {
            display: flex;
            gap: 0.5rem;
        }

        .featured-casino {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin: 4rem 0;
            background-color: var(--base-200);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .featured-casino::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 40%;
            background: linear-gradient(to right, transparent, rgba(34, 197, 94, 0.1));
            z-index: 0;
        }

        .featured-casino-content {
            position: relative;
            z-index: 1;
        }

        .featured-casino-badge {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .featured-casino-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .featured-casino-description {
            color: rgba(248, 250, 252, 0.8);
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .featured-casino-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .featured-casino-stat {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 0.5rem;
        }

        .featured-casino-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .featured-casino-stat-label {
            font-size: 0.875rem;
            color: rgba(248, 250, 252, 0.6);
        }

        .featured-casino-actions {
            display: flex;
            gap: 1rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: rgba(248, 250, 252, 0.8);
            margin-bottom: 3rem;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .category-tab {
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            background-color: var(--base-200);
            color: var(--base-content);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-tab:hover, .category-tab.active {
            background-color: var(--primary);
            color: white;
        }

        .info-section {
            background-color: var(--base-200);
            padding: 4rem 0;
            margin: 4rem 0;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .info-card {
            padding: 2rem;
            background-color: rgba(255, 255, 255, 0.03);
            border-radius: 1rem;
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-card-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .info-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .info-card-description {
            color: rgba(248, 250, 252, 0.8);
        }

        .testimonials {
            margin: 4rem 0;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background-color: var(--base-200);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 4rem;
            font-family: serif;
            color: var(--primary);
            opacity: 0.2;
            line-height: 1;
        }

        .testimonial-content {
            color: rgba(248, 250, 252, 0.8);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-author-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            object-fit: cover;
        }

        .testimonial-author-name {
            font-weight: 600;
        }

        .testimonial-author-title {
            font-size: 0.875rem;
            color: rgba(248, 250, 252, 0.6);
        }

        .faq-section {
            margin: 4rem 0;
        }

        .faq-accordion {
            margin-top: 2rem;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.125rem;
        }

        .faq-answer {
            margin-top: 1rem;
            color: rgba(248, 250, 252, 0.8);
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .cta-section {
            background-color: var(--primary);
            padding: 4rem 0;
            text-align: center;
            margin: 4rem 0;
            border-radius: 1rem;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .cta-description {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            background-color: white;
            color: var(--primary);
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        footer {
            background-color: var(--base-200);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            display: block;
        }

        .footer-description {
            color: rgba(248, 250, 252, 0.7);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--base-content);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 0.75rem;
        }

        .footer-link a {
            color: rgba(248, 250, 252, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(248, 250, 252, 0.6);
            font-size: 0.875rem;
        }

        .legal-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .legal-link {
            color: rgba(248, 250, 252, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .legal-link:hover {
            color: var(--primary);
        }

        .disclaimer {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-top: 2rem;
            font-size: 0.75rem;
            color: rgba(248, 250, 252, 0.6);
            text-align: left;
        }

        .disclaimer-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: rgba(248, 250, 252, 0.8);
        }

        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 3rem;
            height: 3rem;
            background-color: var(--primary);
            color: white;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            font-size: 4rem;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            font-size: 3rem;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 20%;
            font-size: 5rem;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            bottom: 25%;
            right: 10%;
            font-size: 4rem;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        .bonus-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .bonus-tag-primary {
            background-color: rgba(34, 197, 94, 0.2);
            color: var(--primary);
        }

        .bonus-tag-secondary {
            background-color: rgba(245, 158, 11, 0.2);
            color: var(--secondary);
        }

        .bonus-tag-accent {
            background-color: rgba(139, 92, 246, 0.2);
            color: var(--accent);
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .star {
            color: var(--secondary);
        }

        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

        .payment-method {
            width: 3rem;
            height: 2rem;
            background-color: white;
            border-radius: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.25rem;
        }

        .payment-method img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                width: 80%;
                max-width: 300px;
                background-color: var(--base-200);
                flex-direction: column;
                padding: 2rem;
                z-index: 100;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                display: flex;
                transform: translateX(0);
            }

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

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .featured-casino-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .featured-casino-actions {
                flex-direction: column;
            }

            .category-tabs {
                overflow-x: auto;
                padding-bottom: 1rem;
                justify-content: flex-start;
            }

            .info-grid, .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }
