* {
    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);
    }
}

/* Notification badge pada floating button */
.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 MODAL ===== */
.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 cubic-bezier(0.4, 0, 0.2, 1);
}

.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;
    transition: 0.2s;
}

.announcement-fullscreen-back:active {
    transform: scale(0.9);
    background: #2a85ff;
    color: white;
}

.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%;
    word-wrap: break-word;
    white-space: pre-wrap;
}

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

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

.announcement-empty i {
    font-size: 50px;
    margin-bottom: 15px;
    opacity: 0.3;
}

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

/* ===== VPN MODAL (TENGAH LAYAR) ===== */
.vpn-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-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: linear-gradient(145deg, #1e1e2a, #13131a);
    border: 2px solid #ff4444;
    border-radius: 32px;
    padding: 30px 25px;
    box-shadow: 0 30px 60px rgba(255, 68, 68, 0.3), 0 0 0 2px rgba(255, 68, 68, 0.2) inset;
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

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

.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;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.5);
}

.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;
    letter-spacing: 1px;
}

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

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

.vpn-modal-country-label {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
    margin-left: 5px;
    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;
    font-family: 'Inter', sans-serif;
    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' stroke-linecap='round' stroke-linejoin='round'%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;
    transition: all 0.2s;
}

.vpn-modal-country-select:focus {
    outline: none;
    border-color: #2a85ff;
}

.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;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vpn-modal-btn.primary {
    background: linear-gradient(135deg, #2a85ff, #0066cc);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(42, 133, 255, 0.4);
}

.vpn-modal-btn.primary:active {
    transform: scale(0.97);
    box-shadow: 0 5px 10px -5px rgba(42, 133, 255, 0.6);
}

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

.vpn-modal-btn.secondary:active {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(0.97);
}

.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-modal-footer i {
    color: #10b981;
}

/* ===== 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; }
}

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

.splash-video-overlay.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

/* ===== 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%);
    transition: all 0.3s ease;
    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);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    background: #1e1e2a;
    flex-shrink: 0;
}

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

.logo-text {
    flex: 1;
}

.logo-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 15px rgba(42, 133, 255, 0.5);
    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;
    margin-left: 4px;
    letter-spacing: 0.5px;
}

.input-field {
    width: 100%;
    background: #0c0c12;
    border: 1px solid #2a2a35;
    border-radius: 16px;
    padding: 14px 18px;
    color: white;
    font-size: 14px;
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: #2a85ff;
    background: #11111a;
}

.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;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    box-shadow: 0 10px 20px -5px rgba(42, 133, 255, 0.4);
}

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

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

.login-footer span {
    color: #2a85ff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

/* ===== 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;
    padding: 20px;
    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;
    letter-spacing: 2px;
}

.maintenance-message {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
    max-width: 280px;
}

.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;
    animation: fadeIn 0.3s ease;
    z-index: 2000;
    background: #0a0a0f;
}

/* HEADER */
.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;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 15px rgba(42, 133, 255, 0.3);
    line-height: 1.1;
}

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

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

.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;
    transition: all 0.2s;
}

.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;
}

.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 */
.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 ===== */
.account-card {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 18px;
    position: relative;
}

.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;
    display: flex;
    align-items: center;
    gap: 6px;
}

.password-field {
    display: flex;
    align-items: center;
    gap: 6px;
}

.eye-btn {
    width: 28px;
    height: 28px;
    background: rgba(42, 133, 255, 0.1);
    border: 1px solid rgba(42, 133, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a85ff;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.eye-btn:active {
    transform: scale(0.9);
    background: #2a85ff;
    color: white;
}

.expiry-time {
    font-family: 'Orbitron', monospace;
    color: #10b981;
    font-size: 12px;
}

.world-clock {
    font-family: 'Orbitron', monospace;
    color: #2a85ff;
    font-size: 12px;
}

/* TOMBOL TAMBAH TARGET */
.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;
    transition: 0.2s;
    box-shadow: 0 5px 12px rgba(42, 133, 255, 0.3);
    margin: 0 0 18px auto;
}

.add-target-btn:active {
    transform: scale(0.9);
}

/* ===== VPN PAGE STYLES ===== */
.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;
    box-shadow: 0 15px 30px -10px rgba(42, 133, 255, 0.2);
}

.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;
    transition: all 0.3s;
}

.vpn-status-icon.connected {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
    box-shadow: 0 0 25px #10b981;
    animation: pulse 2s infinite;
}

.vpn-status-text {
    flex: 1;
}

.vpn-status-text #vpnStatusTitle {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

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

.vpn-status-text #vpnStatusSubtitle span {
    color: #2a85ff;
    font-weight: 600;
}

