/* ==========================================================
   MASTER STYLE - TRADE INVEST BUZZ (CYBER BLUE & DARK GLASS)
   ========================================================== */

/* 1. Global Setup */
body {
    background-color: #030712;
    background: radial-gradient(circle at 50% -20%, #111827, #030712);
    background-attachment: fixed;
    color: #e2e8f0;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

/* 2. Glassmorphism Card & Containers */
.glass-card, .auth-card {
    background: rgba(10, 15, 30, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

/* 3. Tombol Trading (Primary & Success) */
.btn-primary, .btn-trading {
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #ffffff !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(96, 165, 250, 0.3) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-success {
    background: linear-gradient(135deg, #059669, #047857) !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
}

.btn-primary:hover, .btn-trading:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4) !important;
}

/* 4. Alert Notification Style */
.trader-alert {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.trader-alert-error {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #fca5a5 !important;
}

/* 5. Input Field Style */
.input-field {
    width: 100%;
    background: rgba(3, 7, 18, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 16px !important;
    border-radius: 12px !important;
    color: white !important;
    transition: 0.3s;
}

.input-field:focus {
    border-color: #3b82f6 !important;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* 6. Animations */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 7. Google Translate Mini Bar */
.goog-te-gadget-simple {
    background-color: rgba(10, 15, 30, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 6px 12px !important;
}