/**
 * Joey Money - Master Styling & Design System
 * Theme: Midnight Fintech with Emerald Jade and Rupee Gold Accents
 * Supports Dark Mode (Default) and Light Mode with persistence
 */

:root,
[data-theme="light"] {
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Light Theme Palette (Default & Sole Theme) */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-input: #ffffff;
    --border-color: #e2e8f0;
    --border-focus: #2563eb;

    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-accent: #0284c7;

    --primary-color: #059669;       /* Vibrant Emerald */
    --primary-hover: #047857;
    --primary-glow: rgba(5, 150, 105, 0.18);

    --secondary-color: #2563eb;     /* Financial Blue */
    --accent-gold: #d97706;         /* Indian Rupee Gold */
    --accent-gold-glow: rgba(217, 119, 6, 0.2);
    --danger-color: #ef4444;
    --success-color: #10b981;

    /* Layout & Geometry */
    --container-max-width: 1280px;
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;

    /* Shadows & Glassmorphism */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.96);
    --glass-border: rgba(226, 232, 240, 0.85);
}

/* CSS Reset & Global Typography */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: var(--text-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style-position: inside;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1.5rem;
}

/* Preloader */
.preloader-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background-color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    max-width: 320px;
}

.rupee-coin-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px var(--accent-gold-glow);
    animation: coinPulse 2s infinite ease-in-out;
}

.rupee-symbol-glow {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.preloader-brand .preloader-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.preloader-brand .preloader-tag {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-top: 0.25rem;
    font-weight: 600;
}

.preloader-progress-bar {
    width: 180px;
    height: 4px;
    background: var(--border-color);
    border-radius: var(--border-radius-full);
    margin: 1.5rem auto 0;
    overflow: hidden;
}

.preloader-progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    animation: preloaderProgress 1.4s infinite ease-in-out;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    z-index: 99999;
    transition: width 0.1s linear;
}

/* Market Ticker Bar */
.market-ticker-bar {
    background: #060b18;
    color: #e2e8f0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: 38px;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.ticker-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    margin-right: 1.5rem;
}

.ticker-marquee-track {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-items {
    display: inline-block;
    animation: marqueeScroll 35s linear infinite;
}

.ticker-items:hover {
    animation-play-state: paused;
}

.ticker-item {
    margin-right: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.trend-up { color: #34d399; font-weight: 600; }
.trend-down { color: #f87171; font-weight: 600; }
.trend-neutral { color: #94a3b8; }

.ticker-contact-pill {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-gold);
    font-weight: 600;
    white-space: nowrap;
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo-link {
    display: flex;
    align-items: center;
}

.site-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.site-logo-link:hover .site-logo-img {
    transform: scale(1.02);
}

/* Desktop Navigation */
.desktop-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.25s ease;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary-color);
}

.nav-link:hover::after, .nav-item.active .nav-link::after {
    width: 100%;
}

.nav-chevron {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.dropdown-parent {
    position: relative;
}

.dropdown-parent:hover .nav-chevron {
    transform: rotate(180deg);
}

.dropdown-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    list-style: none;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

.dropdown-parent:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-submenu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-submenu li a:hover {
    background: var(--bg-card-hover);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Header Actions */
.header-action-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.header-icon-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Theme Icon Display */
[data-theme="dark"] .light-icon { display: block; }
[data-theme="dark"] .dark-icon { display: none; }
[data-theme="light"] .light-icon { display: none; }
[data-theme="light"] .dark-icon { display: block; }

.btn-primary-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), #059669);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-full);
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all 0.25s ease;
}

.btn-primary-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.mobile-hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.25s ease;
}

/* Mobile Drawer */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-drawer-overlay.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-drawer-logo {
    height: 40px;
    width: auto;
}

.mobile-drawer-close-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 1.5rem;
    flex: 1;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.7rem 1rem;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-weight: 600;
}

.mobile-nav-list li a:hover {
    background: var(--bg-card-hover);
    color: var(--primary-color);
}

.mobile-drawer-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Live Search Modal */
.search-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.search-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 650px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(-20px);
    transition: transform 0.25s ease;
}

.search-modal-backdrop.active .search-modal-card {
    transform: translateY(0);
}

.search-modal-header {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.search-modal-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.search-input-wrap input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.search-modal-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
}

.search-modal-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
}

.search-tip {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 1.5rem 0;
}

.search-result-item {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 0.5rem;
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: var(--bg-card-hover);
}

