/* =========================================
   RazilHub - Deep Blue & Purple Theme
   ========================================= */

:root {
    /* Theme Colors */
    --bg-dark: #1a1a2e;
    --bg-card: #16213e;
    --primary: #667eea;
    --primary-dark: #764ba2;
    --accent: #00f260;
    /* Green for success/topup */
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);

    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

    /* Dimensions */
    --nav-height: 80px;
    --card-radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 40%);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* =========================================
   Premium Footer
   ========================================= */
.site-footer {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.site-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 8px 0;
}

.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 10px;
}

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

.footer-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* =========================================
   Navbar (Capsule Style)
   ========================================= */
.navbar {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    position: relative;
    z-index: 100;
}

.brand-link {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* The Central Capsule */
.nav-tabs-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    display: flex;
    gap: 5px;
}

.nav-tab {
    padding: 8px 20px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-tab.active {
    background: var(--primary);
    /* Solid Blue/Purple usually, or just primary color */
    color: white;
}

/* Right Side Actions */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wallet-display {
    text-align: right;
}

.wallet-display small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.wallet-amount {
    font-weight: 700;
}

.nav-deposit-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    color: #1a1a2e;
    font-weight: 800;
    border: none;
    padding: 4px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-deposit-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FDB931 0%, #FFD700 100%);
}

.nav-deposit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.5s;
    opacity: 0.3;
}

.nav-deposit-btn:hover::after {
    transform: rotate(45deg) translateY(100%);
}

/* Buttons */
.profile-btn,
.notification-btn {
    background: rgba(22, 33, 62, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
    /* Gold border */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #FFD700;
    /* Gold Icon */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-btn:hover,
.notification-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

/* Dropdowns (Glassmorphism) */
.notification-dropdown,
.profile-dropdown {
    position: relative;
}

.notification-menu,
.dropdown-menu {
    position: absolute;
    top: 60px;
    right: 0;
    width: 320px;
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1000;
    overflow: hidden;
    transform-origin: top right;
    animation: scaleIn 0.2s ease-out;
}

.dropdown-menu {
    width: 200px;
}

.notification-menu.show,
.dropdown-menu.show {
    display: block;
}

/* Notification Styling */
.notification-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h3 {
    font-size: 1rem;
    margin: 0;
}

.mark-all-read {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.8rem;
    cursor: pointer;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.notification-item.unread {
    background: rgba(102, 126, 234, 0.1);
    border-left: 3px solid var(--primary);
}

.notification-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.notification-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 5px;
    text-align: right;
}

.notification-footer {
    padding: 12px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-footer a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Profile Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================================
   Dashboard (Stacked Layout)
   ========================================= */
.dashboard-container {
    max-width: 900px;
    /* Constrain width for the "Stacked" look */
    margin: 40px auto;
    padding: 0 20px;
}

/* Welcome Panel */
.welcome-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--card-radius);
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.welcome-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #818cf8;
    /* Light purple/indigo */
}

/* Services Stack */
.services-grid {
    display: flex;
    flex-direction: column;
    /* VERTICAL STACK */
    gap: 30px;
}

.service-card {
    background: rgba(22, 33, 62, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--card-radius);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(102, 126, 234, 0.2);
}

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

.service-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-btn {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 14px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
}

/* Hide mobile nav by default */
.mobile-bottom-nav {
    display: none;
}

/* Modal Tabs */
.modal-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-tab.active {
    color: white;
    border-bottom-color: var(--gold-accent);
}

.modal-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.02);
}

.tab-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Overlay & Centering */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-content {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 420px;
    width: 100%;
    margin: auto;
    /* Ensure centering */
}

/* =========================================
   ADMIN NAVIGATION (HORIZONTAL)
   ========================================= */

.admin-layout {
    display: flex;
    flex-direction: column;
    /* Stack vertically for topbar */
    min-height: 100vh;
}