.vpn-connection-card {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    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;
    transition: all 0.3s;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.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;
    transition: all 0.3s;
}

.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;
    font-family: 'Inter', sans-serif;
    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' stroke-linecap='round' stroke-linejoin='round'%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-country-dropdown:focus {
    outline: none;
    border-color: #2a85ff;
}

.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-info i {
    color: #10b981;
}

.vpn-features-card {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    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;
}

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

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

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

.video-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #fff;
}

.video-subtitle {
    font-size: 10px;
    color: #2a85ff;
}

/* 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;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    z-index: 100;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    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;
}

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

/* CONTENT PAGES */
.page {
    display: none;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 100px;
    padding-bottom: 20px;
    overflow-y: auto;
}

.page.active {
    display: block;
}

#vpnPage {
    margin-bottom: 120px;
    padding-bottom: 30px;
}

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

/* TRACKER PAGE */
.tracker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

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

.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;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.tracker-item.has-data {
    border-left-color: #10b981;
}

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

.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;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* PREVIEW PAGE */
.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;
    transition: 0.2s;
}

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

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

.preview-card {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    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;
    border: 1px solid rgba(255, 255, 255, 0.03);
    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;
    transition: 0.2s;
}

.preview-btn.delete {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

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

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

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

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

.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;
}

/* DOWNLOADER PAGE */
.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;
    animation: fadeInPage 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.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;
    transition: 0.2s;
}

.downloader-back:active {
    transform: scale(0.9);
    background: #2a85ff;
    color: white;
}

.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;
    transition: 0.2s;
}

.downloader-input:focus {
    outline: none;
    border-color: #2a85ff;
    background: #11111a;
}

.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;
    transition: 0.2s;
}

.downloader-btn:active {
    transform: scale(0.97);
    opacity: 0.9;
}

.downloader-result {
    display: none;
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 22px;
    padding: 18px;
    margin-top: 8px;
    animation: fadeIn 0.3s ease;
}

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

.downloader-info {
    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;
    transition: 0.2s;
    width: 100%;
}

.download-btn:active {
    transform: scale(0.97);
    opacity: 0.9;
}

/* DEVICE PAGE */
.device-card {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    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 DROPDOWN */
.contact-section {
    background: #13131a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    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);
    transition: 0.2s;
}

.contact-header:active {
    background: rgba(42, 133, 255, 0.1);
}

.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 cubic-bezier(0.4, 0, 0.2, 1);
    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;
    transition: 0.2s;
}

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

.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-icon.tiktok {
    background: #000;
    color: #fff;
}

.contact-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
    color: white;
}

.contact-info {
    flex: 1;
}

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

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

/* 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;
    animation: modalAppear 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.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: 14px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

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

/* 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: 18px;
    border: 2px solid #2a85ff;
    animation: zoomAppear 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* NOTIFICATION */
.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;
    animation: notifSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hidden { 
    display: none !important; 
}

/* ASCII ART STYLE */
.contact-content .monospace-text {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: #d1d5db;
    white-space: pre-line;
}

.contact-content .server-status-mini {
    margin-top: 12px;
    padding: 10px;
    background: #0c0c12;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
}

.contact-content .status-dot-mini {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: all 0.3s;
}

.contact-content .status-dot-mini.online {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.contact-content .status-dot-mini.offline {
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
}

.contact-content .status-dot-mini.maintenance {
    background: #8b5cf6;
    box-shadow: 0 0 8px #8b5cf6;
}

.contact-content .status-text-mini {
    font-weight: 600;
    font-size: 12px;
}

.contact-content .status-text-mini.online {
    color: #10b981;
}

.contact-content .status-text-mini.offline {
    color: #ef4444;
}

.contact-content .status-text-mini.maintenance {
    color: #8b5cf6;
}

/* NOTIFIKASI VPN */
.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;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10000;
    animation: slideUp 0.3s ease;
}

.vpn-notification i {
    color: #10b981;
    font-size: 18px;
}

/* ===== REPORT FULLSCREEN MODAL ===== */
.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 cubic-bezier(0.4, 0, 0.2, 1);
}

.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;
    transition: 0.2s;
}

.report-fullscreen-back:active {
    transform: scale(0.9);
    background: #2a85ff;
    color: white;
}

.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;
    font-family: 'Inter', sans-serif;
    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;
    transition: 0.2s;
}

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

/* CSS untuk report button section (tanpa dropdown) */
.report-button-section .contact-content {
    display: none;
}

.report-button-section .contact-header i.fa-chevron-right {
    transition: transform 0.3s ease;
}

/* Animasi fadeInPage (jika belum ada) */
@keyframes fadeInPage {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}