
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-gold: #d4af37;
            --primary-gold-hover: #b4942b;
            --secondary-red: #e50914;
            --bg-dark: #0f0f13;
            --bg-card: #1a1a24;
            --text-light: #ffffff;
            --text-gray: #cccccc;
            --transition-speed: 0.4s;
            --font-main: 'Montserrat', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition-speed); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UTILITY ANIMATIONS --- */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
            100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInZoom {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        /* Scroll Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HEADER (Sticky | Slide-Down) --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(15, 15, 19, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 5%;
            transform: translateY(-100%); /* Hidden initially */
            transition: transform 0.5s ease-in-out;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header.visible {
            transform: translateY(0);
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--primary-gold);
            font-weight: 700;
        }

        nav ul {
            display: flex;
            gap: 2rem;
        }

        nav a:hover {
            color: var(--primary-gold);
        }

        .cta-header {
            background: var(--secondary-red);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            animation: pulse 2s infinite;
        }

        .cta-header:hover {
            background: #c40812;
        }

        .disclaimer-top {
            font-size: 0.75rem;
            color: var(--text-gray);
            margin-top: 0.2rem;
        }

        /* --- HERO SECTION --- */
        #hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(15,15,19,1)), url('../img/hero.webp') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInZoom 1.2s ease-out forwards;
        }

        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content span {
            color: var(--primary-gold);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
        }

        .hero-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .btn-gold {
            background: var(--primary-gold);
            color: #000;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
            transition: 0.3s;
        }

        .btn-gold:hover {
            background: var(--primary-gold-hover);
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--text-light);
            color: var(--text-light);
            padding: 1rem 2rem;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .btn-outline:hover {
            background: var(--text-light);
            color: #000;
        }

        /* Floating Chips Animation */
        .chip {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 4px dashed white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            z-index: 1;
            opacity: 0.8;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .chip-1 { top: 20%; left: 10%; background: #e50914; animation: float 4s ease-in-out infinite; }
        .chip-2 { bottom: 25%; right: 15%; background: #0044cc; animation: float 5s ease-in-out infinite 1s; border-style: solid; }
        .chip-3 { top: 15%; right: 25%; background: var(--primary-gold); color: #000; animation: float 6s ease-in-out infinite 2s; }

        /* --- ABOUT US --- */
        section { padding: 5rem 5%; }
        
        .section-title {
            text-align: center;
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--primary-gold);
        }

        #about .content {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
            justify-content: center;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .highlights {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .highlight-item {
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.05);
            transition: 0.3s;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary-gold);
        }

        .highlight-item i {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

        /* --- GAMES SECTION --- */
        #games { background: #15151a; }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .game-card {
            background: var(--bg-card);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            group: 'games';
        }

        .game-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: 0.4s;
        }

        .game-card-content {
            padding: 1.5rem;
            text-align: center;
        }

        .game-card h3 {
            margin-bottom: 0.5rem;
        }

        /* Game Card Hover Effect */
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
            border: 1px solid var(--primary-gold);
        }

        .game-card:hover img {
            transform: scale(1.1);
        }

        .view-details-btn {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background: transparent;
            border: 1px solid var(--primary-gold);
            color: var(--primary-gold);
            border-radius: 20px;
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(20px);
            transition: 0.3s;
        }

        .game-card:hover .view-details-btn {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- WHY CHOOSE US --- */
        #why-choose-us .features-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .feature-row {
            display: flex;
            align-items: center;
            background: var(--bg-card);
            padding: 1.5rem;
            border-radius: 10px;
            transition: 0.3s;
        }

        .feature-row:hover {
            transform: translateX(10px);
            background: #252530;
        }

        .feature-icon {
            font-size: 1.5rem;
            color: var(--primary-gold);
            margin-right: 1.5rem;
            width: 50px;
            text-align: center;
        }

        /* --- LATEST BETTING (Ticker) --- */
        #latest-betting {
            background: linear-gradient(90deg, #b4942b, #d4af37);
            color: #000;
            padding: 1rem 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .ticker-wrap {
            display: inline-block;
            animation: ticker 20s linear infinite;
        }

        .ticker-item {
            display: inline-block;
            padding: 0 2rem;
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* --- TESTIMONIALS (Carousel) --- */
        .carousel-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            min-width: 100%;
            background: var(--bg-card);
            padding: 3rem;
            text-align: center;
            border-radius: 15px;
        }

        .stars { color: var(--primary-gold); margin-bottom: 1rem; }
        .quote { font-style: italic; font-size: 1.2rem; margin-bottom: 1.5rem; }
        .user { font-weight: bold; color: var(--primary-gold); }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            background: #555;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

        .nav-dot.active { background: var(--primary-gold); }

        /* --- CONTACT FORM --- */
        #contact { max-width: 600px; margin: 0 auto; }

        .form-group { margin-bottom: 1.5rem; }

        label { display: block; margin-bottom: 0.5rem; color: var(--primary-gold); }
        
        input, textarea {
            width: 100%;
            padding: 1rem;
            background: #252530;
            border: 1px solid #444;
            color: #fff;
            border-radius: 5px;
            font-family: inherit;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
        }

        .submit-btn {
            width: 100%;
            background: var(--primary-gold);
            color: #000;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .submit-btn:hover { background: var(--primary-gold-hover); }

        .success-msg {
            display: none;
            background: rgba(46, 204, 113, 0.2);
            border: 1px solid #2ecc71;
            color: #2ecc71;
            padding: 1rem;
            border-radius: 5px;
            margin-top: 1rem;
            text-align: center;
        }

        /* --- FOOTER --- */
        footer {
            background: #000;
            padding: 3rem 5% 1rem;
            margin-top: 4rem;
            text-align: center;
            border-top: 1px solid #333;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin: 1.5rem 0;
        }

        .footer-links a:hover { text-decoration: underline; color: var(--primary-gold); }

        .social-icons a {
            font-size: 1.5rem;
            margin: 0 10px;
            color: var(--text-gray);
        }

        .social-icons a:hover { color: var(--primary-gold); }

        .disclaimer-footer {
            margin-top: 2rem;
            font-size: 0.8rem;
            color: #777;
            border-top: 1px solid #222;
            padding-top: 1rem;
        }

        .contact-info-footer p { color: var(--text-gray); margin-bottom: 0.5rem; }

        /* --- MODALS --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            padding: 1rem;
        }

        .modal-content {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--primary-gold);
            max-width: 500px;
            width: 100%;
            position: relative;
            animation: slideInLeft 0.4s ease-out;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #aaa;
        }

        .close-modal:hover { color: #fff; }

        .modal-title {
            font-family: var(--font-heading);
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        /* Specific for Terms Modal (Scrollable) */
        .modal-content.scrollable {
            max-height: 80vh;
            overflow-y: auto;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            header { flex-direction: column; gap: 1rem; padding: 1rem; }
            nav ul { gap: 1rem; font-size: 0.9rem; }
            .hero-content h1 { font-size: 2.2rem; }
            .hero-btns { flex-direction: column; }
            .highlights { grid-template-columns: 1fr; }
            .disclaimer-top { display: none; } /* Hide small disclaimer on mobile header to save space */
        }
    