
         /* ===============================
         RESET & GLOBAL
         =================================*/
         * {
         margin: 0;
         padding: 0;
         box-sizing: border-box;
         }
         body {
         font-family: 'Segoe UI', Arial, sans-serif;
         background-color: #0f172a;
         color: #ffffff;
         line-height: 1.6;
         }
         .container {
         width: 90%;
         max-width: 1200px;
         margin: auto;
         }
         /* ===============================
         HEADER
         =================================*/
         header {
         background: #0b1120;
         padding: 20px 0;
         border-bottom: 1px solid rgba(255,255,255,0.05);
         }
         .header-wrapper {
         display: flex;
         align-items: center;
         justify-content: space-between;
         }
         /* Logo */
         .logo-img {
         height: 30px;
         width: auto;
         display: block;
         }
         /* Navigation */
         .nav-menu {
         list-style: none;
         display: flex;
         gap: 18px;
         align-items: center;
         }
         .nav-menu li a {
         text-decoration: none;
         color: #ffffff;
         font-weight: 500;
         transition: 0.3s;
         }
         .nav-menu li a:hover {
         color: #facc15;
         }
         .nav-cta {
         background: #facc15;
         color: #000 !important;
         padding: 6px 14px;
         border-radius: 4px;
         }
         /* ===============================
         SEARCH FORM (CENTER)
         =================================*/
         .search-form {
         display: flex;
         align-items: center;
         background: #1f2937;
         border-radius: 6px;
         overflow: hidden;
         width: 300px;
         }
         .search-form input {
         border: none;
         padding: 8px 12px;
         background: transparent;
         color: #fff;
         outline: none;
         width: 100%;
         }
         .search-form input::placeholder {
         color: #94a3b8;
         }
         .search-form button {
         background: #facc15;
         border: none;
         padding: 8px 12px;
         cursor: pointer;
         font-size: 14px;
         }
         /* ===============================
         HERO SECTION
         =================================*/
         .hero {
         background: linear-gradient(135deg, #1e293b, #0f172a);
         padding: 100px 0;
         text-align: center;
         }
         .hero h2 {
         font-size: 38px;
         margin-bottom: 20px;
         font-weight: 700;
         }
         .hero p {
         max-width: 700px;
         margin: auto;
         margin-bottom: 30px;
         font-size: 18px;
         color: #cbd5e1;
         }
         .btn-primary,
         .btn-secondary {
         display: inline-block;
         padding: 14px 28px;
         margin: 10px;
         border-radius: 6px;
         text-decoration: none;
         font-weight: bold;
         transition: 0.3s;
         }
         .btn-primary {
         background: #facc15;
         color: #000;
         }
         .btn-primary:hover {
         background: #eab308;
         }
         .btn-secondary {
         background: transparent;
         border: 2px solid #facc15;
         color: #facc15;
         }
         .btn-secondary:hover {
         background: #facc15;
         color: #000;
         }
         /* ===============================
         FEATURES SECTION
         =================================*/
         .features {
         padding: 80px 0;
         background: #111827;
         text-align: center;
         }
         .features h2 {
         font-size: 32px;
         margin-bottom: 50px;
         }
         .feature-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 30px;
         }
         .feature-item {
         background: #1f2937;
         padding: 30px;
         border-radius: 10px;
         transition: 0.3s;
         }
         .feature-item:hover {
         transform: translateY(-8px);
         background: #374151;
         }
         .feature-item h3 {
         color: #facc15;
         margin-bottom: 15px;
         }
         .feature-item p {
         color: #d1d5db;
         font-size: 15px;
         }
         /* ===============================
         CTA SECTION
         =================================*/
         .cta {
         padding: 80px 0;
         text-align: center;
         background: linear-gradient(135deg, #facc15, #eab308);
         color: #000;
         }
         .cta h2 {
         font-size: 32px;
         margin-bottom: 15px;
         }
         .cta p {
         margin-bottom: 25px;
         font-size: 18px;
         }
         .cta .btn-primary {
         background: #000;
         color: #facc15;
         }
         .cta .btn-primary:hover {
         background: #1f2937;
         }
         /* ===============================
         FOOTER
         =================================*/
         footer {
         background: #0b1120;
         padding: 25px 0;
         text-align: center;
         font-size: 14px;
         color: #94a3b8;
         border-top: 1px solid rgba(255,255,255,0.05);
         }
         /* ===============================
         RESPONSIVE
         =================================*/
         @media (max-width: 992px) {
         .header-wrapper {
         flex-direction: column;
         gap: 15px;
         }
         .search-form {
         width: 100%;
         }
         }
         @media (max-width: 768px) {
         header .container {
         flex-direction: column;
         gap: 15px;
         }
         .logo-img {
         height: 26px;
         }
         .hero h2 {
         font-size: 28px;
         }
         .hero p {
         font-size: 16px;
         }
         .features h2,
         .cta h2 {
         font-size: 24px;
         }
         .nav-menu {
         flex-wrap: wrap;
         justify-content: center;
         }
         }
         /* ===============================
         PROVIDER NAVBAR
         =================================*/
         .provider-nav {
         background: #111827;
         border-top: 1px solid rgba(255,255,255,0.05);
         border-bottom: 1px solid rgba(255,255,255,0.05);
         padding: 12px 0;
         }
         .provider-menu {
         list-style: none;
         display: flex;
         justify-content: center;
         gap: 40px;
         }
         .provider-menu li a {
         text-decoration: none;
         color: #cbd5e1;
         font-weight: 600;
         font-size: 14px;
         transition: 0.3s;
         letter-spacing: 0.5px;
         }
         .provider-menu li a:hover {
         color: #facc15;
         }
         /* Responsive */
         @media (max-width: 768px) {
         .provider-menu {
         flex-wrap: wrap;
         gap: 15px;
         }
         }
         /* Provider Icon */
         .provider-menu li a {
         display: flex;
         align-items: center;
         gap: 8px;
         }
         .provider-icon svg {
         fill: #1f2937;
         stroke: #facc15;
         stroke-width: 2;
         border-radius: 50%;
         }
         .provider-icon text {
         fill: #facc15;
         font-size: 12px;
         font-weight: bold;
         font-family: Arial, sans-serif;
         }
         /* Hover Effect */
         .provider-menu li a:hover svg {
         fill: #facc15;
         }
         .provider-menu li a:hover text {
         fill: #000;
         }
         /* ===============================
         RUNNING INFO BAR
         =================================*/
         .info-bar {
         background: #1f2937;
         border-top: 1px solid rgba(255,255,255,0.05);
         border-bottom: 1px solid rgba(255,255,255,0.05);
         padding: 10px 0;
         overflow: hidden;
         }
         .info-wrapper {
         display: flex;
         align-items: center;
         gap: 15px;
         }
         /* Icon */
         .info-icon svg {
         stroke: #facc15;
         fill: none;
         stroke-width: 2;
         }
         /* Marquee */
         .info-marquee {
         overflow: hidden;
         position: relative;
         width: 100%;
         }
         .info-track {
         white-space: nowrap;
         display: inline-block;
         animation: scroll-left 18s linear infinite;
         font-size: 14px;
         color: #facc15;
         }
         /* Animation */
         @keyframes scroll-left {
         0% {
         transform: translateX(100%);
         }
         100% {
         transform: translateX(-100%);
         }
         }
         /* ===============================
         FULL WIDTH SLIDER
         =================================*/
         .slider {
         position: relative;
         width: 100%;
         height: 500px;
         overflow: hidden;
         }
         .slider-wrapper {
         position: relative;
         width: 100%;
         height: 100%;
         }
         .slide {
         position: absolute;
         width: 100%;
         height: 100%;
         opacity: 0;
         transition: opacity 1s ease-in-out;
         }
         .slide.active {
         opacity: 1;
         z-index: 1;
         }
         .slide img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         }
         .slide-content {
         position: absolute;
         top: 50%;
         left: 10%;
         transform: translateY(-50%);
         color: #fff;
         max-width: 500px;
         }
         .slide-content h2 {
         font-size: 42px;
         margin-bottom: 15px;
         }
         .slide-content p {
         font-size: 18px;
         margin-bottom: 20px;
         }
         /* Overlay gelap */
         .slide::after {
         content: "";
         position: absolute;
         inset: 0;
         background: rgba(0,0,0,0.5);
         }
         /* ===============================
         SLIDER ARROWS
         =================================*/
         .slider-arrow {
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         background: rgba(0,0,0,0.5);
         border: none;
         color: #facc15;
         font-size: 30px;
         padding: 12px 18px;
         cursor: pointer;
         z-index: 10;
         border-radius: 50%;
         transition: 0.3s;
         }
         .slider-arrow:hover {
         background: #facc15;
         color: #000;
         }
         .slider-arrow.prev {
         left: 20px;
         }
         .slider-arrow.next {
         right: 20px;
         }
         /* Responsive */
         @media (max-width: 768px) {
         .slider-arrow {
         font-size: 22px;
         padding: 8px 12px;
         }
         }
         @media (max-width: 768px) {
         .slider {
         height: 300px;
         }
         .slide-content h2 {
         font-size: 22px;
         }
         .slide-content p {
         font-size: 14px;
         }
         }
         /* ===============================
         SITE INFO TABLE
         =================================*/
         .site-info {
         padding: 80px 0;
         background: #0f172a;
         }
         .section-title {
         text-align: center;
         font-size: 32px;
         margin-bottom: 40px;
         color: #facc15;
         }
         .info-table-wrapper {
         overflow-x: auto;
         }
         .info-table {
         width: 100%;
         border-collapse: collapse;
         background: #111827;
         border-radius: 8px;
         overflow: hidden;
         border: 1px solid rgba(255,255,255,0.1); /* garis tepi luar */
         }
         .info-table th,
         .info-table td {
         padding: 18px 20px;
         text-align: left;
         }
         .info-table th {
         width: 35%;
         background: #1f2937;
         color: #facc15;
         font-weight: 600;
         display: flex;
         align-items: center;
         gap: 10px;
         }
         .info-table td {
         color: #e5e7eb;
         }
         .info-table tr {
         border-bottom: 1px solid rgba(255,255,255,0.05);
         }
         .info-table tr:last-child {
         border-bottom: none;
         }
         /* SVG Icon */
         .info-svg svg {
         stroke: #facc15;
         fill: none;
         stroke-width: 2;
         }
         /* Responsive */
         @media (max-width: 768px) {
         .section-title {
         font-size: 22px;
         }
         .info-table th,
         .info-table td {
         padding: 14px;
         font-size: 14px;
         }
         }
         .info-table th,
         .info-table td {
         padding: 18px 20px;
         text-align: left;
         border-left: 1px solid rgba(255,255,255,0.05);
         border-right: 1px solid rgba(255,255,255,0.05);
         }
         /* ===============================
         SITE INFO CARD STYLE
         =================================*/
         .site-info {
         padding: 80px 0;
         background: #0f172a;
         }
         .section-title {
         text-align: center;
         font-size: 32px;
         margin-bottom: 50px;
         color: #facc15;
         }
         /* Grid Layout */
         .info-card-grid {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
         gap: 25px;
         }
         /* Card */
         .info-card {
         background: #111827;
         padding: 25px;
         border-radius: 12px;
         display: flex;
         align-items: flex-start;
         gap: 15px;
         transition: 0.3s ease;
         border: 1px solid rgba(255,255,255,0.05);
         }
         /* Hover Effect */
         .info-card:hover {
         transform: translateY(-6px);
         border-color: #facc15;
         box-shadow: 0 10px 25px rgba(0,0,0,0.4);
         }
         /* Icon */
         .card-icon {
         background: rgba(250,204,21,0.1);
         padding: 10px;
         border-radius: 10px;
         }
         .card-icon svg {
         stroke: #facc15;
         fill: none;
         stroke-width: 2;
         }
         /* Content */
         .card-content h3 {
         font-size: 16px;
         margin-bottom: 5px;
         color: #facc15;
         }
         .card-content p {
         font-size: 14px;
         color: #e5e7eb;
         }
         /* Responsive */
         @media (max-width: 768px) {
         .section-title {
         font-size: 22px;
         }
         .info-card {
         padding: 18px;
         }
         }
         .breadcrumb {
         background: #111827;
         padding: 14px 0;
         border-bottom: 1px solid rgba(255,255,255,0.05);
         }
         .breadcrumb-list {
         list-style: none;
         display: flex;
         align-items: center;
         gap: 8px;
         font-size: 14px;
         }
         .breadcrumb-list li {
         color: #94a3b8;
         }
         .breadcrumb-list li a {
         text-decoration: none;
         color: #facc15;
         transition: 0.3s;
         }
         .breadcrumb-list li a:hover {
         color: #ffffff;
         }
         /* Separator */
         .breadcrumb-list li + li::before {
         content: "›";
         margin-right: 8px;
         color: #6b7280;
         }
         /* Icon di benefit list */
         .register-benefit li {
         display: flex;
         align-items: center;
         gap: 10px;
         margin-bottom: 10px;
         color: #e5e7eb;
         }
         .register-benefit svg {
         stroke: #facc15;
         fill: none;
         stroke-width: 2;
         }
         /* Label dengan icon */
         .register-form label {
         display: flex;
         align-items: center;
         gap: 6px;
         margin-bottom: 6px;
         font-size: 14px;
         color: #facc15;
         }
         .register-form label svg {
         stroke: #facc15;
         fill: none;
         stroke-width: 2;
         }
         /* Button icon */
         .btn-register {
         display: flex;
         align-items: center;
         justify-content: center;
         gap: 8px;
         }
         .btn-register svg {
         stroke: #000;
         fill: none;
         stroke-width: 2;
         }
         /* ===============================
         REGISTER SECTION
         =================================*/
         .register-section {
         padding: 90px 0;
         background: #111827;
         }
         .register-wrapper {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 50px;
         align-items: center;
         }
         /* Info Side */
         .register-info h2 {
         font-size: 32px;
         color: #facc15;
         margin-bottom: 20px;
         }
         .register-info p {
         color: #cbd5e1;
         margin-bottom: 25px;
         }
         .register-benefit {
         list-style: none;
         padding: 0;
         }
         .register-benefit li {
         margin-bottom: 10px;
         color: #e5e7eb;
         }
         /* Form Box */
         .register-form-box {
         background: #0f172a;
         padding: 30px;
         border-radius: 12px;
         border: 1px solid rgba(255,255,255,0.05);
         }
         .register-form .form-group {
         margin-bottom: 18px;
         }
         .register-form label {
         display: block;
         margin-bottom: 6px;
         font-size: 14px;
         color: #facc15;
         }
         .register-form input,
         .register-form select {
         width: 100%;
         padding: 10px 12px;
         border-radius: 6px;
         border: 1px solid rgba(255,255,255,0.1);
         background: #1f2937;
         color: #ffffff;
         outline: none;
         transition: 0.3s;
         }
         .register-form input:focus,
         .register-form select:focus {
         border-color: #facc15;
         }
         /* Button */
         .btn-register {
         width: 100%;
         padding: 14px;
         background: #facc15;
         border: none;
         border-radius: 6px;
         font-weight: bold;
         cursor: pointer;
         transition: 0.3s;
         }
         .btn-register:hover {
         background: #eab308;
         }
         /* Responsive */
         @media (max-width: 992px) {
         .register-wrapper {
         grid-template-columns: 1fr;
         }
         }
         /* ===============================
   STEPS SECTION
=================================*/

