/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('all/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    text-shadow: -0.75px -0.75px 0 #000, 0.75px -0.75px 0 #000, -0.75px 0.75px 0 #000, 0.75px 0.75px 0 #000;
    overflow-x: hidden;
}

/* ========================================
   SITE CONTAINER
   ======================================== */
.site-container {
    padding: 0px 0px;
    max-width: 100%;
    margin: 0 15px;
    background-color: rgba(0, 0, 0, 0.85);
    transition: all 0.3s ease;
}

/* ========================================
   HEADER SECTION
   ======================================== */
.header {
    background: linear-gradient(135deg, #1a0000 0%, #8B0000 50%, #000000 100%);
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #FFD700;
}

.header-left .logo {
    height: 50px;
    width: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.header-links {
    display: flex;
    gap: 5px;
}

.header-link {
    color: #FFD700;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.header-link:hover {
    opacity: 0.8;
    color: #FFA500;
    transform: translateY(-2px);
}

.header-time {
    color: #FFD700;
    font-size: 10px;
    font-weight: bold;
}

/* ========================================
   NAVBAR SECTION
   ======================================== */
.navbar {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #8B0000 100%);
    padding: 7px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 50px;
    z-index: 999;
    border-radius: 0px;
    border-bottom: 2px solid #FFD700;
}

.navbar-left {
    display: flex;
    gap: 10px;
}

.nav-link {
    color: #FFD700;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 215, 0, 0.3);
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.navbar-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ========================================
   NAVBAR LOGGED IN STATE
   ======================================== */
.navbar-logged-in {
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-action-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.user-action-btn:active {
    transform: translateY(0);
}

.btn-deposit {
    background: linear-gradient(135deg, #00CED1 0%, #00BFBF 100%);
    color: #000;
    border: 2px solid #008B8B;
}

.btn-deposit:hover {
    background: linear-gradient(135deg, #00BFBF 0%, #00CED1 100%);
}

.btn-withdraw {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: 2px solid #8B0000;
}

.btn-withdraw:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-logout {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-logout:hover {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
}

.user-info,
.user-balance {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    border: 2px solid #FFD700;
}

.user-info svg,
.user-balance svg {
    fill: #FFD700;
}

.user-info span,
.user-balance span {
    color: #FFD700;
    font-size: 13px;
    font-weight: bold;
}

.user-balance span {
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

/* ========================================
   MOBILE HEADER LOGGED IN STATE
   ======================================== */
.mobile-user-section {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.mobile-user-info,
.mobile-user-balance {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border: 1.5px solid #FFD700;
    white-space: nowrap;
}

.mobile-user-info svg,
.mobile-user-balance svg {
    fill: #FFD700;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.mobile-user-info span {
    color: #FFD700;
    font-size: 10px;
    font-weight: bold;
}

.mobile-user-balance span {
    color: #00ff00;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.mobile-header-logged-in .mobile-header-row2 {
    display: flex;
    gap: 5px;
    justify-content: space-between;
}

.mobile-action-btn {
    flex: 1;
    padding: 6px 10px;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mobile-action-btn:active {
    transform: scale(0.95);
}

.mobile-action-btn.btn-deposit {
    background: linear-gradient(135deg, #00CED1 0%, #00BFBF 100%);
    color: #000;
    border: 2px solid #008B8B;
}

.mobile-action-btn.btn-withdraw {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: 2px solid #8B0000;
}

.mobile-action-btn.btn-logout {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #FFD700;
    border: 2px solid #FFD700;
}

/* ========================================
   MOBILE HEADER LOGGED IN - SIMPLIFIED
   ======================================== */
.mobile-header-logged-in .mobile-header-row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.mobile-logout-icon {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    border: 2px solid #FFD700;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.mobile-logout-icon svg {
    fill: #FFD700;
}

.mobile-logout-icon:active {
    transform: scale(0.9);
}

.mobile-logout-icon:hover {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
}

/* ========================================
   INPUT & BUTTON STYLES
   ======================================== */
.nav-input {
    padding: 8px 12px;
    border: 2px solid #FFD700;
    border-radius: 0px 10px 0px 10px;
    font-size: 13px;
    width: 120px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFD700;
    transition: all 0.3s ease;
}

.nav-input:focus {
    outline: none;
    border-color: #FFA500;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: scale(1.02);
}

.nav-input::placeholder {
    color: #DAA520;
}

.nav-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.nav-btn:active {
    transform: translateY(0);
}

.btn-masuk {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: 2px solid #FFA500;
}

.btn-daftar {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #FFD700;
    border: 2px solid #FFD700;
}

/* ========================================
   INPUT WRAPPER WITH ICON
   ======================================== */
.input-wrapper {
    position: relative;
    display: inline-block;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper .nav-input {
    padding-left: 40px;
}

/* ========================================
   SIDEBAR MENU
   ======================================== */
.menu-checkbox {
    display: none;
}

.sidebar-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 280px;
    height: auto;
    max-height: 90vh;
    background: linear-gradient(180deg, #1a0000 0%, #8B0000 50%, #000000 100%);
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 0 0 20px 0;
    border-radius: 0 0 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #FFD700 rgba(0, 0, 0, 0.2);
    border-right: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
}

.sidebar-menu::-webkit-scrollbar {
    width: 8px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    border-radius: 10px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFA500 0%, #FFD700 100%);
}

.menu-checkbox:checked ~ .sidebar-menu {
    left: 0;
}

.sidebar-menu-header {
    position: relative;
    padding: 5px 10px;
    text-align: left;
    border-bottom: 2px solid #FFD700;
    background: rgba(0, 0, 0, 0.4);
}

.sidebar-logo {
    height: 50px;
    width: auto;
    margin-left: 0;
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #FFD700;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
    display: block;
    z-index: 1;
}

.close-menu:hover {
    transform: scale(1.1);
    color: #FFA500;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 10px;
    color: #FFD700;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-menu-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-left-color: #FFD700;
    color: #FFF;
}

.sidebar-menu-item svg {
    width: 24px;
    height: 24px;
    fill: #FFD700;
    flex-shrink: 0;
}

/* ========================================
   MENU OVERLAY
   ======================================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    cursor: pointer;
}

.menu-checkbox:checked ~ .menu-overlay {
    display: block;
}

/* ========================================
   BANNER SECTION
   ======================================== */
.banner-section {
    padding: 0px;
}

.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slide {
    width: 100%;
    height: auto;
    display: none;
}

.banner-slide.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out, zoomInOut 4s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ========================================
   RUNNING TEXT SECTION
   ======================================== */
.running-text-section {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
}

.running-text-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFD700;
    font-weight: bold;
    white-space: nowrap;
}

.running-text-icon svg {
    fill: #FFD700;
}

.running-text-content {
    flex: 1;
    overflow: hidden;
}

.running-text {
    color: #FFD700;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    font-weight: bold;
}

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

/* ========================================
   PROGRESSIVE JACKPOT SECTION
   ======================================== */
.progressive-jackpot-section {
    padding: 0 !important;
    display: none; /* Hidden by default - NO !important so JS can override */
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    max-width: 100%;
    position: relative !important;
    margin: 0px;
}

.progressive-jackpot-section[style*="display: flex"],
.progressive-jackpot-section[style*="display:flex"] {
    display: flex !important;
}

.jackpot-container {
    position: relative !important;
    width: 100% !important;
    max-width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.jackpot-image {
    width: 100%;
    height: auto;
    display: block !important;
    max-width: 100%;
}

.jackpot-amount {
    position: absolute !important;
    padding: 5px 0px;
    margin-top: 15px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFD700;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.page-content {
    padding: 0px;
}

.content-page {
    display: none;
    animation: fadeInContent 0.5s ease-in-out;
}

.content-page.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.under-construction {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    font-size: 24px;
    color: #FFD700;
    font-weight: bold;
    border: 3px solid #FFD700;
}

/* ========================================
   GAME LAYOUT & SIDEBAR
   ======================================== */
.game-layout {
    display: flex;
    padding: 10px;
    gap: 10px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 120px;
    scroll-behavior: smooth;
}

.sidebar-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.8;
    width: 110px;
    height: 110px;
    border: 2px solid transparent;
}

.sidebar-item.active,
.sidebar-item:hover {
    transform: scale(1.01) rotate(1deg);
    opacity: 1;
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.sidebar-item:active {
    transform: scale(0.98) rotate(0deg);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.sidebar-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ========================================
   GAME GRID & GAME BOX
   ======================================== */
.game-grid-container {
    flex: 1;
}

.game-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.game-grid.active {
    display: grid;
    animation: fadeInGrid 0.6s ease-in-out;
}

@keyframes fadeInGrid {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.game-box {
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    cursor: pointer;
}

.game-box a {
    display: block;
    text-decoration: none;
}

.game-box:hover {
    transform: translateY(-8px) scale(0.98);
}

.game-box img {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
    transition: all 0.2s ease;
    border: 1px solid #FFD700;
}

.game-box:hover img {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.game-status {
    width: 100%;
    background: linear-gradient(135deg, #DC143C 0%, #FFD700 100%);
    padding: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 0 0 10px 10px;
    border: 2px solid #FFD700;
    border-top: none;
    transition: all 0.2s ease;
}

.game-box:hover .game-status {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* Efek saat diklik/ditekan */
.game-box:active,
.game-box a:active {
    transform: translateY(-2px) scale(0.97);
}

.game-box:active img,
.game-box a:active img {
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
    filter: brightness(0.9);
}

.game-box:active .game-status,
.game-box a:active ~ .game-status {
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(1px);
}

/* ========================================
   TOGEL SECTION
   ======================================== */
.togel-show-section {
    margin-top: 20px;
    border-radius: 10px 10px 0px 0px;
    padding: 0px 10px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.togel-scroll-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #FFD700 rgba(0, 0, 0, 0.2);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.togel-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.togel-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.togel-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #DC143C 0%, #FFD700 100%);
    border-radius: 10px;
}

.togel-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #FFD700 0%, #DC143C 100%);
}

.togel-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 10px;
    padding: 0px;
    text-align: center;
    border: 2px solid #FFD700;
    min-width: 220px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.togel-card:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.togel-header {
    background: linear-gradient(135deg, #DC143C 0%, #FFD700 100%);
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    padding: 8px;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 15px;
}

.togel-number {
    color: #FFD700;
    font-size: 48px;
    font-weight: bold;
    margin: 15px 0;
    letter-spacing: 5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.togel-date {
    color: #FFD700;
    font-size: 14px;
    margin-top: 10px;
}

.title-logo {
    height: 80px;
    width: auto;
    display: block;
    justify-content: flex-start;
}

/* Title logo inside game-grid */
.game-grid .title-logo {
    grid-column: 1 / -1;
    height: 80px;
    width: auto;
}

.togel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

/* ========================================
   BANK SECTION
   ======================================== */
.bank-section {
    padding: 0px 10px;
}

/* Bank Status Section Wrapper */
.bank-status-section {
    width: 100%;
    padding: 0px 0px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: relative !important;
}

/* ========================================
   BANK SCROLL - ALWAYS HORIZONTAL LAYOUT
   NEVER change flex-direction from row!
   ======================================== */
.bank-scroll-container {
    display: none;
    flex-direction: row !important; 
    flex-wrap: nowrap !important; 
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden; 
    padding: 20px 10px;
    width: 100% !important;
    max-width: 100%;
    position: relative !important;
    scrollbar-width: thin;
    scrollbar-color: #FFD700 rgba(0, 0, 0, 0.2);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.bank-scroll-container[style*="display: block"],
.bank-scroll-container[style*="display:block"] {
    display: flex !important;
    flex-direction: row !important;
}

.bank-scroll-container,
.bank-scroll-container[style],
.bank-scroll-container[class] {
    flex-direction: row !important;
}

.bank-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.bank-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.bank-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #DC143C 0%, #FFD700 100%);
    border-radius: 10px;
}

.bank-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #FFD700 0%, #DC143C 100%);
}

.bank-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bank-item:active {
    transform: translateY(-2px);
}

.bank-item img {
    width: 100px;
    height: 40px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 5px 5px 0 0;
    border: 2px solid #FFD700;
    border-bottom: none;
    transition: all 0.3s ease;
}

.bank-item:hover img {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.bank-status {
    width: 100px;
    background: linear-gradient(135deg, #DC143C 0%, #FFD700 100%);
    padding: 5px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 0 0 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 2px solid #FFD700;
    border-top: none;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.bank-status.online .status-dot {
    background: #00FF00;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 5px #00FF00;
}

.bank-status.offline .status-dot {
    background: #DC143C;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* ========================================
   INFORMATION SECTION
   ======================================== */
.info-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 0px 20px;
    text-align: center;
    color: #FFD700;
}

.info-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FFD700;
}

.info-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.info-section p {
    font-size: 16px;
    margin-bottom: 8px;
    text-align: justify;
    color: #FFF;
}

/* ========================================
   BRAND/PROVIDER SECTION
   ======================================== */
.brand-section {
    padding: 20px;
    border-radius: 0px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.brand-section h3 {
    text-align: center;
    font-size: 22px;
    color: #FFD700;
    margin-bottom: 15px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 15px;
    animation: carousel-scroll 30s linear infinite;
}

.carousel-track img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   LICENSE SECTION
   ======================================== */
.license-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 20px;
}

.license-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.license-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========================================
   MOBILE BOTTOM NAVIGATION
   ======================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a0000 0%, #8B0000 50%, #000000 100%);
    border-top: 2px solid #FFD700;
    padding: 8px 0;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #FFD700;
    text-decoration: none;
    font-size: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
    cursor: pointer;
}

.mobile-nav-item svg {
    transition: all 0.3s ease;
}

.mobile-nav-item.active {
    background: rgba(255, 215, 0, 0.2);
    color: #FFF;
}

.mobile-nav-item.active svg {
    transform: scale(1.1);
}

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

.mobile-nav-item span {
    font-weight: 500;
}

/* Center icon (Daftar button) - slightly larger */
.mobile-nav-item .center-icon {
    transform: scale(1.15);
}

.mobile-nav-item.active .center-icon {
    transform: scale(1.25);
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 20px;
    color: #FFD700;
    text-align: center;
    border-top: 2px solid #FFD700;
}

.footer-content p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #FFD700;
}

/* ========================================
   REGISTRATION PAGE
   ======================================== */
.registration-container {
    max-width: 600px;
    margin: 20px auto;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 10px;
    padding: 10px;
    border: 2px solid #FFD700;
}

.registration-title {
    text-align: center;
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-title {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
    text-transform: uppercase;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #FFD700;
    font-size: 14px;
    font-weight: bold;
}

.form-input {
    padding: 12px 15px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FFA500;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.form-input::placeholder {
    color: #999;
}

.form-input option {
    background: #1a0000;
    color: #FFF;
}

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

.captcha-display {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 215, 0, 0.2);
    padding: 5px 5px;
    border-radius: 5px;
    border: 2px solid #FFD700;
    min-width: 150px;
    color: #ffffff;
}

.captcha-code {
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
}

.captcha-refresh {
    background: transparent;
    border: none;
    color: #FFD700;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.captcha-refresh:hover {
    transform: rotate(180deg);
}

.captcha-input {
    flex: 1;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #FFF;
    font-size: 13px;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FFD700;
}

.checkbox-label span {
    flex: 1;
    line-height: 1.5;
}

.btn-submit {
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #FFD700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ========================================
   FORGOT PASSWORD PAGE
   ======================================== */
.forgot-password-container {
    max-width: 500px;
    margin: 5px auto;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 10px;
    padding: 5px;
    border: 2px solid #FFD700;
}

.forgot-title {
    text-align: center;
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.forgot-subtitle {
    text-align: center;
    color: #FFF;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.forgot-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forgot-info {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
}

.forgot-info p {
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.forgot-info p:last-child {
    margin-bottom: 0;
}

/* ========================================
   DEPOSIT PAGE
   ======================================== */
.deposit-container {
    max-width: 500px;
    margin: 5px auto;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 10px;
    padding: 5px;
    border: 2px solid #FFD700;
}

.deposit-subtitle {
    text-align: center;
    color: #FFF;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.deposit-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Payment Method Grid */
.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.payment-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
    border-radius: 10px;
    color: #FFD700;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.payment-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-color: #FFA500;
}

.payment-btn svg {
    width: 24px;
    height: 24px;
}

.payment-btn span {
    text-align: center;
}

.input-with-button {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-with-button .form-input {
    flex: 1;
}

.btn-copy {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #00CED1 0%, #008B8B 100%);
    border: 2px solid #00CED1;
    border-radius: 5px;
    color: #FFF;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.4);
}

.btn-copy svg {
    width: 16px;
    height: 16px;
}

.deposit-info {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
}

.deposit-info p {
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.deposit-info p:last-child {
    margin-bottom: 0;
}

/* ========================================
   WITHDRAW PAGE
   ======================================== */
.withdraw-container {
    max-width: 500px;
    margin: 5px auto;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 10px;
    padding: 5px;
    border: 2px solid #FFD700;
}

.withdraw-subtitle {
    text-align: center;
    color: #FFF;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.withdraw-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.balance-info {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 2px solid #FFA500;
    margin-bottom: 10px;
}

.balance-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.balance-amount {
    color: #8B0000;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
}

.quick-amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.quick-amount-btn {
    padding: 12px 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
    border-radius: 8px;
    color: #FFD700;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-amount-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.quick-amount-btn:active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-color: #FFA500;
}

.withdraw-info {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
}

.withdraw-info p {
    color: #FFD700;
    font-size: 12px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.withdraw-info p:last-child {
    margin-bottom: 0;
}

/* ========================================
   CONTACT PAGE (HUBUNGI KAMI)
   ======================================== */
.contact-container {
    margin: 0px auto;
    padding: 0px 5px;
}

.contact-title {
    text-align: center;
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-subtitle {
    text-align: center;
    color: #FFF;
    font-size: 16px;
    margin-bottom: 40px;
}

.section-subtitle {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.social-media-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 10px;
    padding: 5px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.1);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon svg {
    width: 30px;
    height: 30px;
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.social-icon.livechat {
    background: linear-gradient(135deg, #00C853 0%, #00A843 100%);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
}

.social-info h4 {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 5px;
}

.social-info p {
    color: #FFF;
    font-size: 14px;
}

.contact-info-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.info-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    fill: #000;
}

.info-card h4 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

.info-card p {
    color: #FFF;
    font-size: 14px;
    margin-bottom: 5px;
}

.info-detail {
    color: #CCC !important;
    font-size: 12px !important;
    font-style: italic;
}

.faq-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 10px;
    padding: 5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.faq-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-item h4 {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #FFF;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   GUIDE PAGE (CARA BERMAIN)
   ======================================== */
.guide-container {
    margin: 5px auto;
    padding: 5px;
}

.guide-title {
    text-align: center;
    color: #FFD700;
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.guide-subtitle {
    text-align: center;
    color: #FFF;
    font-size: 16px;
    margin-bottom: 40px;
}

.guide-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
}

.guide-header {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid #FFD700;
}

.guide-number {
    width: 60px;
    height: 60px;
    background: #FFD700;
    color: #000;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.guide-header h3 {
    color: #FFD700;
    font-size: 24px;
    margin: 0;
    text-transform: uppercase;
}

.guide-content {
    padding: 30px;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-text h4 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 8px;
}

.step-text p {
    color: #FFF;
    font-size: 14px;
    line-height: 1.6;
}

.guide-note {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    color: #FFF;
    font-size: 14px;
    line-height: 1.8;
}

.guide-note strong {
    color: #FFD700;
}

.tips-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 5px;
    margin-top: 10px;
}

.tips-section h3 {
    color: #FFD700;
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

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

.tip-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.1);
}

.tip-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.tip-card h4 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

.tip-card p {
    color: #FFF;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   PROMO PAGE STYLES - BUTTON ON RIGHT SIDE
   ======================================== */
.promo-container {
    width: 100%;
    margin: 0;
    padding: 0px 50px 0px 0;
}

.promo-item {
    width: 100%;
    margin: 0;
    padding: 0;
}

.promo-row {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
}

.promo-img {
    flex: 1;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    height: auto;
}

.promo-more-btn {
    flex-shrink: 0;
    width: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    border-left: 2px solid #FFF;
    border-radius: 0;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: -4px 0 15px rgba(255, 215, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-more-btn:hover {
    width: 70px;
    box-shadow: -6px 0 20px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.promo-more-btn:active {
    transform: scale(0.98);
}

/* Detail Box Styles */
.promo-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: linear-gradient(135deg, #1a0000 0%, #8B0000 50%, #000000 100%);
}

.promo-detail.active {
    max-height: 2000px;
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #FFD700;
}

.promo-detail-content {
    padding: 30px;
}

.promo-detail-content h2 {
    color: #00D9FF;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-detail-content h3 {
    color: #FFD700;
    font-size: 18px;
    margin: 20px 0 15px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-detail-content li {
    color: #FFF;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-detail-content li:before {
    content: "▶";
    color: #00D9FF;
    font-size: 10px;
    position: absolute;
    left: 5px;
    top: 2px;
}

/* ========================================
   PROMO TABS STYLES - TIGERBET168 THEME
   ======================================== */
.promo-tabs {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
}

.promo-tab-btn {
    flex: 1;
    max-width: 400px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #666;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.8) 0%, rgba(30, 30, 30, 0.8) 100%);
    color: #AAA;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-tab-btn.active {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 50%, #FFD700 100%);
    color: #FFD700;
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.promo-tab-btn:hover:not(.active) {
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.8) 0%, rgba(50, 50, 50, 0.8) 100%);
    color: #FFF;
    border-color: #888;
}

.promo-tab-content {
    display: none;
}

.promo-tab-content.active {
    display: block;
}

/* ========================================
   BUKTI JP PAGE STYLES
   ======================================== */
.bukti-jp-container {
    padding: 5px;
    margin: 0 auto;
}

.jp-title {
    color: #FFD700;
    font-size: 32px;
    text-align: center;
    margin: 5px 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.jp-subtitle {
    color: #FFF;
    font-size: 16px;
    text-align: center;
    margin-bottom: 5px;
}

/* JP Winners Grid */
.jp-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
    margin: 10px 0;
}

.jp-card {
    background: linear-gradient(135deg, #1a0000 0%, #8B0000 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.jp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border-color: #FFA500;
}

.jp-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.jp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.jp-badge-super {
    background: linear-gradient(135deg, #FF4500 0%, #DC143C 100%);
    color: #FFD700;
}

.jp-badge-big {
    background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%);
    color: #FFF;
}

.jp-game-icon {
    text-align: center;
    margin: 20px 0;
}

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

.jp-username {
    color: #FFD700;
    font-size: 20px;
    margin: 10px 0;
}

.jp-game {
    color: #FFF;
    font-size: 14px;
    margin: 5px 0;
    opacity: 0.9;
}

.jp-amount {
    color: #00FF00;
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.jp-date {
    color: #DAA520;
    font-size: 12px;
    opacity: 0.8;
}

/* JP Call to Action */
.jp-cta {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    margin: 10px 0;
}

.jp-cta h3 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 15px;
}

.jp-cta p {
    color: #FFF;
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.jp-disclaimer {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
}

.jp-disclaimer p {
    color: #DAA520;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
}


/* ========================================
   BUKU MIMPI PAGE STYLES
   ======================================== */

.buku-mimpi-container {
    margin: 0 auto;
    padding: 5px;
}

.bm-header {
    text-align: center;
    margin-bottom: 10px;
}

.bm-title {
    color: #FFD700;
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.bm-subtitle {
    color: #FFF;
    font-size: 18px;
    opacity: 0.9;
}

.bm-search-section {
    background: linear-gradient(135deg, #1a0000 0%, #8B0000 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.bm-search-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.bm-select {
    background: #FFF;
    color: #000;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-width: 150px;
    transition: all 0.3s ease;
}

.bm-select:hover {
    background: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
}

.bm-select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bm-search-input {
    flex: 1;
    min-width: 250px;
    background: #FFF;
    color: #000;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.bm-search-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    border-color: #FFA500;
}

.bm-search-input::placeholder {
    color: #666;
}

.bm-search-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bm-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.bm-search-btn:active {
    transform: translateY(-1px);
}

.bm-table-wrapper {
    background: #FFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.bm-table {
    width: 100%;
    border-collapse: collapse;
}

.bm-table thead {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.bm-table thead th {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    padding: 18px 15px;
    text-align: left;
    border-bottom: 3px solid #8B0000;
}

.bm-table tbody tr {
    transition: all 0.3s ease;
}

.bm-table tbody tr:nth-child(odd) {
    background: #313030;
}

.bm-table tbody tr:nth-child(even) {
    background: #000000;
}

.bm-table tbody td {
    color: #ffffff ;
    padding: 15px;
    border-bottom: 1px solid #DDD;
}

.bm-table tbody td:first-child {
    font-weight: bold;
    color: #ffffff ;
    text-align: center;
    width: 80px;
}

.bm-table tbody td:nth-child(3) {
    text-align: center;
    font-weight: 600;
}

.bm-table tbody td:last-child {
    font-weight: bold;
    color: #ffffff ;
    text-align: center;
    font-size: 18px;
}

.bm-jenis-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.bm-jenis-2d {
    background: #4CAF50;
    color: #FFF;
}

.bm-jenis-3d {
    background: #2196F3;
    color: #FFF;
}

.bm-jenis-4d {
    background: #FF9800;
    color: #FFF;
}

.bm-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.bm-page-btn {
    background: #FFF;
    color: #8B0000;
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bm-page-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

.bm-page-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B0000;
}

.bm-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bm-info {
    background: linear-gradient(135deg, #1a0000 0%, #8B0000 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.bm-info h3 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 20px;
}

.bm-info ol {
    color: #FFF;
    font-size: 16px;
    line-height: 2;
    padding-left: 20px;
}

.bm-info ol li {
    margin-bottom: 10px;
}

.bm-disclaimer {
    color: #FFD700;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
}

.bm-no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
}

/* ========================================
   PENGADUAN PAGE STYLES
   ======================================== */
.pengaduan-container {
    margin: 0 auto;
    padding: 20px;
}

.pengaduan-title {
    color: #FFD700;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.pengaduan-subtitle {
    color: #FFF;
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
}

.pengaduan-alert {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(220, 20, 60, 0.2) 100%);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pengaduan-alert svg {
    flex-shrink: 0;
    color: #FFD700;
    margin-top: 2px;
}

.pengaduan-alert strong {
    color: #FFD700;
}

.pengaduan-alert div {
    color: #FFF;
    line-height: 1.6;
}

.pengaduan-form {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.section-title {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.section-title svg {
    color: #FFD700;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.btn-submit-pengaduan {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    padding: 15px;
    margin-top: 20px;
}

.pengaduan-info {
    background: rgba(139, 0, 0, 0.3);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.pengaduan-info p {
    color: #FFF;
    margin-bottom: 10px;
    line-height: 1.8;
}

.pengaduan-info p:last-child {
    margin-bottom: 0;
}

.pengaduan-faq-section {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #8B0000;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.pengaduan-alt-contact {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.pengaduan-alt-contact h4 {
    color: #FFD700;
    font-size: 22px;
    margin-bottom: 10px;
}

.pengaduan-alt-contact p {
    color: #FFF;
    margin-bottom: 20px;
}

.alt-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.alt-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.alt-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.livechat-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #ffffff;
    border-color: #FFD700;
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: #FFF;
    border-color: #0088cc;
}

.email-btn {
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
    color: #FFD700;
    border-color: #DC143C;
}

/* ========================================
   FLOATING CHAT BUTTON
   ======================================== */
.chat-checkbox {
    display: none;
}

@keyframes floatingPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


.floating-chat-btn {
    position: fixed;
    bottom: 50px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    border: 3px solid #8B0000;
    animation: floatingPulse 2s ease-in-out infinite;
}

.floating-chat-btn {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.chat-icon-img { 
    width: 125px;
    height: 125px;
}

.floating-chat-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    animation-play-state: paused;
}

.floating-chat-btn:active {
    transform: scale(0.95);
}

.chat-checkbox:checked ~ .floating-chat-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ========================================
   CHAT POPUP MODAL
   ======================================== */
.chat-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9997;
    display: none;
    pointer-events: none;
}

.chat-checkbox:checked ~ .chat-popup-overlay {
    display: block;
}

.chat-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(180deg, #1a0000 0%, #000000 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    width: 300px;
    max-width: calc(100vw - 40px);
    height: auto;
    overflow: visible;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chat-checkbox:checked ~ .chat-popup-overlay .chat-popup {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-popup-header {
    background: linear-gradient(135deg, #8B0000 0%, #000000 100%);
    padding: 10px 15px;
    border-bottom: 2px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px 12px 0 0;
}

.chat-logo {
    height: 35px;
    width: auto;
}

.chat-close {
    background: transparent;
    border: none;
    color: #FFD700;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    transform: rotate(90deg);
    color: #FFA500;
}

.chat-popup-content {
    padding: 7px;
}

.chat-image-container {
    text-align: center;
    margin-bottom: 10px;
}

.chat-robot {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

.chat-badge {
    position: static;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    border: 2px solid #8B0000;
    margin: 8px auto 12px auto;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: #00f800;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.chat-title {
    color: #FFD700;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.4;
}

.chat-subtitle {
    color: #DAA520;
    font-size: 12px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

.chat-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.chat-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.chat-btn:active {
    transform: scale(0.98);
}

.chat-btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #ffffff;
    border: 2px solid #8B0000;
}

.chat-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.chat-btn-secondary {
    background: rgba(139, 0, 0, 0.3);
    color: #FFD700;
    border: 2px solid #FFD700;
}

.chat-btn-secondary:hover {
    background: rgba(139, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.chat-footer {
    color: #888;
    font-size: 12px;
    text-align: center;
    margin-top: 8px;
}

/* ========================================
   WITHDRAW NOTIFICATIONS
   ======================================== */
.withdraw-notifications {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    pointer-events: none;
}

.withdraw-notification {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 12px 16px;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: slideInLeft 0.5s ease-out, fadeOut 0.5s ease-in 2.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.withdraw-notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #8B0000;
}

.withdraw-notification-icon svg {
    width: 24px;
    height: 24px;
    fill: #8B0000;
}

.withdraw-notification-content {
    flex: 1;
}

.withdraw-notification-text {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.withdraw-notification-user {
    color: #FFD700;
    font-size: 13px;
    font-weight: bold;
}

.withdraw-notification-label {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: normal;
}

.withdraw-notification-amount {
    color: #00ff00;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* ========================================
   PROFILE PAGE STYLES - TIGERBET168 THEME
   ======================================== */
.profile-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.profile-page-header {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.profile-page-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-page-avatar {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-page-avatar svg {
    fill: #8B0000;
}

.profile-page-username {
    color: #FFD700;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.profile-page-greeting {
    color: #FFD700;
    font-size: 14px;
    opacity: 0.9;
}

.profile-page-balance-section {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.profile-page-balance-label {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: bold;
}

.profile-page-balance-amount {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(139, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.profile-page-balance-amount svg {
    fill: #FFD700;
    flex-shrink: 0;
}

.profile-page-balance-amount span {
    color: #00ff00;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.profile-page-action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-page-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-page-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.profile-page-btn.btn-deposit {
    background: linear-gradient(135deg, #00CED1 0%, #00BFBF 100%);
    color: #000;
    border: 3px solid #008B8B;
}

.profile-page-btn.btn-withdraw {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: 3px solid #8B0000;
}

.profile-page-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.profile-page-menu-item {
    background: linear-gradient(135deg, #1a3a52 0%, #0d1f2d 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 110px;
}

.profile-page-menu-item:hover {
    background: linear-gradient(135deg, #0d1f2d 0%, #1a3a52 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.profile-page-menu-item svg {
    fill: #FFD700;
}

.profile-page-menu-item span {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
}
.detail-page-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.detail-page-title {
    color: #FFD700;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.detail-page-content {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 40px 30px;
}

.detail-page-content p {
    color: #FFD700;
    font-size: 18px;
    margin: 15px 0;
    line-height: 1.6;
}

.detail-page-actions {
    margin-top: 30px;
}

.detail-page-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: 3px solid #8B0000;
    border-radius: 10px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-page-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* ========================================
   RTP SLOT PAGE STYLES
   ======================================== */

.rtp-slot-container {
    margin: 0 auto;
    padding: 5px;
}

.rtp-header {
    text-align: center;
    margin-bottom: 20px;
}

.rtp-title {
    color: #FFD700;
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.rtp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 10px;
}

.rtp-box {
    background: linear-gradient(135deg, #1a0000 0%, #8B0000 100%);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}

.rtp-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   HISTORY NOMOR PAGE STYLES
   ======================================== */

.history-nomor-container {
    margin: 0 auto;
    padding: 5px;
}

.hn-header {
    text-align: center;
    margin-bottom: 10px;
}

.hn-title {
    color: #FFD700;
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hn-pool-section {
    background: linear-gradient(135deg, #1a0000 0%, #8B0000 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.hn-pool-title {
    color: #FFD700;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.hn-pool-select {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #FFD700;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hn-pool-select:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    background: rgba(0, 0, 0, 0.7);
}

.hn-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    margin-bottom: 20px;
}

.hn-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5);
}

.hn-table thead {
    background: linear-gradient(135deg, #D4A017 0%, #FFD700 50%, #D4A017 100%);
}

.hn-table thead th {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.hn-table tbody tr {
    background: rgba(255, 255, 255, 0.05);
}

.hn-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

.hn-table tbody td {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: #FFF;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.hn-table tbody td:first-child {
    font-weight: bold;
    color: #FFD700;
}

.hn-table tbody td:nth-child(4),
.hn-table tbody td:nth-child(5),
.hn-table tbody td:nth-child(6) {
    font-weight: bold;
    color: #00ff00;
    font-size: 16px;
}

.hn-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.hn-page-btn {
    padding: 10px 15px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFD700;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.hn-page-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-color: #FFA500;
}

.hn-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hn-info {
    background: linear-gradient(135deg, #1a0000 0%, #8B0000 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.hn-info h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}

.hn-info ul {
    list-style: none;
    padding-left: 0;
}

.hn-info ul li {
    color: #FFF;
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.hn-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* ========================================
   WELCOME BANNER
   ======================================== */
.welcome-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 5px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.welcome-banner {
    position: relative;
    max-width: 550px;
    width: 100%;
    animation: slideUp 0.4s ease;
}

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

.welcome-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #DC143C;
    border: 2px solid #FFD700;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFD700;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.welcome-close-btn:hover {
    background: #8B0000;
    transform: rotate(90deg) scale(1.1);
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.welcome-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    animation: pulse-scale 2s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE STYLES - TABLET (MAX-WIDTH: 1200PX)
   ======================================== */
@media (max-width: 1200px) {
    .togel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .navbar-logged-in {
        gap: 6px;
    }
    
    .user-action-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .user-action-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .user-info span,
    .user-balance span {
        font-size: 12px;
    }
}

/* ========================================
   RESPONSIVE STYLES - MOBILE (MAX-WIDTH: 992PX)
   ======================================== */
@media screen and (max-width: 992px) {
    .user-action-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .user-info,
    .user-balance {
        padding: 6px 10px;
    }

    .profile-page-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Ensure mobile header is hidden on desktop */
@media screen and (min-width: 769px) {
    .mobile-header {
        display: none !important;
    }
}
/* ========================================
   RESPONSIVE STYLES - MOBILE (MAX-WIDTH: 768PX)
   ======================================== */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex !important;
    }

    .site-container {
        padding-bottom: 70px;
    }

    .sidebar-menu {
        left: auto;
        right: -100%;
        top: auto;
        bottom: 70px;
        width: 100%;
        max-width: 320px;
        max-height: 60vh;
        border-radius: 15px 15px 0 0;
        border-right: none;
        border-left: 2px solid #FFD700;
        border-top: 2px solid #FFD700;
        transition: right 0.3s ease;
    }

    .menu-checkbox:checked ~ .sidebar-menu {
        right: 0;
        left: auto;
    }

    .close-menu {
        right: 15px;
        left: auto;
    }
    
    .banner-section {
        height: 250px;
        overflow: hidden;
    }
    
    .banner-container {
        height: 100%;
    }
    
    .banner-slide {
        height: 100%;
    }
    
    .banner-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .header,
    .navbar {
        display: none !important;
    }

    .site-container {
        margin: 0px;
    }

    .header {
        flex-direction: column;
        gap: 10px;
    }

    .header-right {
        width: 100%;
        align-items: center;
    }

    .header-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
        top: 90px;
    }

    .navbar-left {
        width: 100%;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .navbar-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-input {
        width: 45%;
    }

    .sidebar-item {
        min-width: 100px;
    }
   
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-grid .title-logo {
        height: 60px;
    }

    .license-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-track img {
        height: 40px;
    }

    .under-construction {
        font-size: 18px;
        padding: 40px 15px;
    }
    .jackpot-amount {
        font-size: 24px;
        letter-spacing: 1px;
        padding: 5px 0px;
    }

    .togel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .togel-number {
        font-size: 36px;
        letter-spacing: 3px;
    }
    
    .togel-header {
        font-size: 12px;
    }

    .togel-card {
        min-width: 180px;
    }
}

.mobile-header {
    display: none;
}

@media (max-width: 768px) {
    .mobile-header {
        display: block;
        background: linear-gradient(135deg, #1a0000 0%, #8B0000 50%, #000000 100%);
        padding: 0px 5px;
        border-bottom: 2px solid #FFD700;
    }
    .mobile-header-row1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-logo {
        flex: 0 0 auto;
    }
    
    .mobile-logo .logo {
        height: 42px;
    }
    
    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-link {
        color: #FFD700;
        text-decoration: none;
        font-size: 11px;
        white-space: nowrap;
        transition: all 0.3s ease;
    }
    
    .mobile-link:hover {
        color: #FFA500;
    }
    
    .mobile-actions .nav-btn {
        padding: 6px 14px;
        font-size: 11px;
        width: 80px;
    }
    
    .mobile-header-row2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        margin-top: -10px;
    }
    
    .mobile-inputs {
        display: flex;
        gap: 6px;
        flex: 1;
    }
    
    .mobile-inputs .input-wrapper {
        position: relative;
        flex: 1;
    }
    
    .mobile-inputs .nav-input {
        width: 100%;
        padding: 6px 10px 6px 32px;
        font-size: 11px;
    }
    
    .mobile-inputs .input-icon {
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
    }
    
    .mobile-header-row2 .nav-btn {
        padding: 6px 14px;
        font-size: 11px;
        width: 80px;
        flex-shrink: 0;
    }

    .deposit-container {
        margin: 5px;
        padding: 5px;
    }

    .payment-method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .input-with-button {
        flex-direction: column;
    }

    .input-with-button .form-input {
        width: 100%;
    }

    .btn-copy {
        width: 100%;
        justify-content: center;
    }

    .withdraw-container {
        margin: 5px;
        padding: 5px;
    }

    .balance-amount {
        font-size: 28px;
    }

    .quick-amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        padding: 5px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }

    .guide-container {
        padding: 5px;
    }
    
    .guide-title {
        font-size: 24px;
    }
    
    .guide-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .guide-header h3 {
        font-size: 18px;
    }
    
    .guide-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .guide-content {
        padding: 20px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .promo-more-btn {
        width: 50px;
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .promo-more-btn:hover {
        width: 55px;
    }
    
    .promo-detail-content {
        padding: 20px;
    }
    
    .promo-detail-content h2 {
        font-size: 18px;
    }
    
    .promo-detail-content h3 {
        font-size: 16px;
    }
    
    .promo-detail-content li {
        font-size: 13px;
        padding-left: 20px;
    }
    
    .promo-tabs {
        gap: 10px;
        margin: 15px 0;
    }
    
    .promo-tab-btn {
        padding: 12px 20px;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .jp-title {
        font-size: 24px;
    }
    
    .jp-winners-grid {
        grid-template-columns: 1fr;
    }
    
    .jp-amount {
        font-size: 22px;
    }
    
    .jp-cta h3 {
        font-size: 22px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .bm-title {
        font-size: 24px;
    }
    
    .bm-subtitle {
        font-size: 14px;
    }
    
    .bm-search-container {
        flex-direction: column;
    }
    
    .bm-select,
    .bm-search-input {
        width: 100%;
        min-width: auto;
    }
    
    .bm-search-btn {
        width: 100%;
    }
    
    .bm-table-wrapper {
        overflow-x: auto;
    }
    
    .bm-table {
        font-size: 14px;
    }
    
    .bm-table thead th,
    .bm-table tbody td {
        padding: 10px 8px;
    }
    
    .bm-info h3 {
        font-size: 18px;
    }
    
    .bm-info ol {
        font-size: 14px;
    }

    .pengaduan-container {
        padding: 10px;
    }

    .pengaduan-title {
        font-size: 22px;
    }

    .pengaduan-subtitle {
        font-size: 14px;
    }

    .pengaduan-alert {
        flex-direction: column;
        text-align: left;
        padding: 15px;
    }

    .pengaduan-form {
        padding: 20px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 18px;
    }

    .alt-contact-buttons {
        flex-direction: column;
    }

    .alt-contact-btn {
        width: 100%;
        justify-content: center;
    }

    .pengaduan-faq-section {
        padding: 20px 15px;
    }

    .pengaduan-alt-contact {
        padding: 20px 15px;
    }

    .floating-chat-btn {
        bottom: 100px;
        right: 35px;
        width: 55px;
        height: 55px;
    }
    
    .chat-popup {
        bottom: 145px;
        right: 15px;
        width: 350px;
    }
    
    .chat-robot {
        width: 160px;
    }
    
    .chat-title {
        font-size: 16px;
    }
    
    .chat-subtitle {
        font-size: 12px;
    }

    .withdraw-notifications {
        bottom: 80px;
        left: 10px;
        right: 10px;
    }
    
    .withdraw-notification {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .header {
        display: none !important;
    }
    
    .navbar {
        display: none !important;
    }

    .rtp-title {
        font-size: 24px;
    }
    
    .rtp-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .hn-title {
        font-size: 24px;
    }
    
    .hn-pool-title {
        font-size: 18px;
    }
    
    .hn-pool-select {
        font-size: 14px;
        padding: 10px;
    }
    
    .hn-table thead th {
        font-size: 12px;
        padding: 10px 5px;
    }
    
    .hn-table tbody td {
        font-size: 11px;
        padding: 8px 5px;
    }
    
    .hn-table tbody td:nth-child(4),
    .hn-table tbody td:nth-child(5),
    .hn-table tbody td:nth-child(6) {
        font-size: 13px;
    }
    
    .hn-page-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hn-info h3 {
        font-size: 16px;
    }
    
    .hn-info ul li {
        font-size: 12px;
    }
}

/* ========================================
   RESPONSIVE STYLES - SMALL MOBILE (MAX-WIDTH: 480PX)
   ======================================== */
@media (max-width: 480px) {
    .header-link {
        font-size: 10px;
    }

    .nav-link {
        font-size: 12px;
        padding: 6px 8px;
    }

    .nav-input {
        width: 100%;
        margin-bottom: 5px;
    }

    .nav-btn {
        width: 48%;
    }

    .info-section h2 {
        font-size: 18px;
    }

    .info-section p {
        font-size: 14px;
    }

    .floating-chat-btn {
        bottom: 135px;
        right: 40px;
    }
    
    .floating-chat-btn{
        width: 28px;
        height: 28px;
    }

    .chat-icon-img {
        width: 120px;
    }
    
    .chat-popup {
        bottom: 95px;
        right: 10px;
        width: calc(100vw - 20px);
    }
    .jackpot-amount {
        font-size: 16px;
        letter-spacing: 10px;
        padding: 5px 0px;
        margin-top: 9px;
    }

    .withdraw-notifications {
        bottom: 90px;
        width: 225px;
    }
    
    .withdraw-notification {
        padding: 10px 12px;
        min-width: auto;
    }
    
    .withdraw-notification-icon {
        width: 35px;
        height: 35px;
    }
    
    .withdraw-notification-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .withdraw-notification-user {
        font-size: 12px;
    }
    
    .withdraw-notification-label {
        font-size: 11px;
    }
    
    .withdraw-notification-amount {
        font-size: 14px;
    }

    .mobile-action-btn {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .mobile-action-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .mobile-user-info span,
    .mobile-user-balance span {
        font-size: 10px;
    }

    .mobile-logout-icon {
        width: 32px;
        height: 32px;
    }
    
    .mobile-logout-icon svg {
        width: 18px;
        height: 18px;
    }

    .profile-page-header {
        padding: 15px;
    }
    
    .profile-page-avatar {
        width: 50px;
        height: 50px;
    }
    
    .profile-page-avatar svg {
        width: 32px;
        height: 32px;
    }
    
    .profile-page-username {
        font-size: 16px;
    }
    
    .profile-page-greeting {
        font-size: 12px;
    }
    
    .profile-page-balance-amount span {
        font-size: 20px;
    }
    
    .profile-page-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .profile-page-menu-item {
        padding: 12px 6px;
        min-height: 80px;
    }
    
    .profile-page-menu-item svg {
        width: 22px;
        height: 22px;
    }
    
    .profile-page-menu-item span {
        font-size: 10px;
    }
    
    .detail-page-title {
        font-size: 20px;
    }
    
    .detail-page-content {
        padding: 30px 20px;
    }
    
    .detail-page-content p {
        font-size: 14px;
    }

    .rtp-title {
        font-size: 20px;
    }
    
    .rtp-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
        padding: 5px;
    }
    
    .rtp-box {
        padding: 8px;
    }

    .hn-title {
        font-size: 20px;
    }
    
    .hn-pool-section {
        padding: 15px;
    }
    
    .hn-pool-title {
        font-size: 16px;
    }
    
    .hn-table-wrapper {
        font-size: 10px;
    }
    
    .hn-table thead th {
        font-size: 10px;
        padding: 8px 3px;
    }
    
    .hn-table tbody td {
        font-size: 10px;
        padding: 6px 3px;
    }
    
    .hn-table tbody td:nth-child(4),
    .hn-table tbody td:nth-child(5),
    .hn-table tbody td:nth-child(6) {
        font-size: 11px;
    }
    
    .hn-page-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .welcome-banner {
        max-width: 300px;
    }
    
    .welcome-close-btn {
        width: 36px;
        height: 36px;
        top: -8px;
        right: -8px;
    }
    
    .welcome-close-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   RESPONSIVE STYLES - SMALL MOBILE (MAX-WIDTH: 380PX)
   ======================================== */
@media screen and (max-width: 380px) {
    .mobile-logo .logo {
        height: 28px;
    }
    
    .mobile-user-info span,
    .mobile-user-balance span {
        font-size: 9px;
    }
    
    .mobile-user-info,
    .mobile-user-balance {
        padding: 2px 5px;
        gap: 2px;
    }
    
    .mobile-user-info svg,
    .mobile-user-balance svg {
        width: 12px;
        height: 12px;
    }
    
    .mobile-logout-icon {
        width: 28px;
        height: 28px;
    }
    
    .mobile-logout-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .mobile-header-logged-in .mobile-header-row1 {
        gap: 3px;
    }

    .rtp-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 6px;
    }
    
    .rtp-box {
        padding: 6px;
    }

    .welcome-banner {
        max-width: 260px;
    }
    
    .welcome-close-btn {
        width: 32px;
        height: 32px;
        top: -6px;
        right: -6px;
    }
    
    .welcome-close-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   MOBILE INFO ROW (DATE & ONLINE PLAYERS)
   ======================================== */
.mobile-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 10px;
    margin-top: -1px;
}

.mobile-datetime {
    color: #FFD700;
    font-size: 10px;
    font-weight: bold;
}

.mobile-online-players {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFD700;
    font-size: 10px;
    font-weight: bold;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 0 5px #00ff00;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}