.admin-navbar {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.admin-nav-links {
    display: flex;
    gap: 5px;
    align-items: center;
}

.admin-nav-item {
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.admin-nav-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.admin-exit-btn {
    text-decoration: none;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    background: rgba(239, 68, 68, 0.1);
}

.admin-exit-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}

.admin-main {
    flex: 1;
    /* padding is handled by the content container */
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

/* =========================================
   ADMIN DASHBOARD STYLES
   ========================================= */

/* Stats Cards */
.admin-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.admin-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.stat-icon-bg {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Admin Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-primary);
}

.data-table th {
    text-align: left;
    padding: 16px 24px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

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

.status-pill {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pill.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-pill.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-pill.failed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* =========================================
   PREMIUM DESIGN SYSTEM (NEW)
   ========================================= */

/* High-End Glassmorphism */
.glass-panel,
.card-premium {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

/* Enhanced Gradient Borders (Top accent) */
.border-gradient-top {
    position: relative;
    overflow: hidden;
}

.border-gradient-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* Premium Card Hover State */
.card-premium {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 41, 59, 0.5);
}

/* Premium Gradient Text */
.text-gradient-gold {
    background: linear-gradient(135deg, #FFF 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern Input Fields */
.input-premium {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.input-premium:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.5);
    outline: none;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/* Table Enhancements */
.table-hover-premium tr {
    transition: background 0.2s;
}

.table-hover-premium tr:hover td {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.02) 100%);
}

/* Quick Actions Grid */
.quick-action-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.quick-action-card:hover {
    background: rgba(255, 255, 255, 0.08);
    /* Lighter on hover */
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.1);
}

.quick-action-icon {
    font-size: 1.8rem;
    margin-bottom: 5px;
}



.stat-widget {
    background: rgba(22, 33, 62, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-widget:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-widget h3 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 10px 0;
    letter-spacing: -0.5px;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trend-up {
    color: #4ade80;
}

.trend-down {
    color: #f87171;
}

/* Admin Tables (Data Table) */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    text-align: left;
    padding: 16px 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

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

.data-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.text-green {
    color: #4ade80;
}

.text-red {
    color: #f87171;
}

.font-bold {
    font-weight: 700;
}

@media (max-width: 768px) {

    /* Hide Desktop Elements */
    .nav-tabs-container,
    .nav-right-actions {
        display: none;
    }

    /* Minimal Top Nav */
    .navbar {
        justify-content: center;
        padding: 15px;
    }

    /* Layout */
    .dashboard-container {
        margin-top: 20px;
    }

    .service-card {
        padding: 30px;
    }

    .welcome-content h1 {
        font-size: 1.8rem;
    }

    /* Show Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #16213e;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
        justify-content: space-around;
        z-index: 1000;
    }

    .mobile-nav-item {
        color: var(--text-muted);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.7rem;
        gap: 5px;
    }

    .mobile-nav-icon {
        font-size: 1.2rem;
    }

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

/* Alert Styles */
.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.5s ease-out;
    color: white;
}

.alert-success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10B981;
}

.alert-danger, .alert-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #EF4444;
}

.alert-info {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid #3B82F6;
}

.alert button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2em;
    padding: 0;
}

/* /* Premium Announcement Modal Styles */
.announcement-card {
    max-width: 480px !important;
    width: 95% !important;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    box-shadow: 
        0 25px 60px -12px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(251, 191, 36, 0.1) inset !important;
    border-radius: 32px !important;
    animation: premiumAnnounce 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

@keyframes premiumAnnounce {
    from { 
        transform: scale(0.9) translateY(40px); 
        opacity: 0; 
        filter: blur(10px);
    }
    to { 
        transform: scale(1) translateY(0); 
        opacity: 1; 
        filter: blur(0);
    }
}

.announcement-header {
    padding: 40px 30px 20px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
}

.announcement-img-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 15px 30px rgba(251, 191, 36, 0.3));
    transition: transform 0.5s ease;
}

.announcement-card:hover .announcement-img-container {
    transform: translateY(-8px) scale(1.05);
}

.announcement-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.announcement-header h3 {
    margin: 0;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 900;
    opacity: 0.8;
}

.announcement-body {
    padding: 0 40px 30px;
    text-align: center;
}

.announcement-body h2 {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

#announcementMessage {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.15rem;
    font-weight: 400;
}

.announcement-footer {
    padding: 0 40px 40px;
    text-align: center;
}

.announcement-btn {
    width: 100%;
    padding: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 2px;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%) !important;
    color: #000 !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none !important;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3) !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative;
    overflow: hidden;
}

.announcement-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.announcement-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.4) !important;
}

.announcement-btn:hover::after {
    left: 100%;
}