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

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

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

/* ===== FLOATING ANNOUNCEMENT BUTTON ===== */
.floating-announcement-btn {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2a85ff, #0066cc);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(42, 133, 255, 0.4);
    transition: all 0.2s ease;
    animation: heartbeat 1.5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-announcement-btn i { font-size: 26px; color: white; }
.floating-announcement-btn:active { transform: scale(0.9); }

@keyframes heartbeat {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(42, 133, 255, 0.4); }
    50% { transform: scale(1.08); box-shadow: 0 0 25px rgba(42, 133, 255, 0.8); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(42, 133, 255, 0.4); }
}

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

/* ===== ANNOUNCEMENT FULLSCREEN ===== */
.announcement-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    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(42, 133, 255, 0.1);
    border: 1px solid rgba(42, 133, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a85ff;
    font-size: 18px;
    cursor: pointer;
}

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

.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(42, 133, 255, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 2px solid rgba(42, 133, 255, 0.3);
}

.announcement-fullscreen-icon i { font-size: 40px; color: #2a85ff; }
.announcement-fullscreen-text { font-size: 18px; line-height: 1.6; color: #fff; max-width: 90%; }
.announcement-fullscreen-date { margin-top: 30px; font-size: 11px; color: #6b7280; display: flex; align-items: center; gap: 6px; }

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

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

.inbox-fullscreen-back {
    width: 40px;
    height: 40px;
    background: rgba(42, 133, 255, 0.1);
    border: 1px solid rgba(42, 133, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a85ff;
    font-size: 18px;
    cursor: pointer;
}

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

.inbox-fullscreen-content { flex: 1; overflow-y: auto; padding: 16px; }
.inbox-empty { text-align: center; padding: 60px 20px; color: #6b7280; }
.inbox-empty i { font-size: 60px; margin-bottom: 15px; opacity: 0.3; }
.inbox-item {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 3px solid #2a85ff;
}
.inbox-item.unread { background: rgba(42, 133, 255, 0.05); border-left-color: #ef4444; }
.inbox-item-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.inbox-admin { font-weight: 600; font-size: 13px; color: #2a85ff; }
.inbox-date { font-size: 10px; color: #6b7280; }
.inbox-message { font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
.inbox-note { font-size: 10px; color: #f59e0b; padding-top: 8px; margin-top: 8px; border-top: 1px dashed rgba(255, 255, 255, 0.05); }

/* ===== REPORT FULLSCREEN ===== */
.report-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    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(42, 133, 255, 0.1);
    border: 1px solid rgba(42, 133, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a85ff;
    font-size: 18px;
    cursor: pointer;
}

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

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

.report-fullscreen-icon {
    width: 80px;
    height: 80px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.report-fullscreen-icon i { font-size: 40px; color: #ef4444; }
.report-fullscreen-desc { font-size: 13px; color: #9ca3af; margin-bottom: 25px; line-height: 1.5; }
.report-textarea {
    width: 100%;
    background: #0c0c12;
    border: 1px solid #2a2a35;
    border-radius: 16px;
    padding: 16px;
    color: white;
    font-size: 14px;
    min-height: 150px;
    resize: vertical;
    margin-bottom: 20px;
}
.report-textarea:focus { outline: none; border-color: #2a85ff; }
.report-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    border-radius: 16px;
    padding: 14px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

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

.splash-video-card {
    width: 90%;
    max-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(42, 133, 255, 0.3);
    position: relative;
    aspect-ratio: 16 / 9;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.splash-video { width: 100%; height: 100%; display: block; 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: 24px; font-weight: 800; color: #fff; text-shadow: 0 0 20px #2a85ff; margin-bottom: 3px; letter-spacing: 3px; }
.splash-subtitle { font-size: 12px; color: #2a85ff; text-transform: uppercase; letter-spacing: 1.5px; }

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

/* ===== LOGIN CARD ===== */
.login-card {
    background: #13131a;
    border-radius: 28px;
    padding: 30px 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    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: 16px; overflow: hidden; border: 1px solid rgba(42, 133, 255, 0.3); background: #1e1e2a; }
.logo-image { width: 100%; height: 100%; object-fit: cover; }
.logo-text h2 { font-family: 'Orbitron', sans-serif; font-size: 22px; letter-spacing: 2px; color: #fff; margin-bottom: 2px; }
.logo-text p { color: #6b7280; font-size: 11px; }
.input-group { margin-bottom: 16px; }
.input-group label { display: block; font-size: 10px; font-weight: 600; text-transform: uppercase; color: #9ca3af; margin-bottom: 5px; }
.input-field {
    width: 100%;
    background: #0c0c12;
    border: 1px solid #2a2a35;
    border-radius: 16px;
    padding: 14px 18px;
    color: white;
    font-size: 14px;
}
.input-field:focus { outline: none; border-color: #2a85ff; }
.btn-login {
    width: 100%;
    background: linear-gradient(135deg, #2a85ff, #0066cc);
    border: none;
    border-radius: 16px;
    padding: 14px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
}
.btn-login:active { transform: scale(0.97); }
.login-footer { text-align: center; margin-top: 18px; font-size: 12px; color: #6b7280; }
.login-footer span { color: #2a85ff; font-weight: 600; cursor: pointer; }

/* ===== MAINTENANCE PAGE ===== */
.maintenance-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    z-index: 50000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.maintenance-icon { width: 100px; height: 100px; background: rgba(139, 92, 246, 0.1); border-radius: 30px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; border: 2px solid #8b5cf6; animation: pulse 2s infinite; }
.maintenance-icon i { font-size: 50px; color: #8b5cf6; }
.maintenance-title { font-family: 'Orbitron', sans-serif; font-size: 24px; font-weight: 800; color: #8b5cf6; margin-bottom: 12px; }
.maintenance-message { color: #6b7280; font-size: 14px; margin-bottom: 8px; }
.maintenance-sub { color: #4b5563; font-size: 12px; }

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(139, 92, 246, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(139, 92, 246, 0.6); }
}

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

.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: 28px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 15px rgba(42, 133, 255, 0.3);
}
.user-name-large span { color: #2a85ff; }

.header-actions { display: flex; gap: 6px; position: relative; }
.header-btn {
    width: 36px;
    height: 36px;
    background: rgba(42, 133, 255, 0.1);
    border: 1px solid rgba(42, 133, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a85ff;
    font-size: 16px;
    cursor: pointer;
}
.header-btn:active { transform: scale(0.9); background: #2a85ff; color: white; }
.header-btn.logout { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.2); color: #ef4444; }
.header-btn.logout:active { background: #ef4444; color: white; }
.inbox-btn { position: relative; }
.inbox-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1px solid #0a0a0f;
}

.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: 42px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(42, 133, 255, 0.3);
    text-align: right;
    margin-top: -12px;
    letter-spacing: 6px;
}

.server-status-line {
    width: 100%;
    height: 2px;
    margin: 12px 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.server-status-line.online { background: rgba(16, 185, 129, 0.2); }
.server-status-line.offline { background: rgba(239, 68, 68, 0.2); }
.server-status-line.maintenance { background: rgba(139, 92, 246, 0.2); }
.server-status-line::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100%; transform: translateX(-100%); transition: transform 0.3s ease; }
.server-status-line.online::after { transform: translateX(0); background: #10b981; box-shadow: 0 0 10px #10b981; }
.server-status-line.offline::after { transform: translateX(0); background: #ef4444; box-shadow: 0 0 10px #ef4444; }
.server-status-line.maintenance::after { transform: translateX(0); background: #8b5cf6; box-shadow: 0 0 10px #8b5cf6; }

.account-card {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    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: #fff; font-size: 12px; font-weight: 600; }
.expiry-time { font-family: 'Orbitron', monospace; color: #10b981; }
.world-clock { font-family: 'Orbitron', monospace; color: #2a85ff; }

.add-target-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2a85ff, #0066cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin: 0 0 18px auto;
}
.add-target-btn:active { transform: scale(0.9); }

/* ===== VPN PAGE ===== */
.vpn-status-card {
    background: linear-gradient(145deg, #1a1a24, #12121a);
    border: 1px solid rgba(42, 133, 255, 0.2);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.vpn-status-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(42, 133, 255, 0.1);
    border: 2px solid #2a85ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #2a85ff;
}
.vpn-status-icon.connected { background: rgba(16, 185, 129, 0.1); border-color: #10b981; color: #10b981; box-shadow: 0 0 25px #10b981; }
.vpn-status-text #vpnStatusTitle { font-size: 20px; font-weight: 700; margin-bottom: 5px; }
.vpn-status-text #vpnStatusSubtitle { font-size: 13px; color: #6b7280; }
.vpn-connection-card { background: #13131a; border-radius: 24px; padding: 24px; margin-bottom: 20px; }
.vpn-toggle-container { display: flex; justify-content: center; margin: 20px 0 30px; }
.vpn-toggle-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1e1e2a, #12121a);
    border: 3px solid #2a2a35;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.vpn-toggle-btn.active { border-color: #10b981; box-shadow: 0 0 40px rgba(16, 185, 129, 0.5); background: linear-gradient(145deg, #1a2a1a, #122012); }
.vpn-toggle-btn i { font-size: 40px; color: #6b7280; }
.vpn-toggle-btn.active i { color: #10b981; text-shadow: 0 0 20px #10b981; }
.vpn-country-selector { margin-bottom: 20px; }
.vpn-country-label { display: block; font-size: 12px; color: #9ca3af; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.vpn-country-dropdown {
    width: 100%;
    background: #0c0c12;
    border: 1px solid #2a2a35;
    border-radius: 16px;
    padding: 14px 16px;
    color: white;
    font-size: 14px;
    cursor: pointer;
}
.vpn-info { text-align: center; font-size: 12px; color: #6b7280; padding: 10px; background: rgba(42, 133, 255, 0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.vpn-features-card { background: #13131a; border-radius: 24px; padding: 20px; }
.vpn-feature { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.vpn-feature:last-child { border-bottom: none; }
.vpn-feature i { width: 36px; height: 36px; background: rgba(42, 133, 255, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.feature-title { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.feature-desc { font-size: 11px; color: #6b7280; }

/* ===== BOTTOM NAVBAR ===== */
.bottom-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 380px;
    background: rgba(19, 19, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 6px;
    display: flex;
    justify-content: space-around;
    z-index: 100;
}
.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    border-radius: 30px;
    cursor: pointer;
    color: #6b7280;
}
.nav-item.active { background: rgba(42, 133, 255, 0.1); color: #2a85ff; }
.nav-item i { font-size: 20px; margin-bottom: 2px; }
.nav-item span { font-size: 9px; font-weight: 600; }

/* ===== PAGES ===== */
.page { display: none; animation: slideIn 0.3s ease; margin-bottom: 100px; padding-bottom: 20px; }
.page.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* ===== TRACKER ===== */
.tracker-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.tracker-title { font-size: 13px; font-weight: 600; color: #9ca3af; }
.tracker-title i { color: #2a85ff; margin-right: 5px; }
.tracker-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.tracker-item {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 14px;
    cursor: pointer;
    border-left: 3px solid transparent;
}
.tracker-item.has-data { border-left-color: #10b981; }
.tracker-item:active { transform: scale(0.98); }
.tracker-item-header { display: flex; align-items: center; gap: 10px; }
.tracker-icon {
    width: 40px;
    height: 40px;
    background: #0c0c12;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2a2a35;
    position: relative;
}
.tracker-icon i { font-size: 18px; color: #2a85ff; }
.data-badge { position: absolute; top: -3px; right: -3px; width: 8px; height: 8px; background: #10b981; border-radius: 50%; border: 2px solid #13131a; }
.tracker-info { flex: 1; }
.tracker-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.tracker-desc { font-size: 9px; color: #6b7280; }

/* ===== PREVIEW ===== */
.preview-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 8px 0; }
.btn-back { width: 40px; height: 40px; background: rgba(42, 133, 255, 0.1); border: 1px solid rgba(42, 133, 255, 0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #2a85ff; font-size: 18px; cursor: pointer; }
.preview-title { font-size: 16px; font-weight: 700; }
.preview-card { background: #13131a; border-radius: 22px; padding: 20px; margin-bottom: 14px; }
.preview-section { margin-bottom: 18px; }
.preview-section-title { font-size: 11px; font-weight: 600; color: #9ca3af; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.preview-grid { display: flex; flex-direction: column; gap: 8px; }
.preview-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: #0c0c12; border-radius: 12px; font-size: 11px; }
.preview-label { color: #6b7280; display: flex; align-items: center; gap: 6px; }
.preview-value { color: #2a85ff; font-weight: 600; }
.preview-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 8px; }
.preview-photo { aspect-ratio: 1; background: #0c0c12; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #2a85ff; font-size: 20px; cursor: pointer; overflow: hidden; }
.preview-photo img { width: 100%; height: 100%; object-fit: cover; }
.map-button { background: #4285F4; color: white; border: none; border-radius: 12px; 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%; }
.preview-actions { display: flex; gap: 8px; margin-top: 18px; }
.preview-btn {
    flex: 1;
    background: rgba(42, 133, 255, 0.1);
    border: 1px solid rgba(42, 133, 255, 0.2);
    border-radius: 12px;
    padding: 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}
.preview-btn.delete { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.2); color: #ef4444; }

/* ===== TOOLS ===== */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 8px; }
.tool-card { background: #13131a; border-radius: 18px; padding: 14px 6px; text-align: center; cursor: pointer; }
.tool-icon { width: 42px; height: 42px; background: #0c0c12; border-radius: 12px; margin: 0 auto 6px; display: flex; align-items: center; justify-content: center; border: 1px solid #2a2a35; }
.tool-icon i { font-size: 22px; color: #2a85ff; }
.tool-card h4 { font-size: 11px; margin-bottom: 2px; }
.tool-card p { font-size: 7px; color: #6b7280; }

/* ===== DEVICE ===== */
.device-card { background: #13131a; border-radius: 22px; padding: 20px; margin-top: 8px; }
.device-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.device-icon { width: 60px; height: 60px; background: #0c0c12; border-radius: 18px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(42, 133, 255, 0.2); }
.device-icon i { font-size: 28px; color: #2a85ff; }
.device-title h3 { font-size: 16px; margin-bottom: 3px; }
.device-title p { color: #6b7280; font-size: 11px; }
.device-specs { display: flex; flex-direction: column; gap: 10px; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.spec-label { color: #6b7280; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.spec-label i { width: 18px; color: #2a85ff; }
.spec-value { font-weight: 600; font-size: 13px; }

/* ===== CONTACT ===== */
.video-card { background: #13131a; border-radius: 18px; overflow: hidden; position: relative; height: 160px; margin-bottom: 18px; }
.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: 14px; font-weight: 700; margin-bottom: 2px; }
.video-subtitle { font-size: 10px; color: #2a85ff; }
.contact-section { background: #13131a; border-radius: 18px; margin-bottom: 10px; overflow: hidden; }
.contact-header { padding: 14px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: rgba(42, 133, 255, 0.05); }
.contact-header-left { display: flex; align-items: center; gap: 8px; }
.contact-header-left i { color: #2a85ff; font-size: 16px; }
.contact-header-left span { font-weight: 600; font-size: 13px; }
.contact-header i.fa-chevron-down { color: #6b7280; transition: transform 0.3s ease; }
.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: #0c0c12; }
.contact-section.open .contact-content { max-height: 400px; padding: 14px; }
.contact-item { display: flex; align-items: center; gap: 10px; padding: 10px; background: #13131a; border-radius: 12px; margin-bottom: 6px; text-decoration: none; color: #fff; }
.contact-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-icon.whatsapp { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.contact-icon.telegram { background: rgba(0, 136, 204, 0.1); color: #0088cc; }
.contact-info { flex: 1; }
.contact-name { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.contact-desc { font-size: 9px; color: #6b7280; }

/* ===== DOWNLOADER ===== */
.downloader-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    z-index: 20000;
    display: none;
    flex-direction: column;
    padding: 18px;
    overflow-y: auto;
}
.downloader-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.03); }
.downloader-back { width: 40px; height: 40px; background: rgba(42, 133, 255, 0.1); border: 1px solid rgba(42, 133, 255, 0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #2a85ff; font-size: 18px; cursor: pointer; }
.downloader-title { font-family: 'Orbitron', sans-serif; font-size: 16px; font-weight: 600; flex: 1; }
.downloader-input { width: 100%; background: #0c0c12; border: 1px solid #2a2a35; border-radius: 16px; padding: 14px 18px; color: white; font-size: 13px; margin-bottom: 18px; }
.downloader-btn { background: linear-gradient(135deg, #2a85ff, #0066cc); border: none; border-radius: 16px; padding: 14px; color: white; font-weight: 600; font-size: 14px; cursor: pointer; width: 100%; margin-bottom: 18px; }
.downloader-result { display: none; background: #13131a; border-radius: 22px; padding: 18px; margin-top: 8px; }
.downloader-video { width: 100%; border-radius: 14px; margin-bottom: 12px; }
.downloader-info-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.downloader-info-desc { color: #6b7280; font-size: 11px; margin-bottom: 12px; }
.download-btn { background: #10b981; border: none; border-radius: 14px; padding: 12px; color: white; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; cursor: pointer; width: 100%; }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}
.modal-content {
    background: #13131a;
    border: 1px solid rgba(42, 133, 255, 0.3);
    border-radius: 22px;
    padding: 25px;
    width: 90%;
    max-width: 340px;
}
.modal-content h3 { text-align: center; margin-bottom: 18px; color: #2a85ff; font-size: 16px; }
.modal-input { width: 100%; background: #0c0c12; border: 1px solid #2a2a35; border-radius: 14px; padding: 14px; color: white; font-size: 13px; margin: 18px 0; }
.btn-modal { background: linear-gradient(135deg, #2a85ff, #0066cc); border: none; border-radius: 14px; padding: 12px; color: white; font-weight: 600; cursor: pointer; width: 100%; margin-top: 12px; }

/* ===== VPN MODAL ===== */
.vpn-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: none;
    justify-content: center;
    align-items: center;
}
.vpn-modal-card {
    width: 90%;
    max-width: 380px;
    background: linear-gradient(145deg, #1e1e2a, #13131a);
    border: 2px solid #ff4444;
    border-radius: 32px;
    padding: 30px 25px;
    text-align: center;
}
.vpn-modal-icon { width: 90px; height: 90px; background: rgba(255, 68, 68, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 3px solid #ff4444; }
.vpn-modal-icon i { font-size: 45px; color: #ff4444; }
.vpn-modal-title { font-family: 'Orbitron', sans-serif; font-size: 20px; font-weight: 800; color: #ff4444; margin-bottom: 12px; }
.vpn-modal-message { font-size: 14px; color: #aaa; line-height: 1.6; 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: #0c0c12; border: 2px solid #2a2a35; border-radius: 16px; padding: 14px 16px; color: white; font-size: 14px; cursor: pointer; }
.vpn-modal-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.vpn-modal-btn { width: 100%; padding: 16px; border-radius: 30px; font-weight: 700; font-size: 14px; cursor: pointer; border: none; display: flex; align-items: center; justify-content: center; gap: 8px; }
.vpn-modal-btn.primary { background: linear-gradient(135deg, #2a85ff, #0066cc); color: white; }
.vpn-modal-btn.secondary { background: transparent; border: 2px solid #2a2a35; 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); }
.vpn-notification {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a24;
    border: 1px solid #10b981;
    border-radius: 40px;
    padding: 12px 24px;
    color: white;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
}

/* ===== ZOOM & NOTIFICATION ===== */
.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: 18px; }
.notification {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e1e2a;
    border: 1px solid #2a85ff;
    border-radius: 30px;
    padding: 10px 20px;
    color: white;
    font-size: 12px;
    display: none;
    z-index: 7000;
}

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

/* ===== INBOX CARD STYLE ===== */
.inbox-card {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.inbox-card.unread {
    background: rgba(42, 133, 255, 0.05);
    border-left: 3px solid #2a85ff;
}

/* Admin Section */
.inbox-admin-section {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inbox-admin-icon {
    width: 50px;
    height: 50px;
    background: rgba(42, 133, 255, 0.15);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border: 1px solid rgba(42, 133, 255, 0.3);
}

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

.inbox-admin-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2a85ff;
    margin-bottom: 5px;
}

.inbox-date {
    font-size: 10px;
    color: #6b7280;
}

/* Report Section (pesan user) */
.inbox-report-section {
    background: #0c0c12;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 16px;
}

.inbox-report-label {
    font-size: 11px;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.inbox-report-message {
    font-size: 13px;
    color: #d1d5db;
    line-height: 1.5;
    word-break: break-word;
}

/* Answer Section (balasan admin) */
.inbox-answer-section {
    background: rgba(42, 133, 255, 0.08);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 16px;
    border-left: 3px solid #2a85ff;
}

.inbox-answer-label {
    font-size: 11px;
    font-weight: 600;
    color: #2a85ff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.inbox-answer-message {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
    word-break: break-word;
}

/* Note Section */
.inbox-note-section {
    background: rgba(139, 92, 246, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
}

.inbox-note-label {
    font-size: 10px;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.inbox-note-message {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.4;
    word-break: break-word;
}