/* ========== RESET & GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
html, body {
    height: 100%;
    overflow: hidden;
    background: #0b0e14;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== APP CONTAINER ========== */
.app-container {
    width: 100%;
    max-width: 420px;
    height: 100dvh;
    max-height: 100dvh;
    background: #111820;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ========== HEADER ========== */
.header {
    padding: 12px 16px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2a3a;
    flex-shrink: 0;
    min-height: 50px;
    background: #0f172a;
}
.logo {
    font-weight: 700;
    font-size: 17px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.badge-group {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.coin-badge {
    background: #1f2a3a;
    padding: 3px 10px;
    border-radius: 40px;
    font-size: 12px;
    border: 1px solid #4b5563;
}
.coin-badge i {
    color: #fbbf24;
    margin-right: 3px;
}
.streak-badge {
    background: #1f2a3a;
    padding: 3px 8px;
    border-radius: 40px;
    font-size: 10px;
    border: 1px solid #f59e0b;
    color: #fbbf24;
}
.streak-badge i {
    margin-right: 3px;
}
#userDisplay {
    font-size: 9px;
    color: #8896b0;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#logoutBtn {
    background: #1f2a3a;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 3px 8px;
    border-radius: 40px;
    font-size: 9px;
    cursor: pointer;
}

/* ========== PAGES ========== */
.page {
    display: none;
    padding: 12px 14px 80px;
    animation: fadeSlide 0.3s ease;
    flex: 1;
    overflow-y: auto;
}
.page::-webkit-scrollbar {
    width: 2px;
}
.page::-webkit-scrollbar-track {
    background: #0f172a;
}
.page::-webkit-scrollbar-thumb {
    background: #4b5a77;
    border-radius: 10px;
}
.page.active {
    display: block;
}
@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========== BOTTOM NAV ========== */
.bottom-nav {
    position: sticky;
    bottom: 0;
    background: #0f172a;
    border-top: 1px solid #1f2a3a;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-shrink: 0;
    z-index: 50;
    min-height: 54px;
}
.nav-item {
    background: transparent;
    border: none;
    color: #5a6a84;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 3px 10px;
    border-radius: 30px;
}
.nav-item i {
    font-size: 18px;
    transition: 0.2s;
}
.nav-item span {
    font-size: 9px;
    font-weight: 500;
}
.nav-item.active {
    color: #a855f7;
}
.nav-item.active i {
    filter: drop-shadow(0 0 8px #a855f780);
}

/* ========== FARM AREA ========== */
.farm-area {
    background: #141d2b;
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    border: 1px solid #2a3a50;
    position: relative;
    overflow: hidden;
}
.farm-area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.05), transparent 70%);
    animation: rotateGlow 20s linear infinite;
}
@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.coin-icon-big {
    font-size: 40px;
    color: #fbbf24;
    filter: drop-shadow(0 0 16px #fbbf2440);
    margin-bottom: 6px;
    display: block;
    position: relative;
    z-index: 1;
}
.farm-area h2 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}
.farm-area p {
    color: #8896b0;
    font-size: 12px;
    position: relative;
    z-index: 1;
}
.farm-area p strong {
    color: #fbbf24;
}
.farm-btn {
    background: linear-gradient(145deg, #1f2a3a, #0f172a);
    border: 1px solid #4b5a77;
    color: #e0e6f0;
    padding: 12px 16px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.15s ease;
    margin: 10px 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 3px 0 #0b0e14;
    position: relative;
    z-index: 1;
}
.farm-btn:active {
    transform: translateY(3px);
    box-shadow: none;
}
.farm-btn:disabled {
    opacity: 0.5;
    transform: translateY(3px);
    box-shadow: none;
    pointer-events: none;
}
.daily-bonus-box {
    background: #0f172a;
    border-radius: 12px;
    padding: 8px 12px;
    margin-top: 10px;
    border: 1px solid #2a3a50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 4px;
}
.daily-bonus-box .bonus-text {
    font-size: 11px;
    color: #8896b0;
}
.daily-bonus-box .bonus-text strong {
    color: #fbbf24;
}
.daily-claim-btn {
    background: #6366f1;
    border: none;
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.daily-claim-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ========== IKLAN BANNER ========== */
#adsBanner {
    display: none;
    margin-top: 12px;
    width: 100%;
    animation: fadeSlide 0.3s ease;
}
#adsBanner .ads-box {
    background: #0f172a;
    border-radius: 12px;
    border: 1px solid #2a3a50;
    padding: 10px;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: auto;
}
#adsBanner .ads-box iframe {
    border: 0;
    padding: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: block;
    margin: auto;
    border-radius: 8px;
    background: #0f172a;
}
#adsBanner .ads-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
#adsBanner .ads-actions button {
    flex: 1;
    padding: 10px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 13px;
    transition: 0.2s;
}
#adsBanner .ads-actions .btn-claim {
    background: #34d399;
    color: #0b0e14;
}
#adsBanner .ads-actions .btn-claim:hover {
    background: #059669;
}
#adsBanner .ads-actions .btn-claim:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
#adsBanner .ads-actions .btn-skip {
    background: #1f2a3a;
    color: #5a6a84;
    border: 1px solid #4b5a77;
}
#adsBanner .ads-actions .btn-skip:hover {
    background: #2a3a50;
}
#adsBanner .countdown-text {
    text-align: center;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}
