    /* Main Stylesheet */

     /* 🔹 Full-width Flash Message Banner */
.flash-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 20px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-100%);
  animation: slideDown 0.5s ease forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ✅ Success banner style */
.flash-success {
  background: linear-gradient(90deg, #28a745, #218838);
}

/* ❌ Error banner style */
.flash-error {
  background: linear-gradient(90deg, #dc3545, #b52a36);
}

/* 🎬 Slide-down animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
    :root {
        --gold: #FFD700;
        --deep-black: #0B0B0B;
        --accent-blue: #00C4FF;
        --background-gradient: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
        --footer-bg: #fff;
        --footer-active: #d44081;
        --footer-inactive: #888;
        --card-bg: #fff;
        --card-radius: 30px;
        --btn-gradient: linear-gradient(to right, #f9685a, #d44081);
        --font-main: 'Poppins', 'Inter', Arial, sans-serif;
        --input-bg: #f0f0f5;
        --text-color: #333;
        --link-color: #d44081;
        
        /* VIP Work specific colors */
        --vip-card-start: #FFD700;
        --vip-card-end: #FFC107;
        --vip-btn-start: #FF5E62;
        --vip-btn-end: #FFD700;
        --vip-text-dark: #222;
        --vip-text-light: #555;
    }

    /* Common styles for all pages */
    body {
        font-family: var(--font-main);
        line-height: 1.6;
        background: var(--background-gradient);
        color: var(--text-color);
        min-height: 100vh;
    }

    /* Form Controls - Based on Login Design */
    .form-control-custom {
        height: 55px;
        border-radius: 30px;
        background: var(--input-bg);
        border: 1px solid #e0e0e0;
        padding-left: 20px;
        font-size: 1rem;
        color: var(--text-color);
    }

    .form-control-custom::placeholder {
        color: #a0a0a0;
    }

    /* Custom Sign In/Submit Button */
    .sign-in-btn {
        height: 55px;
        border-radius: 30px;
        border: none;
        font-weight: bold;
        font-size: 1.1rem;
        color: white;
        background-image: var(--btn-gradient);
        box-shadow: 0 4px 10px rgba(220, 60, 130, 0.4);
        transition: all 0.3s;
    }

    .sign-in-btn:hover {
        opacity: 0.9;
    }

    /* Custom Links */
    .link-text {
        font-size: 0.95rem;
        color: #888;
    }

    .custom-link {
        font-weight: bold;
        color: var(--link-color);
        text-decoration: none;
    }

    .custom-link:hover {
        opacity: 0.9;
        text-decoration: none;
    }

    /* White Card Style */
    .white-card {
        background: #fff;
        border-radius: var(--card-radius);
        padding: 1.2rem;
        margin-bottom: 1rem;
        box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    }

    /* Header styles */
    .header {
        background: var(--deep-black);
        color: var(--gold);
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        padding: 1rem 0.5rem 0.5rem 0.5rem;
        border-bottom: 1px solid #222;
    }
    /* Quick Access Menu */
    .quick-menu {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 20px 10px;
        margin-bottom: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .quick-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        gap: 8px;
    }

    .quick-menu-icon {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s;
    }

    .quick-menu-icon.recharge {
        background: #4B6BFB;
    }

    .quick-menu-icon.withdrawal {
        background: #903AFF;
    }

    .quick-menu-icon.records {
        background: #FB923C;
    }

    .quick-menu-icon.apps {
        background: #10B981;
    }

    .quick-menu-item:active .quick-menu-icon {
        transform: scale(0.95);
    }

    .quick-menu-text {
        font-size: 12px;
        color: #333;
        font-weight: 500;
    }

    /* Slider Section */
    .slider-container {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 15px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(255,215,0,0.4);
    }

    .slider {
        display: flex;
        transition: transform 0.6s ease;
    }

    .slider img {
        width: 100%;
        flex-shrink: 0;
        border-radius: 10px;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0,0,0,0.5);
        color: #FFD700;
        border: none;
        font-size: 1.5rem;
        padding: 6px 12px;
        cursor: pointer;
        border-radius: 50%;
    }

    .slider-btn:hover {
        background-color: rgba(255,215,0,0.6);
        color: black;
    }

    .prev { left: 8px; }
    .next { right: 8px; }


    /* Footer styles */
    .footer-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--footer-bg);
        display: flex;
        justify-content: space-around;
        align-items: center;
        height: 64px;
        box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
        z-index: 1000;
        border-top: 1px solid #eee;
    }
    .footer-nav .footer-item {
        flex: 1;
        text-align: center;
        color: var(--footer-inactive);
        font-size: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: color 0.2s;
        text-decoration: none;
    }
    .footer-nav .footer-item.home {
        transform: translateY(-15px);
    }
    .footer-nav .footer-item.home svg {
        width: 32px;
        height: 32px;
        padding: 6px;
        background: var(--footer-active);
        border-radius: 50%;
        color: white;
        margin-bottom: 4px;
    }
    .footer-nav .footer-item.active {
        color: var(--footer-active);
    }
    .footer-nav .footer-item svg {
        display: block;
        margin: 0 auto 2px auto;
        font-size: 22px;
        width: 22px;
        height: 22px;
    }

    /* Common container styles */
    .main-container {
        padding: 1.2rem 0 80px 0;
        min-height: calc(100vh - 64px);
    }

    /* Common card styles */
    .custom-card {
        border-radius: var(--card-radius);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        padding: 1.2rem 1rem;
        margin-bottom: 1.2rem;
        background: var(--card-bg);
        color: #fff;
        font-weight: 500;
        font-size: 1.05rem;
    }

    /* VIP Work Cards */
    .vip-card {
        background: linear-gradient(45deg, var(--vip-card-start), var(--vip-card-end));
        border-radius: var(--card-radius);
        padding: 1.5rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
        color: var(--text-color);
    }

    .vip-card .vip-title {
        font-weight: 600;
        font-size: 1.2rem;
        color: var(--vip-text-dark);
    }

    .vip-card .vip-online {
        font-size: 0.9rem;
        color: var(--vip-text-light);
    }

    .vip-card .vip-income {
        font-size: 1rem;
        color: var(--vip-text-light);
    }

    .vip-card .vip-income b {
        color: var(--vip-text-dark);
        font-size: 1.1rem;
    }

    .vip-card .vip-range {
        font-size: 0.9rem;
        color: var(--vip-text-light);
    }

    .vip-btn {
        /* background: linear-gradient(90deg, var(--vip-btn-start), var(--vip-btn-end)); */
        background: linear-gradient(90deg, #d56365, #0c0c0c);
        color: #fff;
        border: none;
        border-radius: 20px;
        padding: 8px 20px;
        font-weight: 500;
        font-size: 0.9rem;
        transition: all 0.3s;
    }

    .vip-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    /* Common button styles */
    .custom-btn {
        padding: 0.6rem 1.5rem;
        border-radius: 24px;
        background: var(--btn-gradient);
        color: #fff;
        font-weight: 600;
        border: none;
        box-shadow: 0 2px 8px rgba(255,215,0,0.12);
        transition: background 0.2s, box-shadow 0.2s;
    }
    .custom-btn:active, .custom-btn:focus {
        outline: none;
        box-shadow: 0 0 0 2px var(--accent-blue);
    }
    .custom-btn:hover {
        background: linear-gradient(90deg, #FF9800 0%, #FFD700 100%);
        color: #222;
    }

    /* Responsive utilities */
    @media (max-width: 768px) {
        .header {
            padding: 0.5rem 0.5rem 0.2rem 0.5rem;
        }
        .main-container {
            padding: 0.7rem 0 80px 0;
        }
        .custom-card {
            padding: 1rem 0.7rem;
            font-size: 0.98rem;
        }
        .footer-nav {
            height: 58px;
        }
        .footer-nav .footer-item svg {
            font-size: 20px;
            width: 20px;
            height: 20px;
        }
    }