/* =========================================
   1. VARIABLES & THEME SETUP (Foundation)
   ========================================= */
:root {
    /* Light Theme */
    --bg-body: #f0f4f8;
    --bg-card: rgba(255, 255, 255, 0.95);
    /* Thoda solid kiya speed ke liye */
    --bg-glass: rgba(255, 255, 255, 0.85);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-glow: rgba(79, 70, 229, 0.3);
    --accent: #8b5cf6;
    --border: rgba(0, 0, 0, 0.08);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    --gradient-card: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --nav-height: 60px;
}

[data-theme="dark"] {
    /* Dark Theme */
    --bg-body: #0b0e14;
    --bg-card: rgba(30, 41, 59, 0.8);
    /* Kam transparent for performance */
    --bg-glass: rgba(15, 23, 42, 0.95);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #6366f1;
    --primary-hover: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.25);
    --border: rgba(255, 255, 255, 0.08);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --shadow-sm: none;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 30px -3px rgba(0, 0, 0, 0.6);
}

/* =========================================
   2. GLOBAL RESET & BODY
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-body);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 20%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input {
    border: none;
    outline: none;
}

/* Custom Scrollbar for Sidebar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 10px;
    opacity: 0.3;
}

/* =========================================
   3. LAYOUT & SIDEBAR (Fixed Scroll Issue)
   ========================================= */
.app-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: var(--glass-border);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 50;
    left: 0;
    top: 0;

    /* ⚡ CRITICAL FIX: Isse neeche ke items dikhenge */
    overflow-y: auto;
    overflow-x: hidden;
}

.brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
    padding-bottom: 20px;
    /* Thoda space niche */
}

.nav-item {
    padding: 0.9rem 1.2rem;
    border-radius: 14px;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    transform: translateX(5px);
}

/* ACTIVE STATE */
.nav-item.active {
    background: linear-gradient(90deg, rgba(79, 70, 229, 0.15) 0%, transparent 100%);
    color: var(--primary);
    font-weight: 600;
    border-left: 3px solid var(--primary);
    border-radius: 4px 14px 14px 4px;
    box-shadow: none;
}

.nav-item.active i {
    filter: drop-shadow(0 0 8px var(--primary));
    transform: scale(1.1);
}

.nav-item i {
    font-size: 1.35rem;
}

/* =========================================
   ⚡ RECHARGE BUTTON "NEON BLINK" EFFECT
   (No Background Change - Only Light Effect)
   ========================================= */

/* 1. Desktop & Mobile Dono ke liye Base Style */
a[href*="recharge"], 
.mobile-nav-item[href*="recharge"] {
    background: transparent !important; /* Pura background hata diya */
    box-shadow: none !important;        /* Shadow hata di */
    border: 1px solid rgba(245, 158, 11, 0.2); /* Halka sa border taaki alag dikhe */
    color: var(--text-muted) !important; /* Default text color */
    overflow: visible;
}

/* 2. Sirf ICON (Bijli) ko Target karenge (Jhap Jhap Effect) */
a[href*="recharge"] i, 
.mobile-nav-item[href*="recharge"] i {
    color: #f59e0b; /* Gold Color */
    text-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
    /* Animation: 1.5 second ki loop */
    animation: lightBlink 1.5s infinite ease-in-out; 
}

/* 3. Text ko normal rakho, ya thoda highlight karo */
a[href*="recharge"]:hover,
.mobile-nav-item[href*="recharge"]:hover {
    border-color: #f59e0b;
    color: var(--text-main) !important;
}

/* 🔥 ANIMATION KEYFRAMES (Jhap Jhap Logic) */
@keyframes lightBlink {
    0% {
        opacity: 0.6;
        transform: scale(1);
        text-shadow: 0 0 5px rgba(245, 158, 11, 0.2);
    }
    50% {
        opacity: 1;
        transform: scale(1.2); /* Thoda bada hoga */
        text-shadow: 0 0 20px rgba(245, 158, 11, 1), 0 0 10px #ffffff; /* Tez Chamak */
        color: #fbbf24; /* Bright Yellow */
    }
    100% {
        opacity: 0.6;
        transform: scale(1);
        text-shadow: 0 0 5px rgba(245, 158, 11, 0.2);
    }
}

/* =========================================
   📱 MOBILE SPECIFIC TWEAKS
   ========================================= */
@media (max-width: 768px) {
    /* Mobile Recharge Icon thoda bada */
    .mobile-nav-item[href*="recharge"] i {
        font-size: 1.6rem;
        margin-bottom: 2px;
    }
    
    /* Agar SOON badge lagana ho CSS se (Optional) */
    .mobile-nav-item[href*="recharge"]::after {
        content: 'SOON';
        position: absolute;
        top: 5px;
        right: 15px;
        font-size: 8px;
        background: #f59e0b;
        color: black;
        padding: 2px 4px;
        border-radius: 4px;
        font-weight: 800;
        animation: none; /* Badge blink nahi karega */
    }
}