@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========== APP LOGO SECTION ========== */
.app-logo-section {
    margin-top: 14px;
}
.app-logo-section h3 {
    margin-top: 0;
    font-size: 13px;
}
.app-logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
    justify-content: center;
}
.app-logo-item {
    background: #141d2b;
    border-radius: 8px;
    padding: 4px 10px;
    border: 1px solid #2a3a50;
    transition: all 0.2s;
    flex: 1 0 calc(25% - 5px);
    min-width: 55px;
    text-align: center;
}
.app-logo-item:hover {
    border-color: #6366f1;
    transform: translateY(-1px);
}
.app-logo-item .logo-name {
    font-size: 10px;
    font-weight: 600;
    color: #e0e6f0;
}

/* ========== STORE ========== */
h3 {
    margin-top: 14px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
h3 span {
    font-size: 9px;
    color: #5a6a84;
    font-weight: 400;
}
.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 10px;
}
.store-item {
    background: #141d2b;
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    border: 1px solid #2a3a50;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}
.store-item:hover {
    border-color: #6366f1;
    transform: translateY(-1px);
}
.store-item .icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    margin-bottom: 3px;
}
.store-item .product-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 5px;
}
.store-item .icon-emoji {
    font-size: 24px;
    display: block;
}
.store-item .name {
    font-size: 11px;
    font-weight: 600;
    color: #e0e6f0;
}
.store-item .price {
    font-size: 10px;
    color: #fbbf24;
    margin-top: 1px;
}
.store-item .price i {
    margin-right: 2px;
}
.store-item .stock {
    font-size: 8px;
    color: #5a6a84;
    margin-top: 1px;
}
.store-item .badge-populer {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    font-size: 7px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 20px;
    text-transform: uppercase;
}
.store-item .badge-habis {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #5a6a84;
    color: white;
    font-size: 7px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 20px;
    text-transform: uppercase;
}
.store-item.locked {
    opacity: 0.5;
    pointer-events: none;
}