.search-result-item h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.search-result-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Ad Unit Containers - Completely Removed as per user request */
.ad-unit-wrapper,
.ad-box,
.ad-disclosure-label,
.ad-placeholder-content {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
}

/* Legal Pages Styling (Privacy Policy, Terms of Use) */
.legal-hero-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 4.5rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.legal-page-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .legal-page-title {
    background: linear-gradient(135deg, #0f172a 40%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.legal-page-container {
    padding: 4rem 0;
}

.legal-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-toc-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-toc-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.legal-toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.legal-toc-list li a {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.legal-toc-list li a:hover {
    color: var(--primary-color);
    padding-left: 0.3rem;
}

.legal-support-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

.legal-support-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.legal-support-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.legal-content-body {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.legal-content-body section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.legal-content-body h2 {
    font-size: 1.7rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-content-body h3 {
    font-size: 1.25rem;
    margin: 1.75rem 0 0.85rem;
    color: var(--accent-gold);
}

.legal-content-body p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1.02rem;
    line-height: 1.8;
}

.legal-content-body ul, .legal-content-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.legal-content-body li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.legal-alert-box {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.legal-alert-box i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.legal-alert-box.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--text-secondary);
}
.legal-alert-box.info i { color: #3b82f6; }

.legal-alert-box.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--text-secondary);
}
.legal-alert-box.warning i { color: #f59e0b; }

.legal-contact-card {
    background: var(--bg-card);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.legal-contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.legal-contact-card p {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* Callout Boxes and Math Cards */
.callout-box {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    border-radius: var(--border-radius-md);
    margin: 2rem 0;
}

.callout-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.callout-body h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.callout-body p {
    margin-bottom: 0;
}

.callout-box.info {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
}
.callout-box.info .callout-icon { color: #3b82f6; }
.callout-box.info h4 { color: #60a5fa; }

.callout-box.tip {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.callout-box.tip .callout-icon { color: #10b981; }
.callout-box.tip h4 { color: #34d399; }

.callout-box.warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
}
.callout-box.warning .callout-icon { color: #f59e0b; }
.callout-box.warning h4 { color: #fbbf24; }

.callout-box.success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.callout-box.success .callout-icon { color: #10b981; }
.callout-box.success h4 { color: #10b981; }

.math-card {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-gold);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 1.15rem;
    color: #0f172a;
    overflow-x: auto;
}

/* Financial Tables */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
}

.finance-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
    background: var(--bg-card);
}

.finance-table thead {
    background: #0b132b;
    color: #ffffff;
}

[data-theme="light"] .finance-table thead {
    background: #0f172a;
    color: #ffffff;
}

.finance-table th {
    padding: 1rem 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.finance-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.finance-table tbody tr:hover {
    background: var(--bg-card-hover);
}

/* Footer Section */
.site-footer {
    background: #050914;
    color: #94a3b8;
    position: relative;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-wave svg {
    display: block;
    width: 100%;
    height: 40px;
}

.footer-main-content {
    padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.2fr 1.8fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-tagline {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    color: #94a3b8;
}

.footer-contact-info i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.footer-contact-info a {
    color: #cbd5e1;
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-social-links a:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.15rem;
    color: #f8fafc;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list li a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.footer-links-list li a:hover {
    color: var(--primary-color);
    padding-left: 0.3rem;
}

.newsletter-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: #cbd5e1;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    padding: 0.25rem 0.25rem 0.25rem 0.85rem;
    align-items: center;
}

.newsletter-mail-icon {
    color: var(--text-muted);
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.6rem 0.75rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-btn {
    background: var(--primary-color);
    border: none;
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: background 0.2s ease;
}

.newsletter-btn:hover {
    background: var(--primary-hover);
}

.newsletter-feedback-msg {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.security-badges {
    display: flex;
    gap: 1rem;
    margin-top: 0.85rem;
    font-size: 0.75rem;
    color: #64748b;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Footer Disclaimer */
.footer-disclaimer-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.footer-disclaimer-box p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #64748b;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #94a3b8;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-developer-credit {
    font-size: 0.88rem;
}

.footer-developer-credit a {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 700;
}

.footer-developer-credit a:hover {
    color: #ffffff;
}

/* Back to Top */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-4px);
}

/* Floating Cookie Preferences Trigger (Bottom-Left) */
.cookie-floating-trigger {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 99998;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cookie-floating-trigger i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.cookie-floating-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Enhanced Cookie Consent Banner */
.cookie-banner-wrapper {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    max-width: 680px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
    z-index: 999999;
    display: none;
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    overflow: hidden;
}

.cookie-banner-card {
    padding: 1.5rem 1.75rem;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cookie-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--border-radius-full);
}

.cookie-close-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.cookie-close-btn:hover {
    color: var(--text-primary);
}

.cookie-banner-body {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.cookie-icon-bubble {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.12);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cookie-text-col {
    flex: 1;
}

.cookie-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.cookie-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.cookie-desc a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-custom-panel {
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.85rem 1rem;
    margin-top: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-toggle-row {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.cookie-toggle-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.cookie-banner-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.3rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.25);
}

.cookie-btn-accept:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.cookie-btn-decline:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.cookie-btn-customize {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 0.65rem 0.85rem;
}

.cookie-btn-customize:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   404 Error Page Styling (SEO & UX Optimized)
   ========================================================================== */
.error-page-wrapper {
    padding: 4.5rem 1.5rem 6rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.7) 0%, rgba(255, 255, 255, 1) 100%);
    min-height: 80vh;
}

.error-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 4rem 2rem 3.5rem;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.error-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold), var(--primary-color));
}

.error-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    user-select: none;
}

.error-num {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 12vw, 7.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
}

.error-coin-pulse {
    width: clamp(70px, 12vw, 105px);
    height: clamp(70px, 12vw, 105px);
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: coinFloat 3s ease-in-out infinite alternate;
}

@keyframes coinFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 8px 25px rgba(217, 119, 6, 0.35);
    }
    100% {
        transform: translateY(-10px) rotate(6deg);
        box-shadow: 0 16px 35px rgba(217, 119, 6, 0.45);
    }
}

.error-rupee-sign {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.error-compass-icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: #ffffff;
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #fbbf24;
    animation: compassSpin 8s linear infinite;
}

@keyframes compassSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.error-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    margin-bottom: 1.25rem;
}

.error-title {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.error-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.25rem;
    line-height: 1.65;
}

.error-search-box {
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.error-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 0.35rem 0.4rem 0.35rem 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.error-search-form:hover,
.error-search-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.12);
}

.error-search-icon {
    color: var(--text-muted);
    font-size: 1rem;
    margin-right: 0.65rem;
}

.error-search-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.92rem;
    color: var(--text-primary);
    background: transparent;
    cursor: pointer;
}

.error-action-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.error-recommendations-section {
    margin-top: 5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   New Homepage Components (Financial Pulse, Pillars, Roadmap, Authors, FAQ)
   ========================================================================== */

/* Macro Pulse Ticker & Statistics */
.macro-pulse-wrapper {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.macro-pulse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.pulse-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: all 0.25s ease;
}

.pulse-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
}

.pulse-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.pulse-card-value {
    font-size: 1.45rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.pulse-card-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Wealth Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.pillar-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pillar-card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.pillar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.pillar-count-badge {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--text-secondary);
}

.pillar-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pillar-link:hover {
    gap: 0.55rem;
}

/* 5-Step Financial Freedom Roadmap */
.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    position: relative;
}

