@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --primary: #5F259F;
    --primary-dark: #4A1D7A;
    --primary-light: #7E3FF2;
    --primary-glow: rgba(95, 37, 159, 0.25);
    --accent: #10B981;
    --accent-dark: #059669;
    --accent-light: #34D399;
    --dark: #0F172A;
    --dark-surface: #1E293B;
    --secondary: #F8FAFC;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-white: #FFFFFF;
    --danger: #EF4444;
    --danger-bg: #FEF2F2;
    --success: #10B981;
    --success-bg: #ECFDF5;
    --warning: #F59E0B;
    --warning-bg: #FFFBEB;
    --info: #3B82F6;
    --info-bg: #EFF6FF;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(95, 37, 159, 0.12);
    --shadow-xl: 0 20px 35px -5px rgba(95, 37, 159, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*:focus {
    outline: none !important;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: #F8FAFC;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
}

/* Money & Coins Particle Background */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(126, 63, 242, 0.08) 0%, rgba(248, 250, 252, 0) 65%);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Typography Helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.font-mono { font-family: 'JetBrains Mono', monospace; }

/* Buttons with Bouncy Feedback */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    user-select: none;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.95) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 6px 20px rgba(95, 37, 159, 0.35);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--text-white);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--text-white);
    color: var(--primary);
    border-color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: #F1F5F9;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    transform: translateY(-2px);
    color: var(--text-white);
}

.btn-danger {
    background: var(--danger);
    color: var(--text-white);
}

.btn-danger:hover {
    background: #DC2626;
    transform: translateY(-2px);
    color: var(--text-white);
}

.btn-sm {
    padding: 7px 16px;
    font-size: 0.84rem;
    border-radius: 9999px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 9999px;
}

.btn-block {
    width: 100%;
}

/* Header & Navigation */
.public-header, .dash-header {
    background: linear-gradient(135deg, #3A106E 0%, #5F259F 60%, #7E3FF2 100%);
    color: var(--text-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(74, 29, 122, 0.25);
    backdrop-filter: blur(12px);
}

.public-header .container, .dash-header .dash-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
}

.brand-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #A7F3D0;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.main-nav a:hover, .main-nav a.active {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.12);
}

.auth-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

/* Dashboard Nav */
.dash-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: 9999px;
    transition: var(--transition);
}

.dash-nav a:hover, .dash-nav a.active {
    background: rgba(255, 255, 255, 0.18);
    color: var(--text-white);
}

.admin-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.admin-badge-btn {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #FFF;
    border: none;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.admin-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--text-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    z-index: 100;
    padding: 8px;
    border: 1px solid var(--border);
    animation: dropdownFade 0.2s ease-out;
}

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

.admin-dropdown-wrapper:hover .admin-dropdown-menu,
.admin-dropdown-wrapper:focus-within .admin-dropdown-menu {
    display: block;
}

.admin-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.admin-dropdown-menu a:hover {
    background: #F3E8FF;
    color: var(--primary);
}

.dash-user-controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Main Content Area */
.public-main, .dash-main {
    flex: 1;
    padding: 40px 0 80px;
}

/* Cards & Glassmorphism */
.card {
    background: var(--text-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 28px;
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card-header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Stats Widgets Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--primary);
    border-radius: 4px 0 0 4px;
}

.stat-card.emerald::after { background: var(--accent); }
.stat-card.amber::after { background: var(--warning); }
.stat-card.blue::after { background: var(--info); }

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: #F3E8FF;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon.emerald { background: #ECFDF5; color: var(--accent); }
.stat-icon.amber { background: #FFFBEB; color: var(--warning); }
.stat-icon.blue { background: #EFF6FF; color: var(--info); }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-top: 4px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main);
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background: #FFFFFF;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group .form-control {
    padding-right: 48px;
}

.input-suffix-btn {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-icon {
    flex-shrink: 0;
}

.alert-success { background: var(--success-bg); color: #065F46; border: 1px solid #A7F3D0; }
.alert-danger { background: var(--danger-bg); color: #991B1B; border: 1px solid #FECACA; }
.alert-warning { background: var(--warning-bg); color: #92400E; border: 1px solid #FDE68A; }
.alert-info { background: var(--info-bg); color: #1E40AF; border: 1px solid #BFDBFE; }

/* Modern Tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: white;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.92rem;
}

.table th {
    background: #F8FAFC;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 18px;
    border-bottom: 1.5px solid var(--border);
}

.table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-main);
    vertical-align: middle;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background-color: #FAF5FF;
}

/* Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-success, .status-active { background: #ECFDF5; color: #059669; }
.status-pending { background: #FFFBEB; color: #D97706; }
.status-failed, .status-banned { background: #FEF2F2; color: #DC2626; }
.status-inactive { background: #F1F5F9; color: #64748B; }

.plan-badge {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2E0B5B 0%, #5F259F 50%, #7E3FF2 100%);
    color: white;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #A7F3D0;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: white;
}

.hero-title span {
    background: linear-gradient(135deg, #34D399, #6EE7B7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 720px;
    margin: 0 auto 36px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin: 60px 0;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: #E9D5FF;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #F3E8FF, #EDE9FE);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 38px 32px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(95, 37, 159, 0.18);
}

.pricing-card.featured .pricing-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 4px 18px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 16px 0;
    line-height: 1;
}

.pricing-validity {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin: 20px 0 32px;
    flex: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.pricing-feature-icon {
    color: var(--accent);
    flex-shrink: 0;
}

/* Footer */
.public-footer, .dash-footer {
    background: #0B0314;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #A7F3D0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Payment Checkout Experience (pay.php) */
.checkout-card {
    max-width: 520px;
    margin: 40px auto;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
}

.checkout-header {
    background: linear-gradient(135deg, #3A106E, #5F259F);
    color: white;
    padding: 28px 24px;
    text-align: center;
}

.checkout-body {
    padding: 32px 28px;
}

.qr-box {
    background: #FFFFFF;
    border: 2px dashed #D8B4FE;
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.qr-canvas-container {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-sm);
    padding: 10px;
    box-shadow: var(--shadow-sm);
}

.upi-app-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.upi-app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    border: 1.5px solid var(--border);
    background: #F8FAFC;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.upi-app-btn:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.timer-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #FEF3C7;
    color: #92400E;
    border-radius: 9999px;
    font-size: 0.84rem;
    font-weight: 700;
}

/* Code Snippets & Tabs */
.code-block-container {
    background: #0F172A;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 16px 0;
    border: 1px solid #334155;
}

.code-header {
    background: #1E293B;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #94A3B8;
}

.code-content {
    padding: 16px;
    color: #E2E8F0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    overflow-x: auto;
    white-space: pre;
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-item {
    background: #0F172A;
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 4px solid var(--accent);
}

@keyframes toastSlide {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .dash-header .dash-header-inner {
        flex-direction: column;
        gap: 12px;
    }
    .dash-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}