/* ========== PROFILE ========== */
.profile-card {
    background: #141d2b;
    border-radius: 16px;
    padding: 16px 14px;
    border: 1px solid #2a3a50;
    text-align: center;
}
.avatar {
    font-size: 48px;
    color: #6366f1;
    filter: drop-shadow(0 0 20px #6366f160);
    margin-bottom: 4px;
}
.profile-name {
    font-size: 16px;
    font-weight: 700;
    margin-top: 2px;
    word-break: break-word;
}
.profile-email {
    color: #8896b0;
    font-size: 12px;
    word-break: break-word;
}
.profile-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #1f2a3a;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #fbbf24;
}
.stat-label {
    font-size: 9px;
    color: #8896b0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ========== HISTORY ========== */
.history-box {
    background: #141d2b;
    border-radius: 16px;
    padding: 12px 14px;
    border: 1px solid #2a3a50;
    margin-top: 10px;
    max-height: 120px;
    overflow-y: auto;
}
.history-box::-webkit-scrollbar {
    width: 2px;
}
.history-box::-webkit-scrollbar-track {
    background: #0f172a;
}
.history-box::-webkit-scrollbar-thumb {
    background: #4b5a77;
    border-radius: 10px;
}
.history-box h4 {
    font-size: 11px;
    color: #8896b0;
    margin-bottom: 4px;
}
.history-box h4 i {
    margin-right: 3px;
}
.history-item {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid #1f2a3a;
    font-size: 11px;
    color: #8896b0;
    flex-wrap: wrap;
    gap: 2px;
}
.history-item:last-child {
    border-bottom: none;
}
.history-item .h-time {
    font-size: 9px;
}
.history-item .h-amount {
    font-weight: 600;
}
.history-item .h-amount.plus {
    color: #34d399;
}
.history-item .h-amount.minus {
    color: #ef4444;
}

/* ========== STATISTIK ========== */
.stats-section {
    margin-top: 12px;
    background: #141d2b;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid #2a3a50;
}
.stats-section h4 {
    font-size: 12px;
    color: #8896b0;
    margin-bottom: 6px;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.stats-grid .stat-box {
    background: #0f172a;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}
.stats-grid .stat-box .stat-label {
    font-size: 10px;
    color: #8896b0;
}
.stats-grid .stat-box .stat-value {
    font-size: 11px;
    font-weight: 600;
}
.stats-grid .stat-box .stat-value.green {
    color: #34d399;
}
.stats-grid .stat-box .stat-value.gold {
    color: #fbbf24;
}
.stats-grid .stat-box .stat-value.purple {
    color: #a855f7;
}
.stats-grid .stat-box.span-2 {
    grid-column: span 2;
}

/* ========== WITHDRAW ========== */
.wd-card {
    background: #141d2b;
    border-radius: 16px;
    padding: 16px 14px;
    border: 1px solid #2a3a50;
}
.wd-card h3 {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.wd-card h3 i {
    color: #34d399;
}
.wd-info {
    background: #0f172a;
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 11px;
    color: #8896b0;
    border-left: 3px solid #fbbf24;
    line-height: 1.6;
}
.wd-info strong {
    color: #fbbf24;
}
.wd-input-group {
    margin-bottom: 10px;
}
.wd-input-group label {
    display: block;
    font-size: 11px;
    color: #8896b0;
    margin-bottom: 3px;
}
.wd-input-group input,
.wd-input-group select {
    width: 100%;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #2a3a50;
    background: #0f172a;
    color: #e0e6f0;
    font-size: 13px;
    outline: none;
    transition: border 0.2s;
}
.wd-input-group input:focus,
.wd-input-group select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px #6366f130;
}
.wd-btn {
    background: linear-gradient(145deg, #6366f1, #4f46e5);
    border: none;
    color: white;
    font-weight: 700;
    padding: 10px;
    border-radius: 40px;
    width: 100%;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.wd-btn:active {
    transform: scale(0.97);
}
.wd-btn:disabled {
    opacity: 0.5;
    pointer-events: none;
}
.wd-message {
    margin-top: 10px;
    padding: 8px;
    border-radius: 12px;
    background: #0f172a;
    text-align: center;
    font-size: 12px;
    border-left: 4px solid #34d399;
    display: none;
}
.wd-message.show {
    display: block;
}

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1f2a3a;
    color: #e0e6f0;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #4b5a77;
    box-shadow: 0 8px 24px #00000060;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 999;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ========== MODAL UMUM ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    padding: 16px;
}
.modal-overlay.show {
    display: flex;
}
.modal-box {
    background: #141d2b;
    border-radius: 16px;
    padding: 20px 16px;
    max-width: 360px;
    width: 100%;
    border: 1px solid #2a3a50;
    text-align: center;
    animation: modalPop 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes modalPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.modal-box .big-icon {
    font-size: 40px;
    margin-bottom: 6px;
}
.modal-box h3 {
    font-size: 16px;
    margin-bottom: 2px;
}
.modal-box p {
    color: #8896b0;
    font-size: 12px;
    margin-bottom: 10px;
}
.modal-box .voucher-code {
    background: #0f172a;
    padding: 8px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fbbf24;
    border: 1px dashed #4b5a77;
    margin-bottom: 10px;
    user-select: all;
    word-break: break-all;
}
.modal-box .btn-close-modal {
    background: #6366f1;
    border: none;
    color: white;
    padding: 6px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-size: 13px;
}
.modal-box .btn-close-modal:hover {
    background: #4f46e5;
}
.modal-box .btn-manual-claim {
    background: #25D366;
    border: none;
    color: white;
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}
.modal-box .btn-manual-claim:hover {
    background: #128C7E;
}

/* ========== LOGIN ========== */
#googleLoginBtn {
    background: #ffffff;
    border: none;
    color: #333;
    padding: 12px;
    border-radius: 40px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}
#googleLoginBtn:hover {
    background: #f0f0f0;
}
#googleLoginBtn img {
    width: 20px;
    height: 20px;
}
#loginForm .form-group,
#registerForm .form-group {
    margin-bottom: 12px;
    text-align: left;
}
#loginForm .form-group label,
#registerForm .form-group label {
    display: block;
    font-size: 12px;
    color: #8896b0;
    margin-bottom: 4px;
}
#loginForm .form-group input,
#registerForm .form-group input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #2a3a50;
    background: #0f172a;
    color: #e0e6f0;
    font-size: 14px;
    outline: none;
}
#loginForm .form-group input:focus,
#registerForm .form-group input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px #6366f130;
}
#loginBtn,
#registerBtn {
    background: #6366f1;
    border: none;
    color: white;
    padding: 12px;
    border-radius: 40px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 8px;
}
#loginBtn:hover,
#registerBtn:hover {
    background: #4f46e5;
}
#showRegisterBtn,
#showLoginBtn {
    background: transparent;
    border: none;
    color: #8896b0;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    width: 100%;
}
#showRegisterBtn:hover,
#showLoginBtn:hover {
    color: #e0e6f0;
}
#loginMessage {
    margin-top: 12px;
    padding: 8px;
    border-radius: 12px;
    font-size: 13px;
    display: none;
    text-align: center;
}

