﻿        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: #0b0b0f;
            color: #ffffff;
            font-family: "Poppins", sans-serif;
        }

        a {
            text-decoration: none !important;
        }

        /* =========================
           NAVBAR
        ========================= */

        .navbar {
            background: #101015;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding: 14px 0;
        }

        .navbar-brand {
            display: inline-flex;
            align-items: center;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
            margin-right: 12px;
        }

        .nav-action {
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            line-height: 1;
        }

        .nav-action-register {
            background: #f5c542;
            color: #111 !important;
        }

        .nav-action-login {
            border: 1px solid #3a3a42;
            color: #ffffff !important;
        }

        .brand-logo {
            width: 150px;
            height: auto;
            display: block;
        }

        .nav-link {
            color: #d0d0d0 !important;
            font-weight: 500;
            margin-left: 15px;
            transition: .2s;
        }

        .nav-link:hover {
            color: #f5c542 !important;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            min-height: 430px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 80% 20%, rgba(245,197,66,.18), transparent 30%),
                radial-gradient(circle at 10% 90%, rgba(255,80,80,.10), transparent 30%),
                linear-gradient(135deg, #111116, #09090c);
        }

        .hero-content {
            padding: 70px 0;
        }

        .hero-label {
            display: inline-block;
            background: rgba(245,197,66,.12);
            border: 1px solid rgba(245,197,66,.3);
            color: #f5c542;
            padding: 7px 15px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: 48px;
            line-height: 1.15;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .hero h1 span {
            color: #f5c542;
        }

        .hero-logo {
            width: min(360px, 80vw);
            height: auto;
            display: block;
            margin-bottom: 18px;
        }

        .hero p {
            color: #a9a9b0;
            max-width: 650px;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .btn-main {
            display: inline-block;
            background: #f5c542;
            color: #111 !important;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
            border: none;
            transition: .2s;
        }

        .btn-main:hover {
            transform: translateY(-2px);
            filter: brightness(1.08);
        }

        .btn-dark-custom {
            display: inline-block;
            margin-left: 8px;
            padding: 11px 24px;
            border: 1px solid #3a3a42;
            border-radius: 8px;
            color: #ffffff !important;
            font-weight: 600;
        }

        /* =========================
           STATISTICS
        ========================= */

        .stats {
            margin-top: -35px;
            position: relative;
            z-index: 5;
        }

        .stats .row {
            flex-wrap: nowrap;
        }

        .stats .row > div {
            flex: 1 1 0;
            max-width: none;
            padding-left: 6px;
            padding-right: 6px;
        }

        .stat-box {
            background: #15151b;
            border: 1px solid #292930;
            border-radius: 12px;
            padding: 14px 8px;
            text-align: center;
            height: 100%;
        }

        .stat-number {
            font-size: 22px;
            font-weight: 800;
            color: #f5c542;
        }

        .stat-title {
            color: #92929b;
            font-size: 13px;
            margin-top: 5px;
        }

        /* =========================
           SECTION
        ========================= */

        .section {
            padding: 75px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .section-header h2 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .section-header p {
            color: #85858d;
            margin: 0;
        }

        /* =========================
           SEARCH
        ========================= */

        .search-box {
            background: #15151b;
            border: 1px solid #292930;
            padding: 18px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .search-input {
            width: 100%;
            background: #0d0d11;
            color: #fff;
            border: 1px solid #303038;
            border-radius: 8px;
            padding: 13px 15px;
            outline: none;
        }

        .search-input:focus {
            border-color: #f5c542;
        }

        /* =========================
           GAME CARD
        ========================= */

        .game-card {
            height: 100%;
            background: #15151b;
            border: 1px solid #292930;
            border-radius: 10px;
            overflow: hidden;
            transition: .25s;
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: rgba(245,197,66,.55);
        }

        #gameList > .game-item {
            flex: 0 0 33.333333%;
            max-width: 33.333333%;
        }

        .game-image {
            width: 100%;
            height: 205px;
            object-fit: cover;
            display: block;
            background: #242830;
        }

        .game-body {
            padding: 12px;
        }

        .game-title {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .rtp-label {
            color: #8d8d96;
            font-size: 12px;
        }

        .rtp-value {
            color: #f5c542;
            font-size: 21px;
            font-weight: 800;
        }

        .progress-custom {
            height: 6px;
            background: #292930;
            border-radius: 20px;
            overflow: hidden;
            margin: 6px 0 10px;
        }

        .progress-custom span {
            display: block;
            height: 100%;
            background: #f5c542;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .progress-custom span::after {
            content: "";
            position: absolute;
            top: 0;
            left: -45%;
            width: 45%;
            height: 100%;
            background: rgba(255,255,255,.45);
            transform: skewX(-20deg);
            animation: progressLoading 1.4s ease-in-out infinite;
        }

        @keyframes progressLoading {
            from {
                left: -45%;
            }
            to {
                left: 110%;
            }
        }

        .rtp-low {
            color: #ff4d5a !important;
        }

        .rtp-medium {
            color: #f5c542 !important;
        }

        .rtp-high {
            color: #43d17a !important;
        }

        .progress-custom span.rtp-low {
            background: #ff4d5a;
        }

        .progress-custom span.rtp-medium {
            background: #f5c542;
        }

        .progress-custom span.rtp-high {
            background: #43d17a;
        }

        .rtp-progress-968 { width: 96.8%; }
        .rtp-progress-957 { width: 95.7%; }
        .rtp-progress-949 { width: 94.9%; }
        .rtp-progress-936 { width: 93.6%; }
        .rtp-progress-928 { width: 92.8%; }
        .rtp-progress-915 { width: 91.5%; }

        .game-meta {
            display: flex;
            justify-content: space-between;
            color: #85858d;
            font-size: 10px;
        }

        /* =========================
           TABLE
        ========================= */

        .table-wrapper {
            background: #15151b;
            border: 1px solid #292930;
            border-radius: 13px;
            overflow: hidden;
        }

        .menu-glow {
            border-color: rgba(245,197,66,.9);
            box-shadow:
                0 0 8px rgba(245,197,66,.75),
                0 0 24px rgba(245,197,66,.38),
                inset 0 0 16px rgba(245,197,66,.08);
            animation: menuGlow 2.8s ease-in-out infinite alternate;
        }

        @keyframes menuGlow {
            from {
                box-shadow:
                    0 0 7px rgba(245,197,66,.65),
                    0 0 18px rgba(245,197,66,.28),
                    inset 0 0 12px rgba(245,197,66,.05);
            }
            to {
                box-shadow:
                    0 0 12px rgba(245,197,66,.95),
                    0 0 30px rgba(245,197,66,.48),
                    inset 0 0 20px rgba(245,197,66,.11);
            }
        }

        .table {
            margin: 0;
            color: #fff;
        }

        .table thead {
            background: #1d1d24;
        }

        .table th {
            border: none;
            color: #a9a9b0;
            font-size: 13px;
        }

        .table td {
            border-color: #292930;
            vertical-align: middle;
            font-size: 13px;
        }

        .badge-rtp {
            background: rgba(245,197,66,.13);
            color: #f5c542;
            padding: 6px 10px;
            border-radius: 20px;
            font-weight: 700;
        }

        .badge-rtp.rtp-low {
            background: rgba(255,77,90,.13);
            color: #ff4d5a;
        }

        .badge-rtp.rtp-medium {
            background: rgba(245,197,66,.13);
            color: #f5c542;
        }

        .badge-rtp.rtp-high {
            background: rgba(67,209,122,.13);
            color: #43d17a;
        }

        .menu-table td {
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            padding: 20px;
        }

        .menu-table thead {
            background: #f5c542;
        }

        .menu-table th {
            color: #111;
            font-size: 14px;
            font-weight: 800;
            padding: 16px 12px;
            text-align: center;
            white-space: nowrap;
        }

        .menu-table td {
            background: #343a40;
            text-align: center;
        }

        .menu-table td + td {
            border-left: 1px solid #292930;
        }

        .menu-table strong {
            display: block;
            color: #f5c542;
            font-size: 17px;
            margin-bottom: 6px;
        }

        .menu-table span {
            color: #a9a9b0;
            font-size: 13px;
            font-weight: 400;
        }

        .register-button {
            display: block;
            background: #f5c542;
            color: #111 !important;
            padding: 13px 18px;
            border-radius: 8px;
            font-weight: 700;
            text-align: center;
            transition: .2s;
            box-shadow: 0 0 10px rgba(245,197,66,.45);
        }

        .register-button:hover {
            transform: translateY(-2px);
            filter: brightness(1.08);
            box-shadow: 0 0 18px rgba(245,197,66,.85);
        }

        .menu-table .register-cell {
            padding: 20px;
        }

        /* =========================
           FAQ
        ========================= */

        .faq-item {
            background: #15151b;
            border: 1px solid #292930;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 12px;
        }

        .faq-item h5 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .faq-item p {
            color: #85858d;
            font-size: 13px;
            line-height: 1.7;
            margin: 0;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: #08080b;
            border-top: 1px solid #202027;
            padding: 40px 0 25px;
        }

        .footer-logo {
            font-size: 22px;
            font-weight: 800;
            color: #f5c542;
        }

        .footer-text {
            color: #777780;
            font-size: 13px;
            line-height: 1.8;
        }

        .copyright {
            border-top: 1px solid #202027;
            margin-top: 25px;
            padding-top: 20px;
            color: #62626a;
            font-size: 12px;
        }

        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 768px) {

            body {
                overflow-x: hidden;
            }

            .navbar {
                padding: 10px 0;
            }

            .navbar .container {
                flex-wrap: nowrap;
            }

            .nav-actions {
                gap: 5px;
                margin-right: 7px;
            }

            .nav-action {
                padding: 8px 8px;
                font-size: 9px;
            }

            .navbar-toggler {
                flex-shrink: 0;
                padding: 6px 8px;
            }

            .navbar-collapse {
                padding-top: 10px;
            }

            .nav-link {
                margin-left: 0;
                padding: 9px 0 !important;
                border-top: 1px solid rgba(255,255,255,.06);
            }

            .hero {
                min-height: 0;
            }

            .hero-content {
                padding: 52px 0 78px;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero-logo {
                width: min(280px, 76vw);
            }

            .hero p {
                font-size: 13px;
                line-height: 1.7;
            }

            .btn-dark-custom {
                margin-left: 0;
                margin-top: 10px;
            }

            .stats {
                margin-top: -20px;
            }

            .stats .row {
                flex-wrap: wrap;
            }

            .stats .row > div {
                padding-left: 3px;
                padding-right: 3px;
            }

            .stat-number {
                font-size: 17px;
            }

            .stat-title {
                font-size: 10px;
            }

            .section {
                padding: 48px 0;
            }

            .section-header h2 {
                font-size: 23px;
            }

            .section-header p {
                font-size: 12px;
            }

            .game-image {
                height: 125px;
            }

            #gameList > .game-item {
                flex-basis: 50%;
                max-width: 50%;
                padding-left: 5px;
                padding-right: 5px;
            }

            .game-body {
                padding: 10px;
            }

            .game-title {
                font-size: 12px;
                line-height: 1.35;
            }

            .rtp-value {
                font-size: 18px;
            }

            .game-meta {
                display: block;
                line-height: 1.6;
            }

            .game-meta span {
                display: block;
            }

            .menu-table {
                table-layout: fixed;
                width: 100%;
            }

            .table-responsive {
                overflow-x: hidden;
            }

            .table:not(.menu-table) {
                width: 100%;
                table-layout: fixed;
            }

            .table th,
            .table td {
                padding: 9px 4px;
                font-size: 10px;
                overflow-wrap: anywhere;
            }

            .menu-table th {
                font-size: 10px;
                line-height: 1.25;
                padding: 12px 3px;
                white-space: normal;
                word-break: break-word;
            }

            .menu-table td {
                font-size: 10px;
                line-height: 1.35;
                padding: 14px 4px;
                overflow-wrap: anywhere;
            }

            .register-button {
                padding: 10px 2px;
                font-size: 10px;
                white-space: nowrap;
            }

            .brand-logo {
                width: 125px;
            }

            .footer-logo .brand-logo {
                width: 140px;
            }

            .menu-table td + td {
                border-left: none;
                border-top: 1px solid #292930;
            }
        }

        /* =========================
           RTP DASHBOARD THEME
        ========================= */

        :root {
            --page: #080d16;
            --surface: #101824;
            --surface-raised: #151f2d;
            --line: rgba(151, 176, 204, .18);
            --muted: #8b9aad;
            --accent: #ffb31a;
            --accent-hot: #ff6b35;
        }

        body {
            background: var(--page);
            color: #f4f7fb;
        }

        .navbar {
            background: rgba(8, 13, 22, .96);
            border-bottom: 1px solid var(--line);
            padding: 12px 0;
        }

        .nav-action-register,
        .btn-main,
        .register-button {
            background: var(--accent);
        }

        .nav-action-login {
            border-color: var(--line);
        }

        .nav-link:hover,
        .stat-number,
        .rtp-value,
        .footer-logo {
            color: var(--accent) !important;
        }

        .promo-banner {
            min-height: 315px;
            overflow: hidden;
            position: relative;
            background: #111b2a;
            border-bottom: 1px solid var(--line);
        }

        .promo-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, #080d16 0%, rgba(8, 13, 22, .8) 40%, rgba(8, 13, 22, .12) 100%);
            z-index: 1;
        }

        .promo-slide {
            min-height: 315px;
            background: linear-gradient(110deg, #0b1422 0%, #172c43 52%, #312516 100%);
        }

        .promo-content {
            min-height: 315px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .promo-copy {
            max-width: 560px;
            padding: 35px 0;
        }

        .promo-kicker {
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .promo-copy h1 {
            font-size: clamp(28px, 4vw, 48px);
            line-height: 1.1;
            margin: 12px 0;
            font-weight: 800;
        }

        .promo-copy p {
            color: #bdc8d4;
            font-size: 14px;
            margin-bottom: 22px;
        }

        .promo-game-image {
            width: 270px;
            height: 270px;
            object-fit: cover;
            border-radius: 10px;
            transform: rotate(5deg);
            box-shadow: 20px 24px 45px rgba(0, 0, 0, .45);
            border: 4px solid rgba(255, 255, 255, .2);
        }

        .provider-strip {
            background: #0d1521;
            border-bottom: 1px solid var(--line);
            padding: 12px 0;
        }

        .provider-track {
            display: flex;
            align-items: center;
            gap: 10px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .provider-track::-webkit-scrollbar {
            display: none;
        }

        .provider-track a,
        .provider-filter,
        .provider-label {
            flex: 0 0 auto;
            color: #aebaca;
            font-size: 11px;
            font-weight: 700;
            padding: 9px 13px;
            border: 1px solid var(--line);
            border-radius: 4px;
            white-space: nowrap;
            background: transparent;
            cursor: pointer;
        }

        .provider-label {
            color: var(--accent);
            border-color: rgba(255, 179, 26, .45);
        }

        .provider-track a:hover,
        .provider-filter:hover,
        .provider-filter.active {
            color: var(--accent);
            border-color: var(--accent);
        }

        .legacy-stats,
        #game-terbaik,
        #statistics {
            display: none;
        }

        .section {
            padding: 42px 0;
        }

        #games {
            background: linear-gradient(180deg, #0a111c 0%, #080d16 100%);
        }

        .section-header {
            text-align: left;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 20px;
            margin-bottom: 6px;
        }

        .section-header p {
            color: var(--muted);
            font-size: 12px;
        }

        .search-box {
            background: transparent;
            border: 0;
            padding: 0;
            margin-bottom: 20px;
        }

        .search-input {
            background: var(--surface);
            border-color: var(--line);
            border-radius: 4px;
            padding: 12px 15px;
        }

        .search-input:focus {
            border-color: var(--accent);
        }

        #gameList > .game-item {
            flex: 0 0 25%;
            max-width: 25%;
            padding-left: 7px;
            padding-right: 7px;
        }

        .game-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 6px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
        }

        .game-card:hover {
            border-color: rgba(255, 179, 26, .72);
            transform: translateY(-3px);
        }

        .game-image {
            height: 175px;
        }

        .game-body {
            padding: 11px;
        }

        .game-title {
            min-height: 35px;
            color: #edf2f7;
            font-size: 12px;
        }

        .rtp-label,
        .game-meta {
            color: var(--muted);
        }

        .progress-custom {
            background: #273242;
            border-radius: 3px;
        }

        .progress-custom span.rtp-medium {
            background: var(--accent);
        }

        .progress-custom span.rtp-high {
            background: #27c98b;
        }

        footer {
            background: #060a11;
            border-top-color: var(--line);
        }

        @media (max-width: 768px) {
            .promo-banner,
            .promo-slide,
            .promo-content {
                min-height: 275px;
            }

            .promo-content {
                align-items: flex-end;
            }

            .promo-game-image {
                position: absolute;
                right: -35px;
                top: 25px;
                width: 175px;
                height: 215px;
                opacity: .72;
            }

            .promo-copy {
                position: relative;
                z-index: 2;
                padding-bottom: 28px;
            }

            .promo-copy h1 {
                max-width: 270px;
                font-size: 30px;
            }

            .promo-copy p {
                max-width: 245px;
                font-size: 12px;
            }

            #gameList > .game-item {
                flex-basis: 50%;
                max-width: 50%;
            }

            .game-image {
                height: 135px;
            }
        }

