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

/* ========== TAMBAHAN UNTUK LOADING VIDEO & SKIP BUTTON ========== */
.video-loading-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.loading-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skip-btn {
    position: absolute;
    bottom: 30px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: 1px solid rgba(255,215,0,0.5);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
}

.skip-btn:hover {
    background: var(--primary-color, #1e88e5);
    color: white;
    border-color: transparent;
}

/* LOADING SCREEN */
.loading-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.bee-unit {
    position: absolute;
    z-index: 100;
    width: 15px; height: 15px;
    background: #FFD700;
    border: 2.5px solid #1a1a2e;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transform: scale(0);
    animation: 
        spawn 0.8s ease forwards, 
        toBee 0.8s ease 1s forwards,
        fullSequence 12s ease-in-out 1.8s forwards;
}

.bee-inner { opacity: 0; width: 100%; height: 100%; position: relative; }
.bee-unit.ready .bee-inner { opacity: 1; transition: 0.5s; }

.stripes {
    position: absolute; width: 100%; height: 6px;
    background: #1a1a2e; top: 12px; box-shadow: 0 12px 0 #1a1a2e;
}

.wings {
    position: absolute; top: -12px; width: 100%;
    display: flex; justify-content: space-between;
}

.wing {
    width: 20px; height: 15px; background: rgba(200,220,255,0.8);
    border: 1.5px solid #1a1a2e; border-radius: 50%;
    animation: flap 0.1s infinite alternate;
}

.brand-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
}

.bizzy {
    font-size: 55px; 
    color: #0047AB;
    margin: 0; 
    line-height: 0.9;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation: revealBizzy 1.5s ease 5.5s forwards;
}

.bizzy span {
    color: #FFD700;
}

.impact {
    font-size: 70px; 
    font-weight: 900; 
    letter-spacing: -3px; 
    color: #1a1a2e;
    margin: 0;
    opacity: 0;
    display: flex;
    animation: revealImpact 1.2s ease 8s forwards;
}

@keyframes spawn { to { transform: scale(1); } }
@keyframes toBee { to { width: 55px; height: 42px; border-radius: 25px; } }
@keyframes flap { from { transform: scaleY(1); } to { transform: scaleY(0.3); } }
@keyframes revealBizzy { to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes revealImpact { to { opacity: 1; } }
@keyframes fullSequence {
    0% { transform: translate(0, 0) scaleX(1); }
    12% { transform: translate(250px, 0) scaleX(1); } 
    25% { transform: translate(-250px, 0) scaleX(-1); } 
    40% { transform: translate(200px, -20px) scaleX(1); } 
    60% { transform: translate(-200px, 30px) scaleX(-1); } 
    80% { transform: translate(-30px, -60px) scaleX(1); } 
    100% { transform: translate(-88px, -50px) scaleX(1); } 
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    z-index: 9999;
    transition: opacity 0.8s, visibility 0.8s;
}
.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    transition: all 0.3s ease;
    overflow-x: hidden;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Web Close Overlay */
.web-closed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    flex-direction: column;
}
.web-closed-overlay.active { display: flex; }
.web-closed-card {
    border-radius: 48px;
    padding: 40px;
    text-align: center;
    max-width: 350px;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 16px 100px;
    display: none;
    position: relative;
    z-index: 1;
}

/* Bot Status Bar */
.bot-status-bar {
    background: rgba(0,0,0,0.05);
    border-radius: 30px;
    padding: 8px 16px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}