/* ========== PARTICLES ========== */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFly 1.2s ease-out forwards;
}
@keyframes particleFly {
    0% { opacity: 1; transform: translate(0, 0) scale(1); }
    100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 480px) {
    .app-container {
        border-radius: 0;
        max-width: 100%;
        height: 100dvh;
        max-height: 100dvh;
    }
    .bottom-nav {
        padding: 6px 0 10px;
        min-height: 48px;
    }
    .nav-item i {
        font-size: 16px;
    }
    .nav-item span {
        font-size: 8px;
    }
    .page {
        padding: 10px 10px 70px;
    }
    .store-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .app-logo-item {
        flex: 1 0 calc(33.33% - 5px);
        min-width: 50px;
        padding: 3px 6px;
    }
    .app-logo-item .logo-name {
        font-size: 9px;
    }
    .badge-group {
        gap: 3px;
    }
    #userDisplay {
        max-width: 50px;
        font-size: 8px;
    }
    .modal-box {
        padding: 16px 12px;
    }
    .header {
        padding: 10px 12px 6px;
        min-height: 44px;
    }
    .header .logo {
        font-size: 15px;
    }
    .coin-badge {
        font-size: 10px;
        padding: 2px 8px;
    }
    .streak-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
    .farm-area {
        padding: 16px 12px;
    }
    .farm-area h2 {
        font-size: 15px;
    }
    .farm-btn {
        font-size: 13px;
        padding: 10px 14px;
    }
    .store-item {
        padding: 8px 6px;
    }
    .store-item .name {
        font-size: 10px;
    }
    .store-item .price {
        font-size: 9px;
    }
    .profile-name {
        font-size: 15px;
    }
    .stat-value {
        font-size: 18px;
    }
    .toast {
        white-space: normal;
        max-width: 90%;
        text-align: center;
        font-size: 11px;
        padding: 6px 14px;
        bottom: 60px;
    }
    #adsBanner .ads-box iframe {
        height: 200px;
    }
}

@media (max-width: 360px) {
    .header .logo {
        font-size: 13px;
    }
    .coin-badge {
        font-size: 9px;
        padding: 2px 6px;
    }
    .streak-badge {
        font-size: 8px;
        padding: 2px 5px;
    }
    .farm-area h2 {
        font-size: 13px;
    }
    .farm-btn {
        font-size: 11px;
        padding: 8px 12px;
    }
    .store-item .name {
        font-size: 9px;
    }
    .store-item .price {
        font-size: 8px;
    }
    .page {
        padding: 8px 8px 60px;
    }
    .bottom-nav {
        padding: 4px 0 8px;
        min-height: 42px;
    }
    .nav-item i {
        font-size: 14px;
    }
    .nav-item span {
        font-size: 7px;
    }
    #adsBanner .ads-box iframe {
        height: 180px;
    }
}

@media (min-width: 421px) {
    .app-container {
        border-radius: 24px;
        max-height: 820px;
        aspect-ratio: 9 / 16;
    }
    .bottom-nav {
        border-radius: 0 0 24px 24px;
    }
}

/* ========== SCROLLBAR GLOBAL ========== */
::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #4b5a77;
    border-radius: 10px;
}
