        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --dark: #0a0a1a;
            --darker: #050510;
            --gray: #333344;
            --light: #e0e0f0;
            --white: #ffffff;
            --accent: #6666aa;
            --primary: #7a5af0;
            --secondary: #9d7bff;
            --highlight: #b09aff;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            color: var(--light);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        header {
            background: rgba(10, 10, 26, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(122, 90, 240, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 10px 30px rgba(122, 90, 240, 0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        html {
            scroll-behavior: smooth;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(122, 90, 240, 0.3);
        }
        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--white) 0%, var(--highlight) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 4px;
            text-shadow: 0 2px 10px rgba(122, 90, 240, 0.2);
        }
        .logo-text p {
            font-size: 0.9rem;
            color: var(--accent);
            font-weight: 500;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 24px;
        }
        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }
        nav a:hover {
            color: var(--secondary);
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hero {
            text-align: center;
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(122, 90, 240, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(157, 123, 255, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        .hero h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--white);
            line-height: 1.2;
            text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, var(--white) 0%, var(--highlight) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.4rem;
            color: var(--accent);
            margin-bottom: 3rem;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .search-container {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 1.2rem 1.5rem 1.2rem 48px;
            border-radius: 16px;
            border: 1px solid rgba(122, 90, 240, 0.3);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            color: var(--light);
            font-size: 1rem;
            outline: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }
        .search-input:focus {
            border-color: var(--secondary);
            box-shadow: 0 10px 25px rgba(122, 90, 240, 0.3);
            transform: translateY(-2px);
        }
        .search-input::placeholder {
            color: var(--accent);
        }
        .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 1.2rem;
        }
        .search-btn {
            position: absolute;
            right: 2px;
            top: 50%;
            transform: translateY(-50%);
            padding: 0 2.5rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            border: none;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(122, 90, 240, 0.4);
            letter-spacing: 0.5px;
            height: 48px;
            min-width: 120px;
        }
        .search-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(122, 90, 240, 0.6);
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
        }
        .categories {
            padding: 3rem 2rem 1rem;
            text-align: center;
            position: relative;
        }
        .categories::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(122, 90, 240, 0.1) 0%, transparent 70%);
            z-index: -1;
        }
        .categories-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
        .category-btn {
            padding: 0.8rem 1.8rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(122, 90, 240, 0.3);
            color: var(--light);
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            font-size: 0.95rem;
        }
        .category-btn:hover,
        .category-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-color: transparent;
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(122, 90, 240, 0.4);
        }
        .providers {
            padding: 2rem 2rem 4rem;
        }
        .providers-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 28px;
        }
        .provider-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(122, 90, 240, 0.2);
            border-radius: 20px;
            padding: 2rem;
            cursor: pointer;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .provider-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 20px 40px rgba(122, 90, 240, 0.4);
        }
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.2rem;
        }
        .provider-logo {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            box-shadow: 0 5px 15px rgba(122, 90, 240, 0.3);
            overflow: hidden;
            color: var(--white);
            font-size: 26px;
            font-weight: 700;
        }
        .provider-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .provider-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 1rem;
        }
        .provider-category {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(122, 90, 240, 0.1);
            color: var(--primary);
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .provider-description {
            color: var(--accent);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Info khusus Lottery (tanpa kartu) */
        .lottery-info {
            max-width: 900px;
            margin: 2rem auto 0;
            padding: 2rem 2.5rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(122, 90, 240, 0.3);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            text-align: left;
        }
        .lottery-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--white) 0%, var(--highlight) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .lottery-info p {
            color: var(--accent);
            margin-bottom: 0.8rem;
            font-size: 0.98rem;
        }
        .lottery-info ul {
            margin-left: 1.2rem;
            margin-top: 0.5rem;
            color: var(--light);
            font-size: 0.95rem;
        }
        .lottery-info li {
            margin-bottom: 0.4rem;
        }

        /* REVIEW SECTION */
        .reviews {
            padding: 1rem 2rem 5rem;
        }
        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 1.5rem;
            gap: 1rem;
        }
        .reviews-title {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--white) 0%, var(--highlight) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .reviews-subtitle {
            font-size: 0.95rem;
            color: var(--accent);
            max-width: 420px;
            text-align: right;
        }
        .reviews-row {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            padding-bottom: 10px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .reviews-row::-webkit-scrollbar {
            height: 6px;
        }
        .reviews-row::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.03);
        }
        .reviews-row::-webkit-scrollbar-thumb {
            background: rgba(122, 90, 240, 0.6);
            border-radius: 3px;
        }
        .review-card {
            flex: 0 0 280px;
            max-width: 280px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 18px;
            padding: 1.5rem 1.4rem;
            border: 1px solid rgba(122, 90, 240, 0.3);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
            scroll-snap-align: start;
        }

        .review-card::before {
            content: '“';
            position: absolute;
            font-size: 4rem;
            color: rgba(176, 154, 255, 0.15);
            top: -10px;
            left: 12px;
        }
        .review-text {
            font-size: 0.95rem;
            color: var(--light);
            margin-bottom: 1.1rem;
            line-height: 1.7;
        }
        .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--white);
        }
        .review-meta {
            display: flex;
            flex-direction: column;
        }
        .review-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--white);
        }
        .review-role {
            font-size: 0.8rem;
            color: var(--accent);
        }
        .review-tag {
            font-size: 0.75rem;
            color: var(--primary);
            margin-top: 4px;
        }

        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            padding: 2rem;
        }
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            background: rgba(15, 15, 35, 0.9);
            border-radius: 24px;
            max-width: 800px;
            width: 95%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid rgba(122, 90, 240, 0.3);
            box-shadow: 0 25px 50px rgba(122, 90, 240, 0.4);
        }
        .modal-header {
            padding: 2rem 2.5rem;
            border-bottom: 1px solid rgba(122, 90, 240, 0.3);
            position: sticky;
            top: 0;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            z-index: 10;
        }
        .modal-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--white);
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, var(--white) 0%, var(--highlight) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .close-btn {
            position: absolute;
            top: 2rem;
            right: 2.5rem;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 11;
        }
        .close-btn:hover {
            color: var(--highlight);
        }
        .modal-body {
            padding: 2.5rem;
        }

        section {
            scroll-margin-top: 120px; 
        }
        
        .section {
            margin-bottom: 2.5rem;
        }

        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--light);
            position: relative;
            padding-bottom: 12px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 3px;
        }
        .description {
            color: var(--accent);
            margin-bottom: 2rem;
            line-height: 1.9;
            font-size: 1.05rem;
            text-align: justify;
        }
        .games-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .game-tag {
            background: rgba(122, 90, 240, 0.08);
            color: var(--light);
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 0.95rem;
            text-align: center;
            border: 1px solid rgba(122, 90, 240, 0.2);
            transition: all 0.3s ease;
        }
        .game-tag:hover {
            background: rgba(122, 90, 240, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(122, 90, 240, 0.2);
        }
        .licenses-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 2rem;
        }
        .license-badge {
            background: rgba(122, 90, 240, 0.1);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 16px;
            font-size: 0.95rem;
            border: 1px solid rgba(122, 90, 240, 0.2);
            transition: all 0.3s ease;
        }
        .license-badge:hover {
            background: rgba(122, 90, 240, 0.2);
            transform: translateY(-2px);
        }
        .strengths-list {
            list-style: none;
        }
        .strengths-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: var(--light);
            font-size: 1.02rem;
            padding: 12px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(122, 90, 240, 0.2);
            transition: all 0.3s ease;
        }
        .strengths-list li:hover {
            transform: translateX(5px);
            background: rgba(122, 90, 240, 0.1);
            border-color: rgba(122, 90, 240, 0.4);
        }
        .strengths-list li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            min-width: 22px;
            font-size: 1.2rem;
            text-align: center;
            margin-top: 2px;
        }
        footer {
            background: rgba(10, 10, 26, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(122, 90, 240, 0.3);
            padding: 2rem 2rem 1.5rem;
            margin-top: 2rem;
            text-align: center;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
            color: var(--accent);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary);
        }
        .copyright {
            color: var(--accent);
            font-size: 0.8rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1.5rem;
            }
            nav ul {
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero h2 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .search-container {
                margin: 0 1rem;
            }
            .search-input {
                padding-left: 40px;
                padding-right: 130px;
            }
            .search-btn {
                right: 10px;
                padding: 0 1.8rem;
                font-size: 0.9rem;
                height: 44px;
            }
            .modal-title {
                font-size: 2rem;
            }
            .modal-header,
            .modal-body {
                padding: 1.5rem;
            }
            .games-list {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
            .providers-grid {
                grid-template-columns: 1fr;
            }
            .categories-grid {
                gap: 12px;
            }
            .category-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
            .modal-content {
                margin: 0 1rem;
                max-height: 95vh;
            }
            .footer-links {
                gap: 1rem;
                flex-direction: column;
                align-items: center;
            }
            .reviews-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .reviews-subtitle {
                text-align: left;
            }
        }
        
        
        .article-page {
            max-width: 1000px;
            margin: 0 auto;
            padding: 3rem 2rem 4rem;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 900px) {
            .article-page {
                grid-template-columns: 2fr 1fr;
            }
        }

        .article-content {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(122, 90, 240, 0.2);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .article-meta {
            display: flex;
            gap: 16px;
            margin-bottom: 1rem;
        }

        .category-tag {
            background: rgba(122, 90, 240, 0.15);
            color: var(--primary);
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(122, 90, 240, 0.3);
        }

        .article-title {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--white);
            line-height: 1.3;
            background: linear-gradient(135deg, var(--white) 0%, var(--highlight) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .article-byline {
            color: var(--accent);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .article-body {
            color: var(--light);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .article-body h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1.2rem;
            color: var(--white);
            position: relative;
            padding-bottom: 8px;
        }

        .article-body h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }

        .article-body p {
            margin-bottom: 1.4rem;
            text-align: justify;
        }

        .article-body blockquote {
            margin: 2rem 0;
            padding: 1.5rem;
            background: rgba(122, 90, 240, 0.08);
            border-left: 4px solid var(--primary);
            font-style: italic;
            color: var(--highlight);
            border-radius: 0 12px 12px 0;
            font-size: 1.15rem;
            line-height: 1.7;
        }

        .article-body img.article-image {
            width: 100%;
            border-radius: 16px;
            margin: 1.8rem 0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .article-body ul,
        .article-body ol {
            margin: 1.5rem 0 1.8rem 1.8rem;
            padding-left: 0.5rem;
        }

        .article-body li {
            margin-bottom: 0.7rem;
            color: var(--accent);
        }

        .article-sidebar {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(122, 90, 240, 0.2);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .article-sidebar h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: var(--white);
        }

        .related-articles {
            list-style: none;
            padding: 0;
        }

        .related-articles li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(122, 90, 240, 0.15);
        }

        .related-articles a {
            color: var(--accent);
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: block;
        }

        .related-articles a:hover {
            color: var(--secondary);
            transform: translateX(4px);
        }

        @media (max-width: 899px) {
            .article-sidebar {
                margin-top: 2rem;
            }
        }