/* =========================================
   🛠️ ACTIVE TAB COLOR FIX
   ========================================= */
/* Active hone par Icon ka color Primary hona chahiye (Except Recharge) */
.nav-item.active i,
.mobile-nav-item.active i {
    color: white; /* Active icon white */
}
/* Lekin Recharge wala active hone par bhi Gold hi rahega */
a[href*="recharge"].active i,
.mobile-nav-item[href*="recharge"].active i {
    color: #f59e0b !important;
    animation: lightBlink 1.5s infinite ease-in-out !important;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 2.5rem;
    padding-bottom: 100px;
}

/* Topbar */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.page-title h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.topbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-btn {
    background: var(--bg-card);
    border: var(--glass-border);
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

/* =========================================
   4. COMPONENTS
   ========================================= */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(79, 70, 229, 0.3);
}

/* Balance Card */
.balance-card {
    background: var(--gradient-card);
    color: white;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.4);
}

.balance-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    animation: cardShine 6s infinite;
}

@keyframes cardShine {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.balance-card .amount {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.balance-card .coin-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

/* Inputs & Buttons */
.form-input {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-body);
    color: var(--text-main);
    font-size: 1rem;
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #4338ca 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    filter: brightness(1.1);
}

/* Auth Pages */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    background: var(--bg-body);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

/* =========================================
   5. PAGE SPECIFIC & FIXES
   ========================================= */
/* List Items */
.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
}

.list-item:last-child {
    border-bottom: none;
}

.list-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ✅ STATS GRID (Chipakna Fix) */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 18px;
    border: var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    /* Gap fix */
    min-width: 0;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--bg-body);
    color: var(--primary);
}

/* Wheel, Wallet & Refer CSS (Same as yours, keeping logic intact) */
.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 30px auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    background: conic-gradient(#ef4444 0deg 45deg, #3b82f6 45deg 90deg, #10b981 90deg 135deg, #f59e0b 135deg 180deg, #8b5cf6 180deg 225deg, #ec4899 225deg 270deg, #14b8a6 270deg 315deg, #f97316 315deg 360deg);
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    display: grid;
    place-items: center;
    font-size: 24px;
}

.pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 35px solid #1f2937;
    z-index: 20;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
}

.spin-btn {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    padding: 14px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    transition: transform 0.2s;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.spin-btn:active {
    transform: scale(0.95);
}

/* Wallet Header */
.wallet-header-bg {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    text-align: center;
    position: relative;
    margin: -2.5rem -2.5rem 0 -2.5rem;
    padding: 3rem 2rem 6rem 2rem;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.floating-stats {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 1.8rem;
    margin-top: -50px;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    border: var(--glass-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    backdrop-filter: blur(20px);
}

.stat-separator {
    width: 1px;
    background: var(--border);
    position: absolute;
    left: 50%;
    top: 20%;
    bottom: 20%;
}

.spent-bar-container {
    grid-column: span 2;
    background: var(--bg-body);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border: 1px solid var(--border);
}

/* Virtual Card */
.virtual-card {
    background: linear-gradient(120deg, #0f172a 0%, #334155 100%);
    border-radius: 24px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.virtual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin: 1.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* Refer & Footer */
.refer-box {
    background: rgba(79, 70, 229, 0.05);
    border: 2px dashed var(--primary);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.refer-code {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary);
}

.app-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================================
   6. MOBILE OPTIMIZATION (Speed & Visibility Fix)
   ========================================= */

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

.mobile-header {
    display: none;
}

.overlay {
    display: none;
}

@media (max-width: 768px) {

    /* Sidebar Animation & Fixes */
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 280px;
        /* Mobile drawer pe shadow taaki alag dikhe */
        box-shadow: none;
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    }

    .main-content {
        margin-left: 0;
        padding: 1rem;
        /* Padding side se kam ki taaki content kate nahi */
        padding-top: 0;
        padding-bottom: 100px;
    }

    .topbar {
        display: none;
    }

    /* 🔥 SPEED FIX: Mobile Header (Solid BG, No Blur) */
    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.2rem;
        background: var(--bg-card);
        /* Solid background for speed */
        position: sticky;
        top: 0;
        z-index: 40;
        border-bottom: 1px solid var(--border);
    }

    /* 🔥 SPEED FIX: Bottom Nav (Solid BG, No Blur) */
    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        /* Solid background for speed */
        border-top: 1px solid var(--border);
        justify-content: space-around;
        padding: 0.8rem 0;
        z-index: 40;
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: var(--text-muted);
        font-size: 0.75rem;
        font-weight: 500;
        width: 100%;
        /* Click area badhaya */
    }

    .mobile-nav-item i {
        font-size: 1.4rem;
        transition: 0.2s;
    }

    .mobile-nav-item.active {
        color: var(--primary);
        font-weight: 700;
    }

    .mobile-nav-item.active i {
        transform: translateY(-3px);
        filter: drop-shadow(0 0 8px var(--primary));
    }

    /* Overlay */
    .overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 45;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Sizes */
    .auth-card,
    .card {
        width: 100% !important;
        padding: 1.5rem !important;
    }

    .form-input {
        font-size: 16px !important;
        padding: 14px !important;
    }

    .btn-primary {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    .wallet-header-bg {
        margin: -1rem -1rem 0 -1rem;
        padding: 2rem 1.5rem 5rem 1.5rem;
        border-radius: 0 0 30px 30px;
    }

    .floating-stats {
        padding: 1.2rem;
        gap: 0.8rem;
        margin-top: -60px;
    }

    .wheel-container {
        width: 280px;
        height: 280px;
    }

    .desktop-only-btn {
        display: none !important;
    }

    .balance-card .amount {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 1.5rem;
    }

}



/* waallt new  */
/* --- EXCHANGE ZONE STYLES --- */
.exchange-card {
    border: 1px solid rgba(245, 158, 11, 0.3); /* Gold Border */
    background: linear-gradient(to bottom, var(--bg-card), rgba(245, 158, 11, 0.05));
}

.exchange-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-box-gold {
    width: 50px; height: 50px;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b; /* Gold Color */
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}

.rate-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cost-display {
    background: var(--bg-body);
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px dashed var(--border);
}

.cost-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ef4444; /* Red color to show deduction */
}

/* Exchange Button */
.btn-exchange {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    background: #f59e0b;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: 0.3s;
    border: none;
}

.btn-exchange:disabled {
    background: var(--border);
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-exchange:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}




/* --- ✨ WEBSITE THEME HIGHLIGHT ICON MOBILE ICON HOME PAGE --- */
.highlight-icon {
    width: 50px;
    height: 50px;
    
    /* 🔵 Website Ka Main Color (Primary) */
    background: rgba(79, 70, 229, 0.1);  /* Halka Blue Background */
    color: var(--primary);               /* Main Theme Color (Text/Icon) */
    border: 1px solid rgba(79, 70, 229, 0.3); /* Halka Border */
    
    /* 📐 Center Alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    
    /* 🔥 Glow Effect (Blue) */
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
    
    /* ⚡ Pulse Animation (Dhadkan) */
    animation: themePulse 2s infinite ease-in-out;
}

/* 🌀 Animation Keyframes (Blue Glow) */
@keyframes themePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0); /* Fade out */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}


