/* VARIABEL WARNA */
:root {
    --gold: #D4AF37;
    --gold-light: #E6C567;
    --gold-dark: #B8860B;
    --black: #000000;
    --black-light: #121212;
    --red: #C41E3A;
    --red-hover: #B22222;
    --white: #FFFFFF;
    --gray: #333333;
}

/* RESET & GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    touch-action: manipulation;
}

body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    background-image: url('/src/image/background/background.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100vw 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.514);
    z-index: -1;
}
        
.banner-container {
    position: relative;
    margin-top: 25px;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    touch-action: pan-y;
}

.banner-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.banner-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-content {
    position: absolute;
    width: 100%;
    height: 200%;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.banner-slide img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
}

.slide-arrow {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.arrow-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.arrow-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 237, 155, 0.8);
}

.v-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.v-indicator.active {
    background: #ffffff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 235, 148, 0.8);
}

.slide-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

.hamburger-menu {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    transition: all 0.3s ease;
}

.hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(to right, #FFF4C2, #e6b000, #302500, #e6b000);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* MAIN CONTENT */
main {
    width: 100%;
    margin: 0 auto;
    flex: 1;
}

.page-title {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    padding: 0 20px;
}

.page-title h1 {
    font-size: 2.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.page-title p {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* BANNER GRID - FULL WIDTH WITHOUT GAPS */
.banner-grid {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.banner {
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-shadow: none;
}

.banner-image {
    width: 100%;
    height: auto;
    aspect-ratio: 2185/549;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.banner:hover .banner-image {
    filter: brightness(1.2);
}

.banner-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.699),
        inset 2px 2px 10px rgb(255, 255, 255),
        2px 2px 8px rgb(0, 0, 0);
}

.banner.active .banner-content {
    max-height: 1000px;
    padding: 2rem;
}

.promo-title {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
}

.promo-details {
    max-height: 400px; /* Atur tinggi maksimum sesuai kebutuhan */
    overflow-y: auto; /* Aktifkan scroll vertikal */
    padding-right: 10px; /* Beri jarak untuk scrollbar */
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

/* Style scrollbar untuk Chrome/Edge/Safari */
.promo-details::-webkit-scrollbar {
    width: 10px;
}

.promo-details::-webkit-scrollbar-track {
    background: var(--black); /* Warna track scrollbar */
    border-radius: 10px;
}

.promo-details::-webkit-scrollbar-thumb {
    background: var(--red); /* Warna thumb scrollbar */
    border-radius: 10px;
    border: 2px solid var(--black);
}

.promo-details::-webkit-scrollbar-thumb:hover {
    background: var(--red-hover); /* Warna hover thumb scrollbar */
}

/* Style scrollbar untuk Firefox */
.promo-details {
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--black);
}        
.promo-details ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.promo-details li {
    margin-bottom: 0.5rem;
    position: relative;
}        

.promo-details li:before {
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.promo-details strong {
    color: var(--gold-light);
}

.join-btn {
    display: block; /* Ubah dari inline-block ke block */
    margin: 20px auto; /* Pusatkan tombol */
    background: linear-gradient(to right, #ffedbb, #ffd038, #ffbb00);
    color: var(--black);
    text-decoration: none !important;
    border: 2px solid #ffffff;
    padding: 15px 30px; /* Sesuaikan padding */
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.493),
                inset 2px 2px 5px rgb(255, 255, 255),
                2px 2px 8px rgb(0, 0, 0);
    text-align: center; /* Pusatkan teks */
    width: fit-content; /* Sesuaikan lebar dengan konten */
}

.join-btn:hover {
    background: linear-gradient(to right, #ff5959, #e60000, #6b0000);
    border: 2px solid #ffd900;
    color: var(--white);
    transform: scale(1.05);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.493),
                inset 2px 2px 5px rgb(255, 255, 255),
                2px 2px 8px rgb(0, 0, 0);
}
        

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    touch-action: manipulation;
}

/* Header dan Navbar */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100, #302500, #000000, #e6b000, #FFF4C2);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border: 2px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

header:hover {
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100, #ffecae, #ffffff, #e6b000, #FFF4C2);
}

.logo {
    width: 100px;
    height: 50px;
    border-radius: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hamburger-menu {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: rgb(0, 0, 0);
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ffee00;
    transition: all 0.3s ease;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.hamburger-menu:hover {
    background: linear-gradient(135deg, #ffc2c2, #e60000, #300000, #e60000);
    transform: scale(1.05);
}

.hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: linear-gradient(to right, #FFF4C2, #e6b000, #302500, #e6b000);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background: linear-gradient(to right, #FFF4C2, #e6b000, #ffffff, #e6b000);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 236, 154, 0.5);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(145deg, #FFF4C2, #e6b000, #a88100, #302500, #000000, #e6b000, #FFF4C2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: #bbb;
    font-size: 16px;
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bukti-header {
    text-align: center;
    margin-bottom: 10px;
}

.bukti-header h1 {
    font-size: 2.5rem;
    color: #ffd900;
    text-shadow: 2px 2px 2px #000;
    margin-bottom: 10px;
    margin-top: 10px;
    background: linear-gradient(135deg, #000, #222, #444, #222, #000);
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}


.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #ffd900;
    font-size: 20px;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgb(255, 255, 255);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.left {
    left: 0;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.slider-nav.right {
    right: 0;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

/* Popup Style */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.game-popup {
    background: linear-gradient(to bottom, #1a1a1a, #000);
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    border: 2px solid #ffd900;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.popup-content {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 10px;
}

.popup-header {
    display: flex;
    margin-bottom: 20px;
}

.popup-game-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid #ffd900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popup-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-game-info {
    flex-grow: 1;
}

.popup-game-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.popup-game-provider {
    color: #09ff00;
    margin-bottom: 10px;
}

.popup-stats {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.stat-item {
    min-width: 120px;
}

.stat-label {
    font-size: 12px;
    color: #aaa;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
}

.online-count.large {
    font-size: 16px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
}

.online-count.large {
    width: 10px;
    height: 10px;
    margin-right: 8px;
}

.online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
    animation: blink 1s infinite;
}

.online-dot.red {
    background-color: #ff0000;
    animation-duration: 0.5s;
}

.online-dot.orange {
    background-color: #ffa500;
    animation-duration: 1s;
}

.online-dot.yellow {
    background-color: #ffff00;
    animation-duration: 1.5s;
}

.online-dot.green {
    background-color: #00ff00;
    animation-duration: 2s;
}

.win-rate-container {
    margin-bottom: 20px;
}

.win-rate-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.jackpot-container {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background: linear-gradient(135deg, #FFF4C2, #e6b000, #a88100, #302500, #000000, #e6b000, #FFF4C2);
    border-radius: 10px;
    border: 1px solid #ffe600;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.jackpot-title {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
}

.jackpot-amount {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.bet-controls {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.bet-selector, .modal-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 8px 12px;
    color: #fff;
    border: 1px solid #ffe600;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.bet-selector select, .modal-input input {
    background: transparent;
    border: none;
    color: #ffffff;
    margin-left: 10px;
    outline: none;
}

.bet-selector select option {
    background: #1a1a1a;
    color: #fff;
}

.modal-input input {
    width: 100px;
}

.get-pattern-btn {
    background: linear-gradient(to right, #a8a8a8, #4d4d4d, #1f1f1f);
    border: 2px solid #ffe600;            
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.699),
                inset 2px 2px 5px rgb(255, 255, 255),
                2px 2px 8px rgb(0, 0, 0);

}

.get-pattern-btn:hover {
    background: linear-gradient(to right, #ffffff, #cacaca, #525252);
    color: #000000;    
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.699),
                inset 2px 2px 5px rgb(255, 255, 255),
                2px 2px 8px rgb(0, 0, 0);

}

.pattern-container {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(145deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #a50000, #ff0000, #ff8d8d);
    border-radius: 10px;
    border: 3px solid #ffd900;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.pattern-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 2px 2px 3px #000000;
}

.pattern-content {
    font-family: monospace;
    white-space: pre-wrap;
    margin-bottom: 15px;
    text-shadow: 2px 2px 3px #000000;
}

.pattern-note {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 15px;
    text-shadow: 2px 2px 2px #000000;
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.popup-btn {
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.close-btn {
    background: linear-gradient(to right,  #ffe15c, #e6b000, #6B4E00);
    color: white;
    border: 2px solid #ffe600;
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.699),
                inset 2px 2px 5px rgb(255, 255, 255),
                2px 2px 8px rgb(0, 0, 0);

}

.close-btn:hover {
    background: linear-gradient(to right, #ffffff, #ffd035, #ffd000);
    border: 2px solid #ffffff;
    color: rgb(0, 0, 0);
    border: 1px solid #ffe600;
}
    
.play-btn-popup {
    background: linear-gradient(to right, #ff5959, #e60000, #6b0000);
    border: 2px solid #ffe600;
    color: white;
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.699),
                inset 2px 2px 5px rgb(255, 255, 255),
                2px 2px 8px rgb(0, 0, 0);
}

.play-btn-popup:hover {
    background: linear-gradient(to right, #ff8989, #ff4343, #ff0000);
    border: 2px solid #ffe600;
    color: rgb(0, 0, 0);
}

/* Hamburger Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(145deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #a50000, #ff0000, #ff8d8d);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: all 1s ease;
    box-shadow: -5px 0 15px rgb(0, 0, 0);
    border-left: 3px solid #ffe600;
}

.menu-overlay.active {
    right: 0;
}

.menu-header {
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff, #e6b000, #a88100, #4e3c00, #000000, #e6b000, #FFF4C2);
    border-bottom: 2px solid #ffe600;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
    
}

.menu-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    text-align: center;
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
}

.menu-content {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    margin-bottom: 15px;
    position: relative;
}

.menu-items > li > a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffffff, #e6b000, #a88100, #4e3c00, #000000, #e6b000, #FFF4C2);
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid rgb(255, 230, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);

}

.menu-items > li > a:hover {
    background: linear-gradient(135deg, #ffffff, #d3d3d3, #7e7e7e, #424242, #000000, #b9b9b9, #ffffff);
    transform: translateX(-5px);
    border-color: #ffe600;
}

.menu-items i {
    margin-right: 15px;
    color: #ffffff;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
    
}

.close-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 25px;
    cursor: pointer;
    background: linear-gradient(135deg, #ffffff, #d3d3d3, #7e7e7e, #424242, #000000, #e0e0e0, #ffffff);
    border-radius: 50%;
    border: 1px solid #ffee00;
    transition: all 0.3s ease;
    box-shadow: inset -2px -2px 2px rgb(0, 0, 0),
            inset 2px 2px 1.5px rgb(255, 255, 255),
            2px 2px 8px rgb(0, 0, 0);
}

.close-menu:hover {
    background: linear-gradient(145deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #ff0000, #ffbbbb, #ffffff);
    transform: rotate(90deg);
}

/* Submenu Styles */
.submenu {
    list-style: none;
    padding-top: 8px;
    padding-left: 30px;
    padding-right: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.submenu.active {
    max-height: 1000px;
}

.submenu li {
    margin-bottom: 8px;
}

.submenu a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffffff, #d3d3d3, #7e7e7e, #424242, #000000, #b9b9b9, #ffffff);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.5s ease;
    font-size: 0.95rem;
    border: 1px solid rgb(255, 208, 0);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.submenu a:hover {
    background: linear-gradient(135deg, #ffc4c4, #ff5555, #ff0000, #9c0000, #4e0000, #000000, #a50000, #ff0000, #ff8d8d);
    transform: translateX(-20px);
    border: 1px solid rgb(255, 208, 0);
}

.submenu i {
    font-size: 1rem;
    width: 25px;
    margin-right: 10px;
}

.has-submenu > a::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: auto;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.has-submenu.active > a::after {
    transform: rotate(180deg);
}

/* Footer Styles */
footer {
    background: linear-gradient(to bottom, #000000, #000000);
    padding: 30px 20px;
    text-align: center;
    border-top: 2px solid #ffc400;
    margin-top: auto;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffc400;
    box-shadow: 0 0 20px rgba(212, 55, 55, 0.5);
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(255, 0, 0);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgb(255, 0, 0);
    box-shadow: inset -2px -2px 5px rgb(0, 0, 0),
            inset 2px 2px 5px rgb(255, 255, 255),
}

.provider-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.provider-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.7);
    border: 2px solid #ffffff;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.provider-logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
    border-color: #ffc400;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(255, 217, 0);
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: inset -1px -1px 3px rgb(0, 0, 0),
            inset 1px 1px 3px rgb(255, 255, 255),
            1px 1px 3px rgb(0, 0, 0);
}

.copyright {
    margin-top: 20px;
    color: #aaa;
    font-size: 0.9rem;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #262626;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
}

.loading-content img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.loading-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0% { content: '.'; }
    33% { content: '..'; }
    66% { content: '...'; }
    100% { content: '.'; }
}

/* Menu Scrollbar */
.menu-content::-webkit-scrollbar {
    width: 5px;
}

.menu-content::-webkit-scrollbar-track {
    background: #000;
}

.menu-content::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        background-color: #000;
        color: #fff;
        overflow-x: hidden;
        background-image: url('/src/image/background/background.webp');
        background-repeat: repeat;
        background-attachment: scroll;
        background-size: contain;
        flex-direction: column;
        position: relative;
    }

    .banner-container {
        height: 350px;
        margin-top: 25px;
    }
    
    .slide-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slide-info {
        left: 10px;
        bottom: 10px;
        padding: 10px;
        max-width: 70%;
    }
    
    .slide-info h3 {
        font-size: 18px;
    }
    
    .slide-info p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 250px;
    }
    
    .slide-indicators {
        bottom: 10px;
        right: 10px;
        gap: 6px;
        padding: 6px 10px;
    }
    
    .slide-counter {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 12px;
    }
}