/* style.css */
body { 
    background-color: #121212; 
    color: #e5e7eb; 
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.pro-card {
    background-color: #1e1e1e;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #2a2a2a;
}

.input-field {
    width: 100%;
    background-color: #2a2a2a;
    border: 1px solid #333;
    color: white;
    padding: 14px;
    border-radius: 12px;
    outline: none;
    transition: all 0.2s;
}
.input-field:focus {
    border-color: #f97316;
    background-color: #333;
}

.btn-primary {
    background-color: #f97316;
    color: white;
    font-weight: 600;
    padding: 12px;
    border-radius: 12px;
    width: 100%;
    transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1e1e1e;
    border-top: 1px solid #333;
    padding-bottom: env(safe-area-inset-bottom);
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    z-index: 50;
}
.nav-btn {
    color: #6b7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    width: 20%;
}
.nav-btn i { font-size: 20px; margin-bottom: 4px; }
.nav-btn.active { color: #f97316; }

.hidden { display: none !important; }
.loader { border: 3px solid #333; border-top: 3px solid #f97316; border-radius: 50%; width: 30px; height: 30px; animation: spin 1s linear infinite; margin: 20px auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
/* Modal / overlay for verification notice */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display:flex; align-items:center; justify-content:center; z-index:60; }
.modal-card { background: #1e1e1e; padding: 18px; border-radius: 12px; width: min(92%,420px); box-shadow: 0 10px 30px rgba(0,0,0,0.6); border: 1px solid #2a2a2a; }
.modal-title { font-weight:700; font-size:18px; margin-bottom:8px; }
.modal-body { color: #d1d5db; font-size:14px; line-height:1.4; margin-bottom:12px; }
.modal-actions { display:flex; gap:8px; justify-content:flex-end; }
.modal-close { background:#111827; color:#fff; padding:8px 12px; border-radius:8px; border:1px solid #2a2a2a; }
.modal-ok { background:#f97316; color:#fff; padding:8px 12px; border-radius:8px; border:0; }