/* 
  🏛️ DC-BOT NUCLEAR DESIGN SYSTEM V3 🛰️
  Estética Viper Premium: Dark Mode, Glassmorphism & High-Performance UI.
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');
@import url('../global_nuclear.css');

:root {
    --primary: #25D366; /* VERDE SNIPER FORÇADO */
    --secondary: #0f172a;
    --accent: #00A884;
    --bg-deep: #0B141A;
    --card-bg: #111B21;
    --text-muted: #8696a0;
    --success: #25D366;
    --warning: #f59e0b;
    --border-glow: rgba(37, 211, 102, 0.1);
}

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

body {
    background-color: var(--bg-deep);
    color: #e2e8f0;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- CARDS PREMIUM --- */
.card-premium-v3 {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 24px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.card-premium-v3:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* --- BOTÕES DE ELITE --- */
.btn-gigante {
    background: linear-gradient(135deg, var(--primary), #9f1239);
    color: white;
    padding: 18px 32px;
    border-radius: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
}

.btn-gigante:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.5);
}

.btn-elite {
    background: rgba(255,255,255,0.05);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.75rem;
    border: 1px solid var(--border-glow);
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-elite:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* --- INPUTS DIGITAIS --- */
.bloco-digital { margin-bottom: 20px; }
.label-digital { 
    display: block; 
    font-size: 0.65rem; 
    font-weight: 900; 
    color: var(--text-muted); 
    margin-bottom: 8px; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.input-digital {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1.5px solid var(--border-glow);
    border-radius: 14px;
    padding: 14px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.input-digital:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.15);
}

/* --- BADGES & STATUS --- */
.badge-elite {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- UTILS --- */
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.font-digital { font-family: 'Courier New', monospace; }

/* LOADING ANIMATION */
.custom-loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: conic-gradient(#0000 10%, var(--primary));
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: s3 1s infinite linear;
}
@keyframes s3 {to{transform: rotate(1turn)}}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