.roadmap-step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.roadmap-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

.roadmap-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.roadmap-step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.roadmap-step-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Editorial Research Board Grid */
.author-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.author-showcase-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.25rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-showcase-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.08);
}

.author-showcase-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.25rem;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.author-showcase-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-showcase-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.author-showcase-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author-showcase-meta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f1f5f9;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

/* FAQ Accordion */
.home-faq-wrap {
    max-width: 850px;
    margin: 2.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-accordion-item:hover {
    border-color: #cbd5e1;
}

.faq-accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.06);
}

.faq-accordion-head {
    width: 100%;
    padding: 1.35rem 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-accordion-head:hover {
    color: var(--primary-color);
}

.faq-accordion-head i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-head i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-accordion-item.active .faq-accordion-body {
    display: block;
    animation: faqFade 0.3s ease;
}

@keyframes faqFade {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* VIP Newsletter Dispatch Banner */
.vip-dispatch-card {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 2.5rem;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.2);
}

@media (max-width: 900px) {
    .vip-dispatch-card {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.75rem;
        text-align: center;
    }
}

.vip-dispatch-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.vip-dispatch-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
}

.vip-dispatch-form {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.vip-dispatch-input {
    flex: 1;
    min-width: 220px;
    padding: 0.9rem 1.25rem;
    border-radius: var(--border-radius-md);
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: #ffffff;
}

.vip-dispatch-btn {
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.75rem;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.vip-dispatch-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
}


