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

body {
    background: #0a0a0c;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    color: #e0e0e0;
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: 100%;
    max-width: 400px;
    min-height: 100vh;
    position: relative;
    background: #0a0a0c;
    margin: 0 auto;
}

/* ===== RGB RUNNING ANIMATION ===== */
@keyframes rgbRunning {
    0% { background-position: 0% 50%; border-color: #ff6b6b; box-shadow: 0 0 5px #ff6b6b; }
    25% { background-position: 50% 50%; border-color: #ffd93d; box-shadow: 0 0 5px #ffd93d; }
    50% { background-position: 100% 50%; border-color: #6bcb77; box-shadow: 0 0 5px #6bcb77; }
    75% { background-position: 50% 50%; border-color: #4d96ff; box-shadow: 0 0 5px #4d96ff; }
    100% { background-position: 0% 50%; border-color: #ff6b6b; box-shadow: 0 0 5px #ff6b6b; }
}

@keyframes rgbGlow {
    0% { opacity: 0.6; text-shadow: 0 0 2px #ff6b6b; }
    25% { opacity: 1; text-shadow: 0 0 8px #ffd93d; }
    50% { opacity: 0.6; text-shadow: 0 0 2px #6bcb77; }
    75% { opacity: 1; text-shadow: 0 0 8px #4d96ff; }
    100% { opacity: 0.6; text-shadow: 0 0 2px #ff6b6b; }
}

/* SERVER STATUS LINE WITH RGB RUNNING */
.server-status-line {
    width: 100%;
    height: 3px;
    margin: 12px 0;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.server-status-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff, #ff6b6b);
    background-size: 200% 100%;
    animation: rgbRunning 2s ease-in-out infinite;
}

.server-status-line.online::before { display: block; }
.server-status-line.offline::before { display: block; background: linear-gradient(90deg, #ff6b6b, #ff4444, #cc3333, #ff6b6b); }
.server-status-line.maintenance::before { display: block; background: linear-gradient(90deg, #ffd93d, #ffaa00, #cc8800, #ffd93d); }

/* ===== PAGE TRANSITION ANIMATION ===== */
.page {
    display: none;
    animation: pageSlideIn 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    margin-bottom: 100px;
    padding-bottom: 20px;
}

.page.active {
    display: block;
}

@keyframes pageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(15px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* FLOATING BUTTON ANIMATION */
.floating-announcement-btn {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #2a2a30;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    animation: heartbeat 1.5s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-announcement-btn i {
    font-size: 26px;
    color: #d0d0d0;
}

.floating-announcement-btn:active {
    transform: scale(0.9);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(200, 200, 200, 0.3); }
}

.announcement-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
    border: 2px solid #0a0a0c;
    animation: rgbGlow 2s infinite;
}

/* ===== ANNOUNCEMENT FULLSCREEN ===== */
.announcement-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0c;
    z-index: 20000;
    display: none;
    flex-direction: column;
    animation: fadeInPage 0.3s ease;
}

.announcement-fullscreen-header {
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.announcement-fullscreen-back {
    width: 40px;
    height: 40px;
    background: rgba(200, 200, 200, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.announcement-fullscreen-back:active {
    transform: scale(0.95);
    background: #3a3a40;
    color: white;
}

.announcement-fullscreen-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-left: 15px;
    color: #c0c0c0;
}

.announcement-fullscreen-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 25px;
    text-align: center;
}

.announcement-fullscreen-icon {
    width: 80px;
    height: 80px;
    background: rgba(200, 200, 200, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(200, 200, 200, 0.15);
}

.announcement-fullscreen-icon i {
    font-size: 40px;
    color: #c0c0c0;
}

.announcement-fullscreen-text {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    max-width: 90%;
    white-space: pre-wrap;
}

.announcement-fullscreen-date {
    margin-top: 30px;
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===== VPN MODAL ===== */
.vpn-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.vpn-modal-card {
    width: 90%;
    max-width: 380px;
    background: #15151a;
    border: 1px solid rgba(200, 200, 200, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: modalPop 0.4s ease;
    text-align: center;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

.vpn-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(200, 200, 200, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid rgba(200, 200, 200, 0.15);
}

.vpn-modal-icon i {
    font-size: 40px;
    color: #ff6b6b;
}

.vpn-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 12px;
}

.vpn-modal-message {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 25px;
}

.vpn-modal-country {
    margin-bottom: 25px;
    text-align: left;
}

.vpn-modal-country-label {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vpn-modal-country-select {
    width: 100%;
    background: #0c0c10;
    border: 1px solid #2a2a30;
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.vpn-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.vpn-modal-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vpn-modal-btn.primary {
    background: #3a3a40;
    color: white;
}

.vpn-modal-btn.primary:active {
    transform: scale(0.97);
}

.vpn-modal-btn.secondary {
    background: transparent;
    border: 1px solid #2a2a30;
    color: #aaa;
}

.vpn-modal-footer {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== SPLASH VIDEO ===== */
.splash-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0c;
    z-index: 150000;
    display: none;
    justify-content: center;
    align-items: center;
}

.splash-video-card {
    width: 90%;
    max-width: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    aspect-ratio: 16 / 9;
}

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

.splash-video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align: center;
}

.splash-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #e0e0e0;
    text-shadow: 0 0 20px rgba(200, 200, 200, 0.3);
    letter-spacing: 2px;
}

.splash-subtitle {
    font-size: 11px;
    color: #c0c0c0;
    letter-spacing: 1px;
}

/* ===== LOGIN CARD ===== */
.login-card {
    background: #15151a;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: none;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-image-container {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(200, 200, 200, 0.15);
    background: #1e1e24;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(200, 200, 200, 0.2);
}

.logo-text p {
    color: #6b7280;
    font-size: 10px;
}

.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.input-field {
    width: 100%;
    background: #0c0c10;
    border: 1px solid #2a2a30;
    border-radius: 12px;
    padding: 14px 16px;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: #c0c0c0;
    background: #111115;
}

.btn-login {
    width: 100%;
    background: #2a2a30;
    border: none;
    border-radius: 12px;
    padding: 14px;
    color: #e0e0e0;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.btn-login:active {
    transform: scale(0.97);
    background: #3a3a40;
}

.login-footer {
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: #6b7280;
}

.login-footer span {
    color: #c0c0c0;
    font-weight: 600;
    cursor: pointer;
}

/* ===== MAINTENANCE ===== */
.maintenance-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0c;
    z-index: 50000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.maintenance-icon {
    width: 90px;
    height: 90px;
    background: rgba(200, 200, 200, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(200, 200, 200, 0.15);
    animation: pulse 2s infinite;
}

.maintenance-icon i {
    font-size: 45px;
    color: #ffd93d;
}

.maintenance-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffd93d;
    margin-bottom: 12px;
}

.maintenance-message {
    color: #6b7280;
    font-size: 14px;
}

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

/* ===== DASHBOARD ===== */
.dashboard {
    display: none;
    min-height: 100vh;
    padding: 0 14px;
    position: relative;
    animation: fadeIn 0.3s ease;
    z-index: 2000;
    background: #0a0a0c;
}

.dashboard-header {
    padding: 18px 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-name-large {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(200, 200, 200, 0.15);
}

.user-name-large span {
    color: #c0c0c0;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.header-btn {
    width: 38px;
    height: 38px;
    background: rgba(200, 200, 200, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.header-btn:active {
    transform: scale(0.95);
    background: #2a2a30;
    color: #e0e0e0;
}

.header-btn.logout {
    background: rgba(200, 200, 200, 0.03);
    border-color: rgba(200, 200, 200, 0.08);
    color: #ff6b6b;
}

.header-btn.logout:active {
    background: #3a2a2a;
    color: #ff8888;
}

.header-btn.rotating i {
    animation: rotate 0.5s linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.onx-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(200, 200, 200, 0.15);
    text-align: right;
    margin-top: -8px;
    letter-spacing: 4px;
}

/* ===== ACCOUNT CARD ===== */
.account-card {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
}

.account-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.account-row:last-child {
    border-bottom: none;
}

.account-label {
    color: #6b7280;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.account-value {
    color: #e0e0e0;
    font-size: 12px;
    font-weight: 600;
}

.expiry-time {
    font-family: 'Orbitron', monospace;
    color: #6bcb77;
}

.world-clock {
    font-family: 'Orbitron', monospace;
    color: #c0c0c0;
}

/* ===== BOTTOM NAVBAR ===== */
.bottom-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 380px;
    background: rgba(21, 21, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 8px 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    color: #6b7280;
}

.nav-item.active {
    color: #e0e0e0;
    background: rgba(200, 200, 200, 0.05);
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
}

.nav-item span {
    font-size: 9px;
    font-weight: 600;
}

.nav-item-center {
    position: relative;
    margin-top: -18px;
}

.nav-center-btn {
    width: 52px;
    height: 52px;
    background: #2a2a30;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-center-btn:active {
    transform: scale(0.94);
}

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

/* ===== TRACKER PAGE ===== */
.tracker-header {
    margin-bottom: 14px;
}

.tracker-title {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.5px;
}

.tracker-title i {
    color: #c0c0c0;
    margin-right: 6px;
}

.tracker-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tracker-item {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.tracker-item.has-data {
    border-left-color: #6bcb77;
}

.tracker-item:active {
    transform: scale(0.98);
    background: #1c1c22;
}

.tracker-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tracker-icon {
    width: 44px;
    height: 44px;
    background: #0c0c10;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a2a30;
    position: relative;
}

.tracker-icon i {
    font-size: 20px;
    color: #c0c0c0;
}

.data-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    background: #6bcb77;
    border-radius: 50%;
    border: 2px solid #15151a;
}

.tracker-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
    color: #e0e0e0;
}

.tracker-desc {
    font-size: 10px;
    color: #6b7280;
}

/* ===== PREVIEW ===== */
.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 8px 0;
}

.btn-back {
    width: 40px;
    height: 40px;
    background: rgba(200, 200, 200, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    font-size: 18px;
    cursor: pointer;
}

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

.preview-title {
    font-size: 16px;
    font-weight: 700;
    color: #e0e0e0;
}

.preview-card {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
}

.preview-section {
    margin-bottom: 20px;
}

.preview-section-title {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.preview-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #0c0c10;
    border-radius: 10px;
    font-size: 11px;
}

.preview-label {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.preview-value {
    color: #c0c0c0;
    font-weight: 600;
}

.preview-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.preview-photo {
    aspect-ratio: 1;
    background: #0c0c10;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    font-size: 20px;
    cursor: pointer;
    overflow: hidden;
}

.preview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-button {
    background: #2a2a30;
    color: #e0e0e0;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    margin: 12px 0;
    width: 100%;
}

.map-button:active {
    transform: scale(0.97);
    background: #3a3a40;
}

.preview-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.preview-btn {
    flex: 1;
    background: rgba(200, 200, 200, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.08);
    border-radius: 10px;
    padding: 12px;
    color: #e0e0e0;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.preview-btn.delete {
    background: rgba(200, 200, 200, 0.03);
    border-color: rgba(200, 200, 200, 0.08);
    color: #ff6b6b;
}

.preview-btn:active {
    transform: scale(0.97);
}

/* ===== TOOLS PAGE ===== */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.tool-card {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 16px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.tool-card:active {
    transform: scale(0.96);
    background: #1c1c22;
}

.tool-icon {
    width: 48px;
    height: 48px;
    background: #0c0c10;
    border-radius: 12px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a2a30;
}

.tool-icon i {
    font-size: 24px;
    color: #c0c0c0;
}

.tool-card h4 {
    font-size: 12px;
    margin-bottom: 3px;
    color: #e0e0e0;
}

.tool-card p {
    font-size: 8px;
    color: #6b7280;
}

/* ===== VPN PAGE ===== */
.vpn-status-card {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.vpn-status-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(200, 200, 200, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #c0c0c0;
}

.vpn-status-icon.connected {
    background: rgba(107, 203, 119, 0.08);
    border-color: #6bcb77;
    color: #6bcb77;
}

.vpn-status-text #vpnStatusTitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #e0e0e0;
}

.vpn-status-text #vpnStatusSubtitle {
    font-size: 12px;
    color: #6b7280;
}

.vpn-connection-card {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.vpn-toggle-container {
    display: flex;
    justify-content: center;
    margin: 16px 0 24px;
}

.vpn-toggle-btn {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #0c0c10;
    border: 2px solid #2a2a30;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.vpn-toggle-btn.active {
    border-color: #6bcb77;
    box-shadow: 0 0 20px rgba(107, 203, 119, 0.3);
}

.vpn-toggle-btn i {
    font-size: 36px;
    color: #6b7280;
}

.vpn-toggle-btn.active i {
    color: #6bcb77;
}

.vpn-country-selector {
    margin-bottom: 16px;
}

.vpn-country-label {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vpn-country-dropdown {
    width: 100%;
    background: #0c0c10;
    border: 1px solid #2a2a30;
    border-radius: 10px;
    padding: 12px 14px;
    color: #e0e0e0;
    font-size: 13px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.vpn-info {
    text-align: center;
    font-size: 11px;
    color: #6b7280;
    padding: 10px;
    background: rgba(200, 200, 200, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.vpn-features-card {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 18px;
}

.vpn-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.vpn-feature:last-child {
    border-bottom: none;
}

.vpn-feature i {
    width: 34px;
    height: 34px;
    background: rgba(200, 200, 200, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #c0c0c0;
}

.feature-title {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
    color: #e0e0e0;
}

.feature-desc {
    font-size: 10px;
    color: #6b7280;
}

/* ===== PROFILE PAGE ===== */
.device-card {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
}

.device-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.device-icon {
    width: 52px;
    height: 52px;
    background: #0c0c10;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 200, 200, 0.1);
}

.device-icon i {
    font-size: 24px;
    color: #c0c0c0;
}

.device-title h3 {
    font-size: 15px;
    margin-bottom: 3px;
    color: #e0e0e0;
}

.device-title p {
    color: #6b7280;
    font-size: 10px;
}

.device-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-label {
    color: #6b7280;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-label i {
    width: 18px;
    color: #c0c0c0;
}

.spec-value {
    font-weight: 600;
    font-size: 12px;
    color: #e0e0e0;
}

/* CONTACT DROPDOWN */
.contact-section {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
}

.contact-header {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(200, 200, 200, 0.02);
}

.contact-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-header-left i {
    color: #c0c0c0;
    font-size: 16px;
}

.contact-header-left span {
    font-weight: 600;
    font-size: 13px;
    color: #e0e0e0;
}

.contact-header i.fa-chevron-down {
    color: #6b7280;
    transition: transform 0.3s;
}

.contact-section.open .contact-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.contact-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #0c0c10;
}

.contact-section.open .contact-content {
    max-height: 400px;
    padding: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #15151a;
    border-radius: 12px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.2s;
}

.contact-item:active {
    transform: scale(0.97);
}

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-icon.whatsapp { background: rgba(200, 200, 200, 0.05); color: #6bcb77; }
.contact-icon.telegram { background: rgba(200, 200, 200, 0.05); color: #4d96ff; }
.contact-icon.tiktok { background: rgba(200, 200, 200, 0.05); color: #e0e0e0; }
.contact-icon.instagram { background: rgba(200, 200, 200, 0.05); color: #ff6b6b; }

.contact-name {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
}

.contact-desc {
    font-size: 9px;
    color: #6b7280;
}

/* VIDEO CARD */
.video-card {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    height: 150px;
    position: relative;
}

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

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.video-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #e0e0e0;
}

.video-subtitle {
    font-size: 9px;
    color: #c0c0c0;
}

/* INFO UPDATE PAGE */
.info-update-card {
    background: #15151a;
    border-radius: 16px;
    padding: 30px 24px;
    margin-top: 20px;
    text-align: center;
}

.info-update-icon {
    width: 65px;
    height: 65px;
    background: rgba(200, 200, 200, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(200, 200, 200, 0.1);
}

.info-update-icon i {
    font-size: 28px;
    color: #c0c0c0;
}

.info-update-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #c0c0c0;
    margin-bottom: 16px;
}

.info-update-content {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.5;
}

/* ===== DOWNLOADER ===== */
.downloader-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0c;
    z-index: 20000;
    display: none;
    flex-direction: column;
    padding: 18px;
    overflow-y: auto;
    animation: fadeInPage 0.3s ease;
}

.downloader-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.downloader-back {
    width: 40px;
    height: 40px;
    background: rgba(200, 200, 200, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    font-size: 18px;
    cursor: pointer;
}

.downloader-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
    color: #e0e0e0;
}

.downloader-input {
    width: 100%;
    background: #0c0c10;
    border: 1px solid #2a2a30;
    border-radius: 12px;
    padding: 14px 16px;
    color: #e0e0e0;
    font-size: 13px;
    margin-bottom: 16px;
}

.downloader-input:focus {
    outline: none;
    border-color: #c0c0c0;
}

.downloader-btn {
    background: #2a2a30;
    border: none;
    border-radius: 12px;
    padding: 14px;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 18px;
}

.downloader-btn:active {
    transform: scale(0.97);
    background: #3a3a40;
}

.downloader-result {
    display: none;
    background: #15151a;
    border-radius: 16px;
    padding: 16px;
    animation: fadeIn 0.3s ease;
}

.downloader-video {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

.downloader-info-title {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
    color: #e0e0e0;
}

.downloader-info-desc {
    color: #6b7280;
    font-size: 10px;
    margin-bottom: 12px;
}

.download-btn {
    background: #2a2a30;
    border: none;
    border-radius: 10px;
    padding: 12px;
    color: #e0e0e0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    width: 100%;
}

.download-btn:active {
    transform: scale(0.97);
    background: #3a3a40;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.modal-content {
    background: #15151a;
    border: 1px solid rgba(200, 200, 200, 0.1);
    border-radius: 20px;
    padding: 24px;
    width: 90%;
    max-width: 340px;
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-input {
    width: 100%;
    background: #0c0c10;
    border: 1px solid #2a2a30;
    border-radius: 12px;
    padding: 14px;
    color: #e0e0e0;
    font-size: 13px;
    margin: 16px 0;
}

.btn-modal {
    background: #2a2a30;
    border: none;
    border-radius: 12px;
    padding: 14px;
    color: #e0e0e0;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.btn-modal:active {
    transform: scale(0.97);
    background: #3a3a40;
}

/* ===== ZOOM OVERLAY ===== */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 6000;
    display: none;
    justify-content: center;
    align-items: center;
}

.zoom-overlay img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 16px;
    border: 1px solid rgba(200, 200, 200, 0.2);
    animation: zoomAppear 0.3s ease;
}

@keyframes zoomAppear {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e1e24;
    border: 1px solid #3a3a40;
    border-radius: 40px;
    padding: 10px 20px;
    color: #e0e0e0;
    font-size: 12px;
    display: none;
    z-index: 7000;
    animation: notifSlide 0.3s ease;
}

@keyframes notifSlide {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ===== REPORT FULLSCREEN ===== */
.report-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0c;
    z-index: 20001;
    display: none;
    flex-direction: column;
    animation: fadeInPage 0.3s ease;
}

.report-fullscreen-header {
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.report-fullscreen-back {
    width: 40px;
    height: 40px;
    background: rgba(200, 200, 200, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    font-size: 18px;
    cursor: pointer;
}

.report-fullscreen-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-left: 15px;
    color: #ff6b6b;
}

.report-fullscreen-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 25px;
    text-align: center;
}

.report-fullscreen-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 200, 200, 0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 200, 200, 0.1);
}

.report-fullscreen-icon i {
    font-size: 32px;
    color: #ff6b6b;
}

.report-fullscreen-desc {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.5;
}

.report-textarea {
    width: 100%;
    background: #0c0c10;
    border: 1px solid #2a2a30;
    border-radius: 12px;
    padding: 16px;
    color: #e0e0e0;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    min-height: 130px;
    resize: vertical;
    margin-bottom: 20px;
}

.report-textarea:focus {
    outline: none;
    border-color: #c0c0c0;
}

.report-submit-btn {
    width: 100%;
    background: #2a2a30;
    border: none;
    border-radius: 12px;
    padding: 14px;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.report-submit-btn:active {
    transform: scale(0.97);
    background: #3a3a40;
}

/* ===== VPN NOTIFICATION ===== */
.vpn-notification {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a22;
    border: 1px solid #6bcb77;
    border-radius: 40px;
    padding: 10px 20px;
    color: #e0e0e0;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10000;
    animation: slideUp 0.3s ease;
}

.vpn-notification i {
    color: #6bcb77;
    font-size: 14px;
}

/* ===== UTILITY ===== */
.hidden { display: none !important; }
/* ===== DASHBOARD VIDEO CARD ===== */
.dashboard-video-card {
    background: #15151a;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 180px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.dashboard-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.dashboard-video-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #e0e0e0;
    letter-spacing: 1px;
}

/* ===== MODAL INFO AKUN ===== */
.account-modal {
    max-width: 350px;
    padding: 0 !important;
    overflow: hidden;
}

.account-modal-header {
    background: #1a1a22;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.account-modal-avatar {
    width: 60px;
    height: 60px;
    background: rgba(200, 200, 200, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.account-modal-avatar i {
    font-size: 32px;
    color: #c0c0c0;
}

.account-modal-header h3 {
    font-size: 18px;
    color: #e0e0e0;
    font-family: 'Orbitron', sans-serif;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(200, 200, 200, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: 0.2s;
}

.modal-close:active {
    transform: scale(0.9);
    background: #2a2a30;
    color: #e0e0e0;
}

.account-modal-info {
    padding: 20px;
}

.account-modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.account-modal-row:last-child {
    border-bottom: none;
}

.account-modal-label {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-modal-label i {
    width: 18px;
    color: #c0c0c0;
}

.account-modal-value {
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
}

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

.eye-btn-small {
    width: 28px;
    height: 28px;
    background: rgba(200, 200, 200, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #c0c0c0;
    font-size: 12px;
    transition: 0.2s;
}

.eye-btn-small:active {
    transform: scale(0.9);
    background: #2a2a30;
}

.account-modal-footer {
    background: #0c0c10;
    padding: 14px;
    text-align: center;
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.account-modal-footer i {
    color: #6bcb77;
}

/* ===== HEADER BUTTON STYLE (UPDATE) ===== */
.header-btn {
    width: 38px;
    height: 38px;
    background: rgba(200, 200, 200, 0.05);
    border: 1px solid rgba(200, 200, 200, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.header-btn:active {
    transform: scale(0.95);
    background: #2a2a30;
    color: #e0e0e0;
}

.header-btn.logout {
    background: rgba(200, 200, 200, 0.03);
    border-color: rgba(200, 200, 200, 0.08);
    color: #ff6b6b;
}

.header-btn.logout:active {
    background: #3a2a2a;
    color: #ff8888;
}

/* ===== USER NAME LARGE (UPDATE) ===== */
.user-name-large {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(200, 200, 200, 0.15);
    letter-spacing: 1px;
}

/* ===== ONX TEXT (UPDATE) ===== */
.onx-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(200, 200, 200, 0.15);
    text-align: right;
    margin-top: -8px;
    margin-bottom: 8px;
    letter-spacing: 4px;
}
/* ===== UPDATE LIST STYLES ===== */
.update-list-card {
    background: #15151a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 16px;
    margin-top: 8px;
}

.update-list-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    font-weight: 600;
    color: #c0c0c0;
}

.update-list-header i {
    color: #c0c0c0;
    font-size: 16px;
}

.update-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.update-item {
    background: #0c0c10;
    border-radius: 14px;
    padding: 14px;
    border-left: 3px solid #6bcb77;
    animation: fadeInUp 0.3s ease;
}

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

.update-item-title {
    font-weight: 700;
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 6px;
}

.update-item-desc {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.4;
    margin-bottom: 8px;
}

.update-item-date {
    font-size: 10px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.update-item-date i {
    font-size: 10px;
}

.update-empty {
    text-align: center;
    padding: 30px 20px;
    color: #6b7280;
}

.update-empty i {
    font-size: 40px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.update-empty p {
    font-size: 12px;
}
/* ===== UPDATE DETAIL FULLSCREEN (STYLE SAMA KAYAK PREVIEW) ===== */
.update-version-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.update-version-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #2a85ff, #00c3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.update-version-date {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* PREVIEW CARD STYLE UNTUK UPDATE */
.update-preview-card {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 14px;
}

.update-preview-section {
    margin-bottom: 20px;
}

.update-preview-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.update-preview-section-title i {
    color: #2a85ff;
    font-size: 14px;
}

.update-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.update-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #0c0c12;
    border-radius: 12px;
    font-size: 12px;
    border-left: 2px solid #2a85ff;
}

.update-preview-label {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-preview-label i {
    width: 18px;
    color: #2a85ff;
}

.update-preview-value {
    color: #e0e0e0;
    font-weight: 500;
}

.update-changelog-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.update-changelog-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.update-changelog-bullet {
    width: 28px;
    height: 28px;
    background: rgba(42, 133, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a85ff;
    font-size: 12px;
    flex-shrink: 0;
}

.update-changelog-text {
    flex: 1;
}

.update-changelog-title {
    font-weight: 600;
    font-size: 13px;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.update-changelog-desc {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.4;
}

.update-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 10px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.update-footer i {
    color: #2a85ff;
}

/* ===== INFO UPDATE PAGE - FULLSCREEN MODERN ===== */
#infoPage {
    padding: 0 !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #0a0a0c 0%, #111118 100%);
    min-height: 100vh;
}

.info-header {
    background: linear-gradient(135deg, #1a1a22, #15151a);
    padding: 30px 24px;
    border-bottom: 1px solid rgba(42, 133, 255, 0.2);
    margin-bottom: 20px;
    text-align: center;
}

.info-header-icon {
    width: 70px;
    height: 70px;
    background: rgba(42, 133, 255, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(42, 133, 255, 0.3);
}

.info-header-icon i {
    font-size: 36px;
    color: #2a85ff;
}

.info-header-title h2 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #2a85ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.info-header-title p {
    font-size: 13px;
    color: #6b7280;
}

/* Update List Container */
.info-update-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 100px;
}

/* Single Update Item */
.info-update-item {
    background: #15151a;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.4s ease;
}

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

.info-update-item:hover {
    transform: translateY(-2px);
    border-color: rgba(42, 133, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Update Card Header */
.update-card-header {
    background: linear-gradient(135deg, #1a1a22, #12121a);
    padding: 20px;
    border-bottom: 1px solid rgba(42, 133, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.update-icon {
    width: 48px;
    height: 48px;
    background: rgba(42, 133, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.update-icon i {
    font-size: 24px;
    color: #2a85ff;
}

.update-title-section {
    flex: 1;
}

.update-version {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.update-date {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.update-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 9px;
    font-weight: 700;
    color: #10b981;
}

/* Update Card Body */
.update-card-body {
    padding: 20px;
}

.update-description {
    color: #b0b7c5;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.update-changelog {
    background: #0c0c10;
    border-radius: 16px;
    padding: 16px;
}

.changelog-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2a85ff;
    margin-bottom: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.changelog-list {
    list-style: none;
    padding: 0;
}

.changelog-list li {
    padding: 8px 0;
    font-size: 13px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.changelog-list li:last-child {
    border-bottom: none;
}

.changelog-list li i {
    width: 20px;
    font-size: 12px;
    color: #2a85ff;
}

/* Update Footer */
.update-card-footer {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #6b7280;
}

.update-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Loading & Empty State */
.info-loading {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.info-loading i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    color: #2a85ff;
}

.info-empty {
    text-align: center;
    padding: 60px 20px;
}

.info-empty i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
    color: #6b7280;
}

.info-empty h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.info-empty p {
    font-size: 13px;
    color: #6b7280;
}

/* ===== INFO UPDATE LIST STYLE (Seperti Tracker List) ===== */
.info-header-simple {
    padding: 16px;
    margin-bottom: 12px;
}

.info-header-simple h3 {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.info-header-simple h3 i {
    color: #2a85ff;
    margin-right: 8px;
}

.info-header-simple p {
    font-size: 11px;
    color: #6b7280;
}

.info-list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 16px;
    margin-bottom: 100px;
}

.info-list-item {
    background: #1a1a22;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid #2a85ff;
}

.info-list-item:active {
    transform: scale(0.98);
    background: #22222c;
}

.info-list-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-list-icon {
    width: 44px;
    height: 44px;
    background: #0c0c10;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a2a30;
}

.info-list-icon i {
    font-size: 20px;
    color: #2a85ff;
}

.info-list-info {
    flex: 1;
}

.info-list-title {
    font-weight: 700;
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.info-list-date {
    font-size: 10px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

.loading-state {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

.loading-state i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

/* ===== FULLSCREEN DETAIL UPDATE ===== */
.fullscreen-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0c;
    z-index: 20000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.fullscreen-header {
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: #0a0a0c;
    z-index: 10;
}

.close-fullscreen {
    width: 40px;
    height: 40px;
    background: rgba(200, 200, 200, 0.08);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #c0c0c0;
    font-size: 20px;
    transition: 0.2s;
}

.close-fullscreen:active {
    transform: scale(0.9);
    background: #2a2a30;
}

.fullscreen-title {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 700;
    margin-left: 15px;
    color: #2a85ff;
}

/* Update Detail Container */
.update-detail-container {
    padding: 24px 20px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.update-detail-card {
    background: #1a1a22;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}

.update-detail-header {
    background: linear-gradient(135deg, #1a1a22, #12121a);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.update-detail-icon {
    width: 70px;
    height: 70px;
    background: rgba(42, 133, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.update-detail-icon i {
    font-size: 32px;
    color: #2a85ff;
}

.update-detail-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.update-detail-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.update-detail-meta span {
    font-size: 11px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.update-detail-body {
    padding: 24px;
}

.update-description-box {
    background: #0c0c10;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.update-description-box p {
    font-size: 14px;
    color: #b0b7c5;
    line-height: 1.5;
}

.update-changelog-box {
    background: #0c0c10;
    border-radius: 16px;
    padding: 16px;
}

.update-changelog-box h4 {
    font-size: 13px;
    font-weight: 700;
    color: #2a85ff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-changelog-list {
    list-style: none;
    padding: 0;
}

.update-changelog-list li {
    padding: 10px 0;
    font-size: 13px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.update-changelog-list li:last-child {
    border-bottom: none;
}

.update-changelog-list li i {
    width: 20px;
    font-size: 12px;
    color: #2a85ff;
}

.update-detail-footer {
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #6b7280;
}
/* ===== HEADER BADGE ===== */
.header-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #0a0a0c;
}

/* ===== INBOX LIST STYLE ===== */
.inbox-list-container {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 100px;
}

.inbox-item {
    background: #1a1a22;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.inbox-item.unread {
    border-left: 3px solid #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.inbox-item.read {
    border-left: 3px solid #10b981;
}

.inbox-item:active {
    transform: scale(0.98);
}

.inbox-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inbox-item-icon {
    width: 44px;
    height: 44px;
    background: #0c0c10;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a2a30;
}

.inbox-item-icon i {
    font-size: 20px;
    color: #2a85ff;
}

.inbox-item-info {
    flex: 1;
}

.inbox-item-from {
    font-weight: 700;
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 4px;
}

.inbox-item-preview {
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.inbox-item-date {
    font-size: 9px;
    color: #6b7280;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inbox-badge-unread {
    background: #ef4444;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.status-badge {
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 30px;
}

.status-badge.unread {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.status-badge.read {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

/* ===== REPLY DETAIL STYLE ===== */
.reply-detail-container {
    padding: 24px 20px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.reply-detail-card {
    background: #1a1a22;
    border-radius: 24px;
    overflow: hidden;
}

.reply-detail-header {
    background: linear-gradient(135deg, #1a1a22, #12121a);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.reply-detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(42, 133, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.reply-detail-icon i {
    font-size: 28px;
    color: #2a85ff;
}

.reply-detail-header h2 {
    font-size: 16px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 8px;
}

.reply-detail-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 11px;
    color: #6b7280;
}

.reply-detail-body {
    padding: 24px;
}

.reply-message-box {
    background: #0c0c10;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.reply-message-label {
    font-size: 11px;
    color: #2a85ff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reply-message-text {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

.reply-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.reply-footer p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.reply-footer strong {
    color: #2a85ff;
}
/* Google Login Button */
.google-login-btn {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 12px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.google-login-btn i {
    font-size: 18px;
    color: #4285F4;
}

.google-login-btn:active {
    transform: scale(0.97);
}

.login-divider {
    text-align: center;
    margin: 16px 0;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.login-divider span {
    background: #13131a;
    padding: 0 10px;
    font-size: 11px;
    color: #6b7280;
}

/* Role Badge */
.role-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    margin-left: 8px;
    vertical-align: middle;
}

.role-badge.pro {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
}

.role-badge.free {
    background: #6b7280;
    color: #fff;
}

/* Upgrade Banner */
.upgrade-banner {
    background: linear-gradient(135deg, #1e1e2a, #13131a);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 12px 16px;
    animation: pulse 2s infinite;
}

.upgrade-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.upgrade-banner-content i {
    font-size: 28px;
    color: #fbbf24;
}

.upgrade-banner-content div {
    flex: 1;
}

.upgrade-banner-content strong {
    font-size: 13px;
    color: #fbbf24;
}

.upgrade-banner-content small {
    font-size: 10px;
    color: #9ca3af;
}

.upgrade-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    color: #000;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    transition: 0.2s;
}

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

/* Pro-only elements indicator */
.pro-only {
    position: relative;
}

.pro-only::after {
    content: 'PRO';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    font-size: 8px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    z-index: 10;
}