.bot-status {
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.status-dot.online { background: #28a745; box-shadow: 0 0 5px #28a745; }
.status-dot.offline { background: #dc3545; }
.bot-command-badge {
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.65rem;
    cursor: pointer;
}
.bot-command-badge:hover {
    background: var(--primary-color);
    color: white;
}

.header {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flying-bee {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    z-index: 20;
    animation: flyAcrossText 7s ease-in-out infinite;
    pointer-events: none;
}

.bee-body {
    width: 50px;
    height: 42px;
    background: #ffcc00;
    border: 3px solid #000;
    border-radius: 50% 50% 45% 45%;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.bee-body::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #000;
    box-shadow: 0 12px 0 #000;
}

.bee-eye {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.bee-stinger {
    position: absolute;
    bottom: 5px;
    left: -8px;
    width: 10px;
    height: 6px;
    background: #000;
    border-radius: 0 0 0 5px;
}

.bee-wing {
    position: absolute;
    width: 28px;
    height: 22px;
    background: rgba(200, 220, 255, 0.7);
    border: 2px solid #000;
    border-radius: 50% 50% 0 50%;
    top: -18px;
    left: 8px;
    transform-origin: bottom right;
    animation: wingFlap 0.12s ease-in-out infinite alternate;
}

.bee-wing.right {
    left: auto;
    right: 8px;
    border-radius: 50% 50% 50% 0;
    transform-origin: bottom left;
}

@keyframes wingFlap {
    0% { transform: rotate(10deg) scaleY(1); }
    100% { transform: rotate(-25deg) scaleY(0.6); }
}

@keyframes flyAcrossText {
    0% {
        left: -60px;
        transform: translateY(-50%) scaleX(1);
    }
    15% {
        transform: translateY(-58%) scaleX(1);
    }
    30% {
        transform: translateY(-42%) scaleX(1);
    }
    48% {
        left: calc(100% - 80px);
        transform: translateY(-50%) scaleX(1);
    }
    50% {
        left: calc(100% - 80px);
        transform: translateY(-50%) scaleX(-1);
    }
    65% {
        transform: translateY(-58%) scaleX(-1);
    }
    80% {
        transform: translateY(-42%) scaleX(-1);
    }
    98% {
        left: -60px;
        transform: translateY(-50%) scaleX(-1);
    }
    100% {
        left: -60px;
        transform: translateY(-50%) scaleX(1);
    }
}

.logo-custom {
    font-size: 2.2rem;
    font-weight: 800;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 5;
}

.tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 5px;
    position: relative;
    z-index: 5;
}

.video-card {
    border-radius: 20px;
    padding: 0px;
    margin-bottom: 20px;
    position: relative;
    background: transparent !important;
    border: none !important;
}
.video-wrapper {
    border-radius: 16px;
    overflow: hidden;
}
.promo-video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    pointer-events: none;
}

.slider-container {
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.slider {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    min-width: 100%;
}
.slide img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 24px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
}

.welcome-card {
    border-radius: 20px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.queue-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

.auth-card {
    backdrop-filter: blur(15px);
    border-radius: 48px;
    padding: 32px 28px;
    text-align: center;
}
.auth-card h2 { margin-bottom: 20px; }
.auth-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 24px;
    font-size: 1rem;
    margin-bottom: 12px;
}
.auth-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}
.auth-switch {
    margin-top: 15px;
    font-size: 0.8rem;
}
.auth-switch span { cursor: pointer; }

.category-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    margin-bottom: 20px;
    padding-bottom: 8px;
    flex-wrap: wrap;
}
.category-btn {
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 30px;
    white-space: nowrap;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    transition: 0.2s;
}

.price-card {
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 12px 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.2s;
}
.price-card:hover { transform: translateY(-2px); }
.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.price-title {
    font-size: 0.85rem;
    font-weight: 700;
}
.price-value {
    font-size: 0.9rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
}
.section-title {
    font-size: 0.9rem;
    font-weight: 800;
    margin: 15px 0 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid;
    display: inline-block;
}

.btn-order {
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1rem;
}

.contact-card {
    border-radius: 20px;
    padding: 16px;
    margin-top: 20px;
    text-align: center;
}
.contact-card a { text-decoration: none; }

.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.6rem;
    margin-top: 20px;
}

/* BOTTOM NAV WITH SWITCH BUTTON */
.bottom-nav {
    backdrop-filter: blur(12px);
    border-radius: 40px;
    padding: 8px 12px;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 500px;
    margin: 0 auto;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}
.nav-item {
    text-align: center;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 30px;
    transition: 0.2s;
    flex: 1;
}
.nav-item i { font-size: 1.1rem; display: block; margin-bottom: 3px; }
.nav-item span { font-size: 0.6rem; }

