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

    body {
        font-family: Arial, sans-serif;
        background: #000;
        min-height: 100vh;
        color: white;
        padding-bottom: 80px;
    }

    .container {
        max-width: 100%;
        margin: 0 auto;
    }

    .content-wrapper {
        margin: 0 auto;
    }

    /* Modal Overlay */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
        overflow-y: auto;
        padding: 20px;
    }

    .modal-overlay.active {
        display: flex;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Modal Content */
    .modal-content {
        background: linear-gradient(180deg, #5D0000 0%, #3D0000 100%);
        border-radius: 30px;
        padding: 0;
        max-width: 600px;
        width: 100%;
        position: relative;
        animation: slideUp 0.3s ease;
        overflow: hidden;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }

    @keyframes slideUp {
        from {
            transform: translateY(50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-header {
        background: linear-gradient(180deg, rgba(112, 0, 0, 0) 0%, #960404 100%);
        padding: 20px;
        text-align: center;
        position: relative;
        flex-shrink: 0;
    }

    .modal-header h2 {
        color: white;
        font-size: 22px;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: transparent;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s;
    }

    .modal-close:hover {
        transform: scale(1.2);
    }

    .modal-body {
        padding: 30px;
        overflow-y: auto;
        flex: 1;
    }

    /* Form Styles */
    .form-group {
        margin-bottom: 25px;
    }

    .form-label {
        display: block;
        color: white;
        font-size: 15px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .form-input,
    .form-select {
        width: 100%;
        padding: 15px 20px;
        background: transparent;
        border: 2px solid #F9E000;
        border-radius: 30px;
        color: white;
        font-size: 15px;
        outline: none;
        transition: all 0.3s;
    }

    .form-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .form-input:focus,
    .form-select:focus {
        border-color: #FFE44D;
        box-shadow: 0 0 10px rgba(253, 217, 40, 0.3);
    }

    .form-select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FDD928' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 20px center;
        padding-right: 45px;
    }

    .form-select option {
        background: #3D0000;
        color: white;
        padding: 10px;
    }

    .modal-button {
        width: 100%;
        background: linear-gradient(135deg, #480303, #480303);
        color: #FFD700;
        padding: 18px;
        border: 1px solid #B90000;
        border-radius: 30px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s;
        box-shadow: 0 5px 20px rgba(253, 217, 40, 0.4);
        margin-top: 10px;
    }

    .modal-button:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(253, 217, 40, 0.6);
    }

    .modal-button:active {
        transform: scale(0.98);
    }

    /* Result Modal Styles */
    .result-content {
        padding: 20px 30px 30px 30px;
    }

    .result-item {
        color: white;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 12px;
    }

    .result-item:last-of-type {
        margin-bottom: 25px;
    }

    /* Intro Modal Styles */
    .intro-logo {
        margin-bottom: 30px;
    }

    .intro-logo img {
        width: 250px;
        height: auto;
    }

    .intro-text {
        color: white;
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    /* Cheat Form Styles */
    #cheatMainModal input[type="checkbox"] {
        accent-color: #F9E000;
        cursor: pointer;
        width: 18px;
        height: 18px;
    }

    #cheatMainModal select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FDD928' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
    }

    #cheatMainModal select option {
        background: #3D0000;
        color: white;
    }

    #cheatMainModal input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    /* NEW: Error Message Styles */
    .error-message {
        color: #ff6b6b;
        font-size: 12px;
        margin-top: 5px;
        display: none;
    }

    .error-message.show {
        display: block;
    }

    #cheatMainModal input.error,
    #cheatMainModal select.error {
        border-color: #ff4444;
    }

    #cheatMainModal label {
        display: flex;
        align-items: center;
        gap: 10px;
        color: white;
        font-size: 13px;
        cursor: pointer;
        padding: 10px;
        background: rgba(139, 0, 0, 0.3);
        border-radius: 10px;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    #cheatMainModal label:hover {
        background: rgb(139, 0, 0);
    }

    #cheatMainModal label.checked {
        border-color: #F9E000;
        background: rgba(249, 224, 0, 0.1);
    }

    /* NEW: Navigation Buttons Styles */
    #cheatNavButtons {
        display: flex;
        gap: 10px;
        margin-top: 25px;
    }

    #cheatPrevButton,
    #cheatNextButton {
        flex: 1;
        padding: 15px;
        border: none;
        border-radius: 50px;
        font-size: 15px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
    }

    #cheatPrevButton {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    #cheatPrevButton:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }

    #cheatNextButton {
        background: linear-gradient(135deg, #FFE44D, #FFD700);
        color: #480303;
    }

    #cheatNextButton:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(249, 224, 0, 0.4);
    }

    #cheatNextButton:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .hidden {
        display: none !important;
    }

    /* Announcement Bar - Desktop Only */
    .announcement {
        background: #440303C4;
        border: 1px solid #F9E000;
        border-radius: 50px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        padding: 12px 0;
    }

    .announcement-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        margin-left: 20px;
    }

    .announcement-icon img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .announcement-text-wrapper {
        flex: 1;
        overflow: hidden;
        position: relative;
        margin-right: 20px;
    }

    .announcement-text {
        display: inline-block;
        white-space: nowrap;
        animation: scroll-text 20s linear infinite;
        padding-right: 50px;
    }

    @keyframes scroll-text {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }


    /* Header Wrapper */
    .header-wrapper {
        background: radial-gradient(54.65% 131.26% at 45.35% -41.95%, #FF0000 0%, #2A0000 100%);
        padding: 5px 0;
        margin-bottom: 20px;
    }

    /* Header Desktop - 3 Sections */
    .header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 30px;
        align-items: center;
        max-width: 1450px;
        margin: 0 auto;
        padding: 0 50px;
    }

    /* Logo Section */
    .header-logo-section {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 30px;
        border-radius: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-icon {
        width: 180px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .logo-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Menu Section */
    .header-menu-section {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 30px;
    }

    .nav-menu {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .nav-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 4px 10px;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s;
    }

    .nav-item:hover {
        transform: translateY(-2px);
    }

    .nav-item span {
        color: #F9E000;
        font-weight: 600;
        font-size: 15px;
    }

    .nav-icon {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Auth Buttons Section */
    .header-auth-section {
        display: flex;
        gap: 15px;
        align-items: center;
        padding: 10px 30px;
        border-radius: 10px;
    }

    .btn-masuk {
        background: #F9E000;
        color: #480303;
        padding: 12px 35px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 16px;
        border: none;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-masuk:hover {
        background: #f9e00000;
        color: #ffffff;
        border: 2px #e5ec05;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        border-style: groove;
    }

    .btn-daftar {
        background: rgba(255, 0, 0, 0.12);
        color: #F9E000;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 16px;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        animation: blinking 1.5s infinite;
        box-shadow: 0 0 10px rgba(249, 224, 0, 0.5);
    }

    .btn-daftar:hover {
        background: #F9E000;
        color: #480303;
        animation: none;
    }

    /* Animasi Blinking */
    @keyframes blinking {
        0% {
            background: #480303;
            border-color: #480303;
            box-shadow: 0 0 10px rgba(249, 224, 0, 0.5);
        }

        50% {
            background: #8B0000;
            border-color: #8B0000;
            box-shadow: 0 0 20px rgba(249, 224, 0, 0.8),
                0 0 30px rgba(249, 224, 0, 0.6);
        }

        100% {
            background: #480303;
            border-color: #480303;
            box-shadow: 0 0 10px rgba(249, 224, 0, 0.5);
        }
    }

    /* Mobile Sections - Hidden on Desktop */
    .mobile-logo-section,
    .mobile-announcement-section,
    .mobile-auth-section {
        display: none;
    }

    /* Provider Carousel */
    .provider-carousel {
        background: #480303;
        border: 1px solid #F9E000;
        border-radius: 100px;
        padding: 15px 20px;
        margin: 20px auto;
        max-width: 1400px;
        display: flex;
        align-items: center;
        gap: 15px;
        overflow: visible;
    }

    .carousel-container {
        flex: 1;
        overflow: hidden;
        position: relative;
        padding-top: 13px;
        touch-action: pan-y;
    }

    .carousel-track {
        display: flex;
        gap: 15px;
        transition: transform 0.4s ease;
        will-change: transform;
        margin-bottom: 3px;
    }

    .carousel-track.dragging {
        transition: none;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        color: #F9E000;
        font-size: 18px;
        transition: all 0.3s;
        user-select: none;
    }

    .carousel-arrow:hover {
        background: rgba(253, 217, 40, 0.4);
        transform: scale(1.1);
    }

    .carousel-arrow:active {
        transform: scale(0.95);
    }

    .carousel-arrow.disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }

    .provider-item {
        background: linear-gradient(90deg, #4C0606 0%, #960404 100%);
        border: 2px solid #F9E000;
        border-radius: 50px;
        padding: 15px 15px;
        min-width: 200px;
        display: flex;
        align-items: center;
        gap: 19px;
        cursor: pointer;
        transition: transform 0.3s;
        flex-shrink: 0;
        height: 85px;
        width: 300px;
        text-decoration: none;
    }

    .provider-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(253, 217, 40, 0.3);
    }

    .provider-item img:first-child {
        width: 110px;
        height: 115px;
        object-fit: contain;
        left: 15px;
        top: -20px;
        z-index: 2;
        transition: all 0.3s ease;
        filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
    }

    .provider-info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .provider-logo {
        width: 110px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .provider-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Filter Dropdown */
    .filter-wrapper {
        position: relative;
        margin-bottom: 20px;
    }

    /* Game Section */
    .game-section {
        background: radial-gradient(76.98% 76.98% at 50% 23.02%, #8C0C0C 0%, #000000ff 100%);
        border: 2px solid #F9E000;
        border-bottom: none;
        border-left: none;
        border-right: none;
        border-radius: 150px 150px 0 0;
        padding-top: 30px;
        padding-left: 50px;
        padding-right: 50px;
        box-shadow: 0px -4px 4px 0px #FFCC00;
    }

    .section-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        color: white;
        text-align: center;
    }

    .game-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 20px;
    }

    .stat-fill-inner {
        height: 100%;
        border-radius: 18px;
        transition: width 0.3s ease;
        position: relative;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.2),
            0 0 8px rgba(76, 175, 80, 0.6);
    }

    .stat-fill-inner.green {
        background: linear-gradient(270deg, #80FF00 0%, #949900 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.2),
            0 0 8px rgba(154, 205, 50, 0.6);
    }

    .stat-fill-inner.yellow {
        background: linear-gradient(180deg, #ffe75d 0%, #e9da10 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.2),
            0 0 8px rgba(255, 215, 0, 0.6);
    }

    .stat-fill-inner.red {
        background: linear-gradient(90deg, #990000 0%, #DB0303 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.2),
            0 0 8px rgba(255, 107, 107, 0.6);
    }

    .game-card {
        background: linear-gradient(180deg, #8B0000 0%, #4C0000 100%);
        border: 3px solid #F9E000;
        border-radius: 20px;
        padding: 10px;
        cursor: pointer;
        color: #F7C22E;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .game-card.hidden {
        display: none;
    }

    .game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(253, 217, 40, 0.5);
    }

    .game-image {
        width: 100%;
        height: 150px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 15px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .game-image img {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .game-info {
        text-align: center;
    }

    .game-provider {
        font-size: 14px;
        color: #F7C22E;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .game-name {
        font-size: 12px;
        color: #F7C22E;
        margin-bottom: 10px;
    }

    .game-stats {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 10px;
    }

    .stat-bar {
        background: linear-gradient(180deg, #3D2415 0%, #2A1810 100%);
        border: 2px solid #FFCC00;
        border-radius: 20px;
        padding: 0;
        font-size: 12px;
        display: flex;
        align-items: center;
        font-weight: bold;
        height: 24px;
        position: relative;
        overflow: hidden;
        box-shadow:
            inset 0 2px 4px rgba(0, 0, 0, 0.5),
            0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .stat-bar span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        z-index: 2;
        font-size: 11px;
        font-weight: 900;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    }

    .stat-fill {
        width: 100%;
        height: 100%;
        position: relative;
        background: transparent;
        border-radius: 18px;
        overflow: hidden;
    }

    .game-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .game-btn {
        padding: 10px;
        border-radius: 15px;
        border: 2px solid;
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.2s;
        position: relative;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .game-btn:hover {
        transform: scale(1.05);
    }

    .btn-cheat {
        background: linear-gradient(180deg, #FFCC00 0%, #F9E000 100%);
        color: #480303;
        border-color: #413401;
        box-shadow:
            0 4px 0 #413401,
            0 6px 12px rgba(0, 0, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 8px rgba(65, 52, 1, 0.3);
    }

    .btn-cheat:active {
        transform: translateY(2px);
        box-shadow:
            0 2px 0 #413401,
            0 4px 8px rgba(0, 0, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 8px rgba(65, 52, 1, 0.3);
    }

    .btn-pola {
        background: linear-gradient(180deg, #FFCC00 0%, #F9E000 100%);
        color: #480303;
        border-color: #413401;
        box-shadow:
            0 4px 0 #413401,
            0 6px 12px rgba(0, 0, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 8px rgba(65, 52, 1, 0.3);
    }

    .btn-pola:active {
        transform: translateY(2px);
        box-shadow:
            0 2px 0 #413401,
            0 4px 8px rgba(0, 0, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.4),
            inset 0 -2px 8px rgba(65, 52, 1, 0.3);
    }

    /* NEW: Filter Controls Bar */
    .filter-controls {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 15px;
        max-width: 1400px;
        margin: 30px auto 20px auto;
        padding: 0 50px;
        background-color: #F9E000;
        border-radius: 50px;
    }

    .filter-control {
        position: relative;
    }

    .filter-control-input {
        width: 100%;
        padding: 15px 20px;
        background: #F9E000;
        border: 2px solid transparent;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        outline: none;
        transition: all 0.3s;
        color: #440303;
    }

    .filter-control-input::placeholder {
        color: #440303;
    }

    .filter-control-input:focus {
        border-color: #440303;
        box-shadow: 0 0 0 3px rgba(26, 127, 55, 0.1);
    }

    .filter-control-dropdown {
        width: 100%;
        padding: 15px 45px 15px 20px;
        background-color: #F9E000;
        border: 2px solid transparent;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        color: #440303;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .filter-control-dropdown:hover {
        border-color: #440303;
    }

    .filter-control-dropdown.active {
        border-color: #440303;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .dropdown-arrow {
        color: #440303;
        font-size: 18px;
        transition: transform 0.3s;
    }

    .dropdown-arrow.active {
        transform: rotate(180deg);
    }

    .search-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #440303;
        font-size: 20px;
        pointer-events: none;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 2px solid #440303;
        border-top: none;
        border-radius: 0 0 20px 20px;
        z-index: 100;
        display: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        max-height: 250px;
        overflow-y: auto;
    }

    .dropdown-menu.active {
        display: block;
        animation: dropdownSlide 0.3s ease;
    }

    @keyframes dropdownSlide {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-item {
        padding: 15px 20px;
        color: #440303;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.2s;
        border-bottom: 1px solid rgba(26, 127, 55, 0.1);
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background: rgba(26, 127, 55, 0.05);
    }

    .dropdown-item.selected {
        background: rgba(26, 127, 55, 0.1);
        font-weight: 700;
    }

    .no-results {
        text-align: center;
        padding: 40px 20px;
        color: white;
        font-size: 18px;
    }

    /* Bottom Navigation */
    .bottom-nav {
        display: none;
    }

    /* Footer */
    .footer {
        text-align: center;
        padding: 20px;
        margin-top: 30px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .filter-wrapper {
        display: none;
    }

    /* Mobile Filter Dropdown Button - Hidden on Desktop */
    .mobile-filter-dropdown {
        display: none;
    }

    /* ===== CHEAT TABS WITH CONNECTOR LINES AND PROGRESS ===== */
    .cheat-tabs-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    /* Connector Line Background */
    .cheat-tabs-connector {
        position: absolute;
        top: 50%;
        left: 10%;
        right: 10%;
        height: 4px;
        background: rgba(139, 0, 0, 0.3);
        transform: translateY(-50%);
        z-index: 1;
        border-radius: 2px;
    }

    /* Progress Line */
    .cheat-tabs-progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: linear-gradient(90deg, #F9E000, #FFD700);
        border-radius: 2px;
        transition: width 0.4s ease;
        box-shadow: 0 0 10px rgba(249, 224, 0, 0.5);
    }

    /* Tabs Wrapper */
    .cheat-tabs-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .cheat-tab {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        background: rgb(139, 0, 0);
        border: 3px solid rgba(249, 224, 0, 0.3);
        border-radius: 50px;
        padding: 10px 15px;
        gap: 10px;
        min-height: 60px;
    }

    /* Tab Icon Container - Now Rectangular */
    .cheat-tab-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cheat-tab-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 1;
        transition: opacity 0.3s ease;
        filter: brightness(0.7);
    }

    /* Tab Label */
    .cheat-tab-label {
        color: rgba(249, 224, 0, 0.5);
        font-size: 14px;
        font-weight: bold;
        transition: color 0.3s ease;
        text-align: left;
        line-height: 1.2;
    }

    /* Active Tab State */
    .cheat-tab.active {
        border-color: #F9E000;
        transform: scale(1.02);
    }

    .cheat-tab.active .cheat-tab-icon img {
        opacity: 1;
        filter: brightness(1);
    }

    .cheat-tab.active .cheat-tab-label {
        color: #F9E000;
    }

    /* Completed Tab State */
    .cheat-tab.completed {
        border-color: #F9E000;
    }

    .cheat-tab.completed .cheat-tab-icon img {
        opacity: 1;
        filter: brightness(1);
    }

    .cheat-tab.completed .cheat-tab-label {
        color: #F9E000;
    }

    /* Hover Effect */
    .cheat-tab:not(.locked):hover {
        transform: scale(1.02);
        border-color: #F9E000;
    }

    .cheat-tab:not(.locked):hover .cheat-tab-label {
        color: #FFD700;
    }

    /* Locked State */
    .cheat-tab.locked {
        cursor: not-allowed;
        opacity: ;
    }

    /* Responsive Mobile */
    @media (max-width: 768px) {
        body {
            padding-bottom: 100px;
        }

        .carousel-track {
            gap: 10px;
        }

        /* Mobile Filter Controls */
        .mobile-filter-dropdown {
            display: flex;
            width: calc(100% - 30px);
            padding: 15px 20px;
            background: #F9E000;
            border: 2px solid #440303;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            color: #440303;
            align-items: center;
            justify-content: space-between;
            margin: 0 15px 10px 15px;
        }

        .mobile-filter-dropdown .dropdown-arrow {
            transition: transform 0.3s;
        }

        .mobile-filter-dropdown.active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .filter-controls {
            display: none;
            grid-template-columns: 1fr;
            padding: 0 15px;
            gap: 0px;
            margin: 0 0 15px 0;
            background-color: transparent;
            border-radius: 0;
        }

        .filter-controls.active {
            display: grid;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-filter-dropdown {
            display: flex;
            margin-bottom: 20px;
        }

        .filter-control-input {
            border-radius: 30px 30px 0px 0px;
        }

        .filter-control-dropdown {
            padding: 12px 15px;
            border-radius: 0px;
            font-size: 14px;

        }

        #rtpDropdown {
            border-radius: 0px 0px 30px 30px;
        }

        .filter-control-dropdown {
            padding-right: 40px;
        }

        /* Hide Desktop Header */
        .header-wrapper {
            display: none;
        }

        /* Mobile Logo Section */
        .mobile-logo-section {
            display: flex;
            justify-content: center;
            align-items: center;
            background: radial-gradient(54.65% 131.26% at 45.35% -41.95%, #FF0000 0%, #2A0000 100%);
        }

        .mobile-logo-section .logo-icon {
            width: 200px;
            height: 60px;
        }

        /* Mobile Announcement Section */
        .mobile-announcement-section {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 15px;
            background: rgba(139, 0, 0, 0.6);
            border: 2px solid #F9E000;
            border-radius: 50px;
            margin: 15px;
            font-size: 13px;
            overflow: hidden;
        }

        .mobile-announcement-section .announcement-icon {
            width: 30px;
            height: 30px;
            flex-shrink: 0;
        }

        .mobile-announcement-section .announcement-icon img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .mobile-announcement-section .announcement-text-wrapper {
            flex: 1;
            overflow: hidden;
            margin: 0;
        }

        .mobile-announcement-section .announcement-text {
            font-size: 11px;
        }

        .tabs {
            display: none;
        }

        .filter-wrapper {
            display: block;
            padding: 0 15px;
            margin-bottom: 15px;
        }

        /* Mobile Auth Section */
        .mobile-auth-section {
            display: flex;
            gap: 15px;
            padding: 0 15px 0px 15px;
        }

        .mobile-auth-section .btn-masuk {
            flex: 1;
            background: #F9E000;
            color: #480303;
            padding: 15px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 18px;
            border: none;
            text-transform: uppercase;
        }

        .mobile-auth-section .btn-daftar {
            flex: 1;
            background: transparent;
            color: #F9E000;
            padding: 15px;
            border: 2px solid #F9E000;
            border-radius: 30px;
            font-weight: bold;
            font-size: 18px;
            text-transform: uppercase;
        }

        /* Hide Desktop Announcement */
        .content-wrapper>.announcement {
            display: none;
        }


        /* Provider Carousel Mobile - Show 2 items */
        .provider-carousel {
            padding: 10px 0px;
            border-radius: 100px;
            gap: 0px;
            margin-left: 10px;
            margin-right: 10px;
        }

        .carousel-arrow {
            width: 30px;
            height: 30px;
            font-size: 14px;
        }

        .provider-item {
            min-width: 145px;
            padding: 10px 0px;
            height: 55px;
            border-radius: 50px;
            width: 125px;
            gap: 0px;
        }

        .provider-item img:first-child {
            width: 65px;
            height: 65px;
            margin-bottom: 5px;
        }

        .provider-logo {
            width: 70px;
        }

        /* Game Grid Mobile - 3 columns */
        .game-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 5px;
        }

        .game-section {
            padding: 20px 5px;
            border-radius: 70px 70px 0 0;
        }

        .section-title {
            font-size: 20px;
            margin-bottom: 25px;
        }

        .game-card {
            border-radius: 15px;
            padding: 8px;
            border: 2px solid #F9E000;
        }

        .game-image {
            height: 100px;
            border-radius: 10px;
        }

        .game-provider {
            font-size: 14px;
        }

        .game-name {
            font-size: 11px;
            margin-bottom: 8px;
        }

        .stat-bar {
            height: 18px;
            margin-bottom: 8px;
        }

        .stat-bar span {
            font-size: 9px;
        }

        .game-btn {
            padding: 7px;
            font-size: 9px;
            border-radius: 10px;
        }

        /* Bottom Navigation Mobile */
        .bottom-nav {
            display: flex;
            position: fixed;
            bottom: 10px;
            left: 15px;
            border-radius: 21px 20px 20px 20px;
            box-shadow: 0 0 4px 0 #FC0;
            right: 15px;
            border: 2px solid #610606;
            background: linear-gradient(90deg, #000 5%, #8F0101 50%, #000 95%);
            border-radius: 25px;
            padding: 0px 10px 8px 10px;
            justify-content: space-evenly;
            align-items: flex-end;
            z-index: 1000;
            overflow: visible;
            min-height: 70px;
        }

        .bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            gap: 0px;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            flex: 0 0 auto;
            min-width: 85px;
            position: relative;
        }

        .bottom-nav-item:active {
            transform: scale(0.95);
        }

        .bottom-nav-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            padding: 14px;
            position: relative;
            transform: translateY(-25px);
            margin-bottom: -25px;
        }

        .bottom-nav-icon::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 15%;
            right: 15%;
            height: 35%;
            background: linear-gradient(180deg,
                    rgba(255, 255, 255, 0.25) 0%,
                    rgba(255, 255, 255, 0) 100%);
            border-radius: 50%;
            filter: blur(4px);
        }

        .bottom-nav-icon::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            pointer-events: none;
        }

        .bottom-nav-icon img {
            width: 50px;
            object-fit: contain;
            position: relative;
            z-index: 1;
        }

        .bottom-nav-label {
            color: #F9E000;
            font-size: 11px;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
            text-shadow:
                0 2px 5px rgba(0, 0, 0, 0.9),
                0 0 12px rgba(249, 224, 0, 0.4);
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        .bottom-nav-item:hover .bottom-nav-icon {
            transform: translateY(-28px);
            box-shadow:
                0 10px 25px rgba(0, 0, 0, 0.6),
                inset 0 -4px 12px rgba(0, 0, 0, 0.4),
                inset 0 3px 8px rgba(255, 255, 255, 0.15),
                0 0 25px rgba(212, 175, 55, 0.5);
        }

        .bottom-nav-item:hover .bottom-nav-label {
            color: #FFE44D;
        }

        .footer {
            padding: 15px;
            font-size: 12px;
            margin-bottom: 20px;
        }

        /* Modal Responsive */
        .modal-content {
            width: 95%;
            max-width: 95%;
            margin: 10px;
        }

        .modal-header h2 {
            font-size: 16px;
            padding-right: 30px;
        }

        .modal-close {
            font-size: 25px;
            width: 30px;
            height: 30px;
            top: 10px;
            right: 10px;
        }

        .modal-body {
            padding: 20px 15px;
        }

        .form-label {
            font-size: 13px;
        }

        .form-input,
        .form-select {
            padding: 12px 15px;
            font-size: 13px;
        }

        .modal-button {
            padding: 15px;
            font-size: 14px;
        }

        .result-content {
            padding: 15px 20px 25px 20px;
        }

        .result-item {
            font-size: 13px;
            margin-bottom: 10px;
        }

        /* Intro Modal Responsive */
        .intro-logo img {
            width: 180px;
        }

        .intro-text {
            font-size: 15px;
            margin-bottom: 30px;
        }

        /* Cheat Tabs Mobile Responsive - NEW DESIGN */
        .cheat-tabs-container {
            padding: 0 0px;
            margin-bottom: 25px;
        }

        .cheat-tabs-connector {
            display: none;
        }

        .cheat-tabs-wrapper {
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 0;
            flex-wrap: nowrap;
        }

        .cheat-tab {
            flex: 0 0 auto;
            min-width: auto;
            max-width: none;
            padding: 0;
            border: none;
            background: transparent;
            min-height: auto;
            gap: 8px;
            flex-direction: column;
            text-align: center;
        }

        .cheat-tab-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(90deg, #8B0000 0%, #C41E1E 100%);
            border: 3px solid rgba(249, 224, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .cheat-tab-icon img {
            width: 35px;
            height: 35px;
            filter: brightness(0.7);
        }

        .cheat-tab.active .cheat-tab-icon {
            border-color: #F9E000;
            box-shadow: 0 0 15px rgba(249, 224, 0, 0.5);
        }

        .cheat-tab.active .cheat-tab-icon img {
            filter: brightness(1);
        }

        .cheat-tab.completed .cheat-tab-icon {
            border-color: #F9E000;
        }

        .cheat-tab.completed .cheat-tab-icon img {
            filter: brightness(1);
        }

        .cheat-tab-label {
            font-size: 11px;
            line-height: 1.2;
            color: rgba(249, 224, 0, 0.5);
        }

        .cheat-tab.active .cheat-tab-label {
            color: #F9E000;
        }

        .cheat-tab.completed .cheat-tab-label {
            color: #F9E000;
        }

        /* Cheat Modal Content Mobile */
        #cheatMainModal .modal-body {
            padding: 20px 15px;
        }

        #cheatMainModal .modal-body>div:first-child {
            margin-bottom: 20px;
        }

        #cheatMainModal .modal-body>div:first-child>div:first-child {
            margin-bottom: 15px;
        }

        #cheatMainModal .modal-body>div:first-child img {
            width: 120px;
            height: 120px;
        }

        #cheatMainModal .modal-body>div:first-child>div:nth-child(2) {
            font-size: 20px;
            margin-bottom: 15px;
        }

        #cheatMainModal .modal-body>div:first-child>div:last-child {
            font-size: 12px;
            padding: 0 10px;
        }

        /* Step Content Mobile */
        .cheat-step-content {
            padding: 15px 10px;
            display: none;
        }

        .cheat-step-content[data-step="1"] {
            display: block;
        }

        .cheat-step-content h3 {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .cheat-step-content>div {
            margin-bottom: 0;
        }

        .cheat-step-content label {
            font-size: 12px;
            padding: 8px 10px;
        }

        .cheat-step-content input[type="checkbox"] {
            width: 16px;
            height: 16px;
        }

        .cheat-step-content input[type="text"],
        .cheat-step-content select {
            padding: 10px 12px;
            font-size: 13px;
        }

        .cheat-step-content>div>div:first-child {
            font-size: 12px;
            margin-bottom: 10px;
        }

        /* Navigation Buttons Mobile */
        #cheatNavButtons {
            margin-top: 20px;
            gap: 10px;
        }

        #cheatPrevButton,
        #cheatNextButton {
            padding: 15px;
            font-size: 14px;
        }

        /* Pola Gacor Modal Mobile - NEW DESIGN */
        #polaGacorModal .modal-content {
            width: 90%;
            max-width: 400px;
        }

        #polaGacorModal .modal-header {
            padding: 15px;
            display: none;
        }

        #polaGacorModal .modal-body {
            padding: 30px 20px;

        }

        #polaGacorModal .modal-body>div>div:first-child {
            margin-bottom: 20px;

        }

        #polaGacorModal .modal-body>div>div:nth-child(3)>div:last-child {
            border-bottom: none;
            grid-template-columns: 1fr !important;
        }

        #polaGacorModal .modal-body>div>div:first-child img {
            width: 140px;
            height: 140px;
            border-radius: 20px;
        }

        #polaGacorModal .modal-body>div>div:nth-child(2) {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 30px;
        }

        /* Info Items - Vertical List */
        #polaGacorModal .modal-body>div>div:nth-child(3) {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 0;
            background: transparent;
            padding: 0;
            border-radius: 0;
        }

        #polaGacorModal .modal-body>div>div:nth-child(3)>div {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        #polaGacorModal .modal-body>div>div:nth-child(3)>div:last-child {
            border-bottom: none;
        }

        #polaGacorModal .modal-body>div>div:nth-child(3)>div>div:first-child {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: white;
        }

        .pola-skate {
            border-bottom: 1px double #fff;
            margin-bottom: 10px;
            margin-top: 10px;
        }

        .pola-percentage {
            border-bottom: 1px double #fff;
            margin-bottom: 10px;
        }

        .pola-jam-gacor {
            border-bottom: 1px double #fff;
            margin-bottom: 10px;
        }

        .pemisah-pola {
            display: none;
        }

        #polaGacorModal .modal-body>div>div:nth-child(3)>div>div:last-child {
            font-size: 18px;
            font-weight: normal;
            color: white;
        }

        /* Hide Steps Grid on Mobile */
        #polaGacorModal .modal-body>div>div:nth-child(4) {
            display: none;
        }

        /* CTA Button */
        #polaGacorModal .modal-button {
            margin-top: 30px;
        }

        #polaGacorModal .modal-body>div>div:nth-child(3)>div>div:first-child {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: white;
            border-bottom: 1px double #fff;
            margin-bottom: 5px;
        }

        #polaGacorModal .modal-body>div>div:nth-child(3)>div>div:first-child {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 8px;
            color: white;
            border-bottom: 1px double #fff;
        }


        /* Mystery Box & Spin Wheel Modal Mobile */
        #mysteryBoxModal .modal-content,
        #spinWheelModal .modal-content {
            width: 95%;
            max-width: 95%;
        }

        #mysteryBoxModal .modal-body,
        #spinWheelModal .modal-body {
            padding: 30px 20px;
        }

        #mysteryBoxModal .modal-body img[alt="Mystery Box"],
        #spinWheelModal .modal-body img[alt="Spin Wheel"] {
            width: 100px;
            height: 100px;
        }

        #mysteryBoxModal .modal-body>div>div:nth-child(2),
        #spinWheelModal .modal-body>div>div:nth-child(2) {
            font-size: 18px;
        }

        #mysteryBoxModal .intro-logo img,
        #spinWheelModal .intro-logo img {
            width: 160px;
        }

        #mysteryBoxModal .modal-body>div>div:nth-child(4),
        #spinWheelModal .modal-body>div>div:nth-child(4) {
            font-size: 14px;
        }

        #mysteryBoxModal .modal-body>div>div:nth-child(5),
        #spinWheelModal .modal-body>div>div:nth-child(5) {
            font-size: 12px;
            margin-bottom: 25px;
        }