/* --- ✨ SOON BADGE STYLE --- */
.badge-soon {
    /* 🎨 Golden Background */
    background: linear-gradient(45deg, #FFD700, #f59e0b); 
    color: #000; /* Text Black rakha hai taaki Gold pe dikhe */
    
    /* 📐 Size & Spacing */
    padding: 2px 8px;
    border-radius: 20px; /* Gol Kinare */
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 8px;
    
    /* 🔥 Chamak (Glow) */
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
    
    /* ⚡ Jhap Jhap Animation */
    animation: blinkGold 1.2s infinite ease-in-out;
}

/* Animation Keyframes */
@keyframes blinkGold {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); } /* Thoda halka aur chota hoga */
    100% { opacity: 1; transform: scale(1); }
}

/* --- ✨ NEW CONVERT BUTTON HIGHLIGHT --- */
.btn-convert-new {
    position: relative; /* Badge lagane ke liye zaroori hai */
    margin-top: 1.5rem !important; /* Thoda gap */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    
    /* 🔥 Alag Color (Gradient) */
    background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3); /* Purple Glow */
    
    /* ⚡ Animation */
    animation: btnPulse 2s infinite ease-in-out;
}


/* --- 🏷️ "NEW" BADGE (Button ke upar) CONVERTER BUTTON HOME PAGE --- */
.btn-convert-new::after {
    content: "NEW ✨";  /* Ye text dikhega */
    position: absolute;
    top: -10px;        /* Button ke upar */
    right: -5px;       /* Right side */
    
    background: #f59e0b; /* Gold Background */
    color: #000;         /* Black Text */
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    
    /* Badge ko hilaana */
    animation: badgeBounce 1s infinite alternate;
}

/* --- ANIMATIONS --- */
@keyframes btnPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(147, 51, 234, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(147, 51, 234, 0); }
}

@keyframes badgeBounce {
    from { transform: translateY(0); }
    to { transform: translateY(-3px); }
}


/* --- SECTION TITLE STYLE --- */
.section-title {
    font-weight: 700;          /* Text ko Mota (Bold) karega */
    font-size: 1.1rem;         /* Size thoda bada */
    color: var(--text-main);   /* Main text color (Dark/Light theme friendly) */
    
    /* Gap (Spacing) */
    margin-top: 1.5rem;        /* Upar se gap */
    margin-bottom: 1rem;       /* Niche se gap */
    
    /* Optional: Thoda professional look ke liye */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