.nav-switch-btn {
    background: rgba(0,0,0,0.1);
    border: none;
    border-radius: 30px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-switch-btn:hover {
    background: var(--primary-color);
    color: white;
}

.nav-group {
    display: flex;
    flex: 6;
    gap: 4px;
    transition: 0.3s ease;
}

.page { display: none; animation: fadeIn 0.3s ease; }
.page.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-card {
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}
.info-card h3 { margin-bottom: 12px; }

.rating-summary {
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
}
.rating-stars-big {
    font-size: 1.8rem;
    color: #ffc107;
    margin-bottom: 8px;
}
.rating-average {
    font-size: 2rem;
    font-weight: 800;
}
.rating-count {
    font-size: 0.7rem;
    opacity: 0.7;
}
.review-form {
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 20px;
}
.star-rating-input {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    justify-content: center;
}
.star-input {
    font-size: 1.5rem;
    cursor: pointer;
    color: #ddd;
    transition: 0.2s;
}
.star-input.active { color: #ffc107; }
.review-input {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    margin-bottom: 12px;
    resize: none;
}
.review-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(95deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}
.review-list {
    max-height: 400px;
    overflow-y: auto;
}
.review-item {
    background: rgba(0,0,0,0.03);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 12px;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}
.review-user {
    font-weight: bold;
    font-size: 0.85rem;
}
.review-stars {
    color: #ffc107;
    font-size: 0.7rem;
}
.review-text {
    font-size: 0.8rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.review-package {
    font-size: 0.65rem;
    opacity: 0.6;
}
.review-date {
    font-size: 0.6rem;
    opacity: 0.5;
}

.music-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.music-modal.active { display: flex; }
.music-card {
    background: rgba(30,30,50,0.9);
    border-radius: 32px;
    padding: 24px;
    max-width: 400px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255,215,0,0.3);
}
.music-card h3 {
    color: #ffd700;
    margin-bottom: 20px;
    text-align: center;
}
.music-search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.music-search-box input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 30px;
    color: white;
}
.music-search-box button {
    padding: 12px 20px;
    background: #ffd700;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #1a1a2e;
}
.search-loading {
    text-align: center;
    padding: 20px;
    color: #ffd700;
}
.result-item {
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
}
.result-item:hover { background: rgba(255,215,0,0.2); }
.result-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}
.result-info { flex: 1; }
.result-title {
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.result-user {
    font-size: 0.7rem;
    opacity: 0.6;
}
.result-duration {
    font-size: 0.7rem;
    color: #ffd700;
}
.now-playing {
    background: rgba(255,215,0,0.15);
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.now-playing-img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}
.now-playing-info { flex: 1; }
.now-playing-title {
    font-weight: bold;
    font-size: 0.85rem;
}
.now-playing-controls {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}
.control-btn {
    background: rgba(255,215,0,0.2);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    color: #ffd700;
    font-size: 1.2rem;
    transition: 0.2s;
}
.control-btn:hover {
    background: #ffd700;
    color: #1a1a2e;
}
.close-music {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 30px;
    color: #ffd700;
    cursor: pointer;
    margin-top: 15px;
}
.volume-slider {
    width: 100%;
    margin-top: 10px;
}
.volume-slider input {
    width: 100%;
    cursor: pointer;
}

.toast {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    padding: 12px;
    border-radius: 40px;
    text-align: center;
    z-index: 2000;
}

.sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100%;
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: 0.3s;
    padding: 20px;
}
.sidebar.open { left: 0; }
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}
.sidebar-overlay.open { display: block; }
.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 14px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 98;
    font-size: 1.2rem;
}
.sidebar-menu {
    list-style: none;
    margin-top: 20px;
}
.sidebar-menu li {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.2s;
}
.visitor-count {
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    font-size: 0.7rem;
    margin-bottom: 15px;
}
.live-clock {
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
.queue-info {
    border-radius: 16px;
    padding: 10px;
    text-align: center;
    margin-top: 15px;
}

.mode-selector {
    margin: 15px 0;
    padding: 10px;
    background: rgba(0,0,0,0.1);
    border-radius: 30px;
    display: flex;
    gap: 8px;
}
.mode-btn {
    flex: 1;
    padding: 8px;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: 0.2s;
}
.mode-btn.active {
    background: var(--primary-color, #ffd700);
    color: var(--text-dark, #1a1a2e);
}

.bot-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(95deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    z-index: 10001;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
.bot-command-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.bot-cmd {
    background: rgba(0,0,0,0.05);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-family: monospace;
    cursor: pointer;
    transition: 0.2s;
}
.bot-cmd:hover {
    background: var(--primary-color);
    color: white;
}

.operational-hours {
    text-align: center;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* LIGHT MODE */
body.light {
    background: linear-gradient(135deg, #f0f4ff, #e6edfc);
    color: #1a2a6c;
}
body.light .overlay { background: rgba(255,255,255,0.3); }
body.light .web-closed-card { background: rgba(255,255,255,0.95); color: #0d47a1; border: 1px solid #1e88e5; }
body.light .welcome-card { background: rgba(255,255,255,0.8); border: 1px solid #bbdefb; color: #1a2a6c; }
body.light .queue-badge { background: #e3f2fd; color: #0d47a1; }
body.light .auth-card { background: rgba(255,255,255,0.9); border: 1px solid #90caf9; }
body.light .auth-card h2 { color: #0d47a1; }
body.light .auth-input { background: rgba(0,0,0,0.03); border: 1px solid #bbdefb; color: #1a2a6c; }
body.light .auth-btn { background: linear-gradient(95deg, #1e88e5, #0d47a1); color: white; }
body.light .category-btn { background: rgba(255,255,255,0.7); color: #0d47a1; }
body.light .category-btn.active { background: linear-gradient(95deg, #1e88e5, #0d47a1); color: white; }
body.light .price-card { background: rgba(255,255,255,0.8); border: 1px solid #bbdefb; color: #1a2a6c; }
body.light .price-title { color: #0d47a1; }
body.light .price-value { background: rgba(0,0,0,0.05); color: #1e88e5; }
body.light .btn-order { background: linear-gradient(95deg, #1e88e5, #0d47a1); color: white; }
body.light .contact-card { background: rgba(255,255,255,0.7); border: 1px solid #bbdefb; }
body.light .contact-card a { color: #0d47a1; }
body.light .bottom-nav { background: rgba(255,255,255,0.9); border: 1px solid #bbdefb; }
body.light .nav-item { color: #1a2a6c; }
body.light .nav-item.active { background: #1e88e5; color: white; }
body.light .nav-switch-btn { background: rgba(0,0,0,0.08); color: #0d47a1; }
body.light .info-card { background: rgba(255,255,255,0.7); color: #1a2a6c; }
body.light .info-card h3 { color: #0d47a1; }
body.light .toast { background: #ffffff; border-left: 4px solid #1e88e5; color: #0d47a1; }
body.light .sidebar { background: rgba(255,255,255,0.98); border-right: 1px solid #bbdefb; color: #1a2a6c; }
body.light .sidebar h3 { color: #0d47a1; }
body.light .sidebar .visitor-count, body.light .sidebar .queue-info { background: rgba(0,0,0,0.05); color: #1a2a6c; }
body.light .sidebar .live-clock { color: #1e88e5; }
body.light .sidebar-menu li { background: #e3f2fd; color: #0d47a1; }
body.light .sidebar-menu li:hover { background: #bbdefb; }
body.light .menu-toggle { background: rgba(255,255,255,0.8); color: #0d47a1; }
body.light .dot { background: rgba(0,0,0,0.2); }
body.light .dot.active { background: #1e88e5; }
body.light .slider-btn { background: rgba(255,255,255,0.7); color: #0d47a1; }
body.light .mode-selector { background: rgba(0,0,0,0.05); }
body.light .mode-btn { background: rgba(0,0,0,0.05); color: #0d47a1; }
body.light .mode-btn.active { background: #1e88e5; color: white; }
body.light .music-card { background: rgba(255,255,255,0.95) !important; color: #1a2a6c !important; }
body.light .bot-status-bar { background: rgba(255,255,255,0.7); color: #0d47a1; }
body.light .bot-cmd { background: #e3f2fd; color: #0d47a1; }
body.light .bot-cmd:hover { background: #1e88e5; color: white; }
body.light .section-title { border-bottom-color: #1e88e5; }
body.light .operational-hours { background: rgba(255,255,255,0.8); color: #0d47a1; }

/* DARK MODE */
body.dark {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #e0e0e0;
}
body.dark .overlay { background: rgba(0,0,0,0.85); }
body.dark .web-closed-card { background: rgba(20,20,40,0.95); border: 1px solid #ffd700; color: #ffd700; }
body.dark .welcome-card { background: rgba(0,0,0,0.7); border: 1px solid rgba(255,215,0,0.3); color: #e0e0e0; }
body.dark .queue-badge { background: #ff6600; color: white; }
body.dark .auth-card { background: rgba(20,20,40,0.95); border: 1px solid rgba(255,215,0,0.3); }
body.dark .auth-card h2 { color: #ffd700; }
body.dark .auth-input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: white; }
body.dark .auth-btn { background: linear-gradient(95deg, #ffd700, #ff9900); color: #1a1a1a; }
body.dark .category-btn { background: rgba(0,0,0,0.6); color: #ffd700; }
body.dark .category-btn.active { background: linear-gradient(95deg, #ffd700, #ff9900); color: #1a1a1a; }
body.dark .price-card { background: rgba(0,0,0,0.6); border: 1px solid rgba(255,215,0,0.3); color: #e0e0e0; }
body.dark .price-title { color: #ffd700; }
body.dark .price-value { background: rgba(0,0,0,0.5); color: #ffd700; }
body.dark .btn-order { background: linear-gradient(95deg, #25D366, #128C7E); color: white; }
body.dark .contact-card { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,215,0,0.3); }
body.dark .contact-card a { color: #ffd700; }
body.dark .bottom-nav { background: rgba(0,0,0,0.9); border: 1px solid rgba(255,215,0,0.3); }
body.dark .nav-item { color: #e0e0e0; }
body.dark .nav-item.active { background: #ffd700; color: #1a1a1a; }
body.dark .nav-switch-btn { background: rgba(255,255,255,0.1); color: #ffd700; }
body.dark .info-card { background: rgba(0,0,0,0.5); color: #e0e0e0; }
body.dark .info-card h3 { color: #ffd700; }
body.dark .toast { background: #1a1a1a; border-left: 4px solid #ffd700; color: #ffd700; }
body.dark .sidebar { background: rgba(10,10,20,0.98); border-right: 1px solid rgba(255,215,0,0.3); color: #e0e0e0; }
body.dark .sidebar h3 { color: #ffd700; }
body.dark .sidebar .visitor-count, body.dark .sidebar .queue-info { background: rgba(0,0,0,0.5); color: #e0e0e0; }
body.dark .sidebar .live-clock { color: #ffd700; }
body.dark .sidebar-menu li { background: rgba(255,215,0,0.15); color: #ffd700; }
body.dark .sidebar-menu li:hover { background: rgba(255,215,0,0.3); }
body.dark .menu-toggle { background: rgba(0,0,0,0.7); color: #ffd700; }
body.dark .dot { background: rgba(255,255,255,0.3); }
body.dark .dot.active { background: #ffd700; }
body.dark .slider-btn { background: rgba(0,0,0,0.7); color: #ffd700; }
body.dark .mode-selector { background: rgba(0,0,0,0.3); }
body.dark .mode-btn { background: rgba(255,255,255,0.1); color: #ffd700; }
body.dark .mode-btn.active { background: #ffd700; color: #1a1a1a; }
body.dark .music-card { background: rgba(30,30,50,0.95) !important; color: #e0e0e0 !important; }
body.dark .bot-status-bar { background: rgba(0,0,0,0.5); color: #ffd700; }
body.dark .bot-cmd { background: rgba(255,215,0,0.15); color: #ffd700; }
body.dark .bot-cmd:hover { background: #ffd700; color: #1a1a1a; }
body.dark .section-title { border-bottom-color: #ffd700; }
body.dark .operational-hours { background: rgba(0,0,0,0.5); color: #ffd700; }