/* ==============================
   GLOBAL THEME SYSTEM
============================== */

body {
    transition: background 0.4s ease, color 0.4s ease;
    font-family: 'Segoe UI', sans-serif;
}

/* LIGHT THEME */
body.light {
    background: linear-gradient(135deg, #e0f2fe, #ede9fe);
    color: #111827;
}

/* DARK THEME */
body.dark {
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: #ffffff;
}

/* =============================
   NAVBAR
============================= */

.navbar {
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

/* Light navbar */
body.light .navbar {
    background: rgba(255, 255, 255, 0.6);
}

/* Dark navbar */
body.dark .navbar {
    background: rgba(15, 23, 42, 0.8);
}

/* =============================
   NAVBAR BRAND FIX
============================= */

.navbar .navbar-brand {
    font-weight: 700;
    transition: color 0.3s ease;
}

/* Light mode brand */
body.light .navbar .navbar-brand {
    color: #111827 !important;
}

/* Dark mode brand */
body.dark .navbar .navbar-brand {
    color: #ffffff !important;
}

/* =============================
   GLASS CARD
============================= */

.bp-card {
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    transition: 0.3s ease;
}

body.light .bp-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark .bp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================
   BUTTONS
============================= */

.bp-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border: none;
    color: white;
    transition: 0.3s ease;
}

.bp-btn-primary:hover {
    opacity: 0.9;
}

/* =============================
   SMOOTH TRANSITIONS
============================= */

.card,
.btn,
.navbar {
    transition: 0.3s ease;
}

/* =============================
   CLEAN PREMIUM BADGE
============================= */

.premium-badge-clean {
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

/* Light mode */
body.light .premium-badge-clean {
    background: rgba(255, 215, 0, 0.15);
    color: #b45309;
}

/* Dark mode */
body.dark .premium-badge-clean {
    background: rgba(255, 215, 0, 0.08);
    color: #facc15;
    border: 1px solid rgba(255, 215, 0, 0.25);
}

/* Expiry text */
.expiry-text {
    opacity: 0.8;
}

body.dark .expiry-text {
    color: rgba(255,255,255,0.7);
}