.steps-section {
    padding: 90px 0;
    background: #0f172a;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Card */
.step-card {
    position: relative;
    background: #111827;
    padding: 40px 25px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: #facc15;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Icon */
.step-icon {
    margin-bottom: 20px;
}

.step-icon svg {
    stroke: #facc15;
    fill: none;
    stroke-width: 2;
}

/* Title */
.step-card h3 {
    color: #facc15;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Text */
.step-card p {
    color: #cbd5e1;
    font-size: 14px;
}

/* Step Number Background */
.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    color: rgba(250,204,21,0.08);
}

/* Responsive */
@media (max-width: 992px) {
    .steps-wrapper {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   REVIEW SECTION
=================================*/

.review-section {
    padding: 90px 0;
    background: #111827;
}

.review-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #0f172a;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: #facc15;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Stars */
.review-stars {
    margin-bottom: 15px;
}

.review-stars svg {
    fill: #facc15;
}

/* Text */
.review-text {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* Name */
.review-name {
    font-weight: bold;
    color: #facc15;
}

/* Responsive */
@media (max-width: 992px) {
    .review-wrapper {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   FAQ SECTION
=================================*/

.faq-section {
    padding: 90px 0;
    background: #0f172a;
}

.faq-wrapper {
    margin-top: 50px;
    display: grid;
    gap: 25px;
}

.faq-item {
    background: #111827;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: #facc15;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.faq-item h3 {
    color: #facc15;
    margin-bottom: 12px;
    font-size: 18px;
}

.faq-item p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-item {
        padding: 18px;
    }

    .faq-item h3 {
        font-size: 16px;
    }
}
/* ===============================
   SUBSCRIBE SECTION
=================================*/

.subscribe-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #111827, #0f172a);
    text-align: center;
}

.subscribe-content {
    max-width: 700px;
    margin: auto;
}

.subscribe-icon {
    margin-bottom: 20px;
}

.subscribe-icon svg {
    stroke: #facc15;
    fill: none;
    stroke-width: 2;
}

.subscribe-content h2 {
    font-size: 28px;
    color: #facc15;
    margin-bottom: 15px;
}

.subscribe-content p {
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Form */
.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.subscribe-form input {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #1f2937;
    color: #fff;
    min-width: 260px;
    outline: none;
}

.subscribe-form input:focus {
    border-color: #facc15;
}

.subscribe-form button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    background: #facc15;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-form button:hover {
    background: #eab308;
}

.subscribe-form button svg {
    stroke: #000;
    fill: none;
    stroke-width: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .subscribe-content h2 {
        font-size: 22px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input {
        width: 100%;
    }

    .subscribe-form button {
        width: 100%;
        justify-content: center;
    }
}
/* ===============================
   FOOTER
=================================*/

.main-footer {
    background: #0b1120;
    padding: 60px 0 30px;
    color: #cbd5e1;
}

.footer-wrapper {
    display: grid;
    gap: 40px;
}

.footer-column h3 {
    color: #facc15;
    margin-bottom: 15px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #111827;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons svg {
    stroke: #facc15;
    fill: none;
    stroke-width: 2;
}

.social-icons a:hover {
    background: #facc15;
}

.social-icons a:hover svg {
    stroke: #000;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pay-item {
    background: #111827;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.pay-item:hover {
    border-color: #facc15;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

/* Responsive */
@media (min-width: 768px) {
    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
/* ===============================
   RTP SECTION
=================================*/

.rtp-section {
    padding: 90px 0;
    background: #0f172a;
}

.rtp-table-wrapper {
    overflow-x: auto;
}

.rtp-table {
    width: 100%;
    border-collapse: collapse;
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.rtp-table th,
.rtp-table td {
    padding: 14px 16px;
    text-align: center;
    font-size: 14px;
}

.rtp-table th {
    background: #1f2937;
    color: #facc15;
    font-weight: 600;
}

.rtp-table td {
    color: #e5e7eb;
}

.rtp-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.rtp-table tr:hover {
    background: rgba(250,204,21,0.05);
}

.rtp-high {
    color: #22c55e;
    font-weight: bold;
}

.rtp-medium {
    color: #facc15;
    font-weight: bold;
}

.rtp-low {
    color: #ef4444;
    font-weight: bold;
}

@media (max-width: 768px) {
    .rtp-table th,
    .rtp-table td {
        font-size: 12px;
        padding: 10px;
    }
}
/* ===============================
   GAME TERBARU SECTION
=================================*/

.newgame-section {
    padding: 90px 0;
    background: #111827;
}

.newgame-table-wrapper {
    overflow-x: auto;
}

.newgame-table {
    width: 100%;
    border-collapse: collapse;
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.newgame-table th,
.newgame-table td {
    padding: 14px 16px;
    text-align: center;
    font-size: 14px;
}

.newgame-table th {
    background: #1f2937;
    color: #facc15;
}

.newgame-table td {
    color: #e5e7eb;
}

.newgame-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.newgame-table tr:hover {
    background: rgba(250,204,21,0.05);
}

/* Badge NEW */
.badge-new {
    background: #facc15;
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .newgame-table th,
    .newgame-table td {
        font-size: 12px;
        padding: 10px;
    }
}
