/* ===== EXACT ORIGINAL DESIGN - NOTHING REMOVED ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --purple-dark: #2a004d;
    --purple: #4b0082;
    --purple-light: #6a0dad;
    --purple-lighter: #8a2be2;
    --purple-gradient: linear-gradient(135deg, #4b0082, #6a0dad, #8a2be2);
    
    --gold: #FFD700;
    --gold-dark: #D4AF37;
    --gold-light: #FFF8DC;
    --gold-gradient: linear-gradient(135deg, #FFD700, #D4AF37, #B8860B);
    
    --purple-gold-gradient: linear-gradient(135deg, #8a2be2, #FFD700, #6a0dad);
    --gold-purple-gradient: linear-gradient(135deg, #FFD700, #8a2be2, #D4AF37);
    
    --black: #1a001a;
    --black-light: #2a002a;
    --black-lighter: #3a003a;
    
    --text-primary: #FFFFFF;
    --text-secondary: #E6E6FA;
    --text-muted: #D8BFD8;
    
    --shadow: 0 4px 20px rgba(138, 43, 226, 0.3);
    --shadow-lg: 0 10px 40px rgba(138, 43, 226, 0.4);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.4);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--black);
    overflow-x: hidden;
    font-size: 16px;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(106, 13, 173, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: var(--purple-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(138, 43, 226, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.3; }
h3 { font-size: 1.75rem; line-height: 1.4; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
}

/* ===== SMALLER BUTTONS (MOBILE FRIENDLY) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 4px;
    text-decoration: none;
    min-height: 32px;
    min-width: 32px;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--purple-gold-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary {
    background: var(--purple-dark);
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover, .btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
    background: var(--purple);
}

.btn-secondary {
    background: var(--purple-gold-gradient);
    color: var(--black);
    font-weight: 700;
    border: 2px solid transparent;
}

.btn-secondary:hover, .btn-secondary:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: var(--gold-purple-gradient);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover, .btn-outline:active {
    background: var(--gold);
    color: var(--purple-dark);
}

.btn-sm {
    padding: 4px 10px;
    font-size: 10px;
    min-height: 28px;
    min-width: 28px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loader {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 0.8s linear infinite;
    margin-right: 5px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(42, 0, 77, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    min-height: 40px;
    font-family: 'Playfair Display', serif;
}

.logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    padding: 2px;
    background: var(--purple-dark);
    box-shadow: var(--shadow-gold);
}

.sidebar-menu-btn {
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-size: 18px;
    color: var(--gold);
    cursor: pointer;
    min-width: 38px;
    min-height: 38px;
    padding: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-buttons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.auth-buttons.hidden {
    display: none !important;
}

.profile-container {
    position: relative;
    display: none;
    align-items: center;
    gap: 10px;
}

.profile-container.visible {
    display: flex;
}

.profile-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--purple-gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-gold);
    overflow: hidden;
}

.profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--purple-dark);
    min-width: 260px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    display: none;
    animation: dropdownSlide 0.3s ease;
    margin-top: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.profile-dropdown.active {
    display: block;
}

@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-header {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    background: linear-gradient(to bottom, rgba(138, 43, 226, 0.2), transparent);
}

.dropdown-header .profile-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0 auto 10px;
    cursor: default;
}

.photo-upload {
    display: none;
}

.photo-upload-label {
    background: var(--gold);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    display: inline-block;
}

.dropdown-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--gold);
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 8px 0;
}

.sidebar-nav {
    position: fixed;
    top: 54px;
    left: -300px;
    bottom: 0;
    width: 280px;
    background: var(--purple-dark);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: left 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px;
}

.sidebar-nav.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 6px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    min-height: 40px;
    border-left: 3px solid transparent;
    font-size: 14px;
}

.sidebar-menu a:hover,
.sidebar-menu a.active,
.sidebar-menu a:active {
    background: rgba(138, 43, 226, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
}

.sidebar-menu i {
    width: 22px;
    text-align: center;
    font-size: 16px;
}

.sidebar-user-info {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 16px;
}

.sidebar-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 10px;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.sidebar-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-user-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
    background: rgba(138, 43, 226, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.sidebar-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.dashboard-container {
    display: none;
    min-height: 100vh;
    padding-top: 54px;
}

.dashboard-main {
    padding: 16px;
    background: var(--black);
    min-height: calc(100vh - 54px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    padding: 76px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--purple-gold-gradient);
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    background: var(--purple-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wallet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .wallet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wallet-card {
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.wallet-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.wallet-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 24px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-gold);
}

.wallet-amount {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    background: var(--purple-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== CHECK-IN STYLES ===== */
.checkin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px 0;
}

.day-card {
    min-width: auto;
    padding: 10px 6px;
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.day-card.current {
    background: var(--purple-gold-gradient);
    color: var(--black);
    border-color: transparent;
}

.day-card.completed {
    background: rgba(138, 43, 226, 0.1);
    border-color: var(--gold);
}

/* ===== PACKAGES STYLES ===== */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border-color: var(--gold);
}

.package-card.featured::after {
    content: 'PREMIUM';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--purple-gold-gradient);
    color: var(--black);
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 10px;
    font-weight: 700;
}

/* ===== WITHDRAWAL STYLES ===== */
.withdrawal-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.method-card {
    padding: 16px;
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.method-card.active {
    border-color: var(--gold);
    background: rgba(138, 43, 226, 0.1);
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gold);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 40px;
    font-size: 14px;
    transition: var(--transition);
    min-height: 42px;
    background: rgba(42, 0, 77, 0.5);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 16px;
    animation: fadeIn 0.3s ease;
}

.modal {
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    border-radius: var(--radius);
    padding: 24px;
    max-width: 380px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlide 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--purple-gold-gradient);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 16px;
    color: var(--gold);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
}

/* ===== HOME PAGE STYLES ===== */
#homePage {
    padding-top: 54px;
    display: block;
}

#homePage.hidden {
    display: none !important;
}

.hero-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(42, 0, 77, 0.9), rgba(75, 0, 130, 0.9)), 
                url('https://images.unsplash.com/photo-1618005198919-d3d4b5a92ead?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.hero-section p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    padding: 16px;
    background: rgba(42, 0, 77, 0.7);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-box .number {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    background: var(--purple-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== FEATURES STYLES ===== */
.features-section {
    padding: 40px 0;
    background: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 24px 16px;
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 24px;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-gold);
}

/* ===== HOW IT WORKS STYLES ===== */
.how-it-works {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(42, 0, 77, 0.9), rgba(75, 0, 130, 0.9));
    position: relative;
    overflow: hidden;
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    text-align: center;
    padding: 24px 16px;
    background: rgba(42, 0, 77, 0.7);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--purple-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: var(--shadow-gold);
}

/* ===== TESTIMONIALS STYLES ===== */
.testimonials-section {
    padding: 40px 0;
    background: var(--black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    padding: 24px 16px;
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    border-radius: var(--radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--purple-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 700;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FOOTER STYLES ===== */
footer {
    background: linear-gradient(135deg, var(--purple-dark), var(--black));
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    padding: 2px;
}

.footer-links h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-muted);
    font-size: 11px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== LOADER STYLES ===== */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 0, 26, 0.95);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    gap: 20px;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top: 4px solid var(--gold);
    border-right: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.loading-text {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@media (max-width: 480px) {
    .loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
    .loading-text {
        font-size: 16px;
    }
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-timer {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 8px;
    margin-top: 12px;
    text-align: center;
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.account-card {
    background: rgba(138, 43, 226, 0.2);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid var(--gold);
}

.account-card h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 15px;
}

.account-detail {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 13px;
}

.account-detail:last-child {
    border-bottom: none;
}

.account-label {
    color: var(--text-secondary);
}

.account-value {
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 16px;
    cursor: pointer;
    margin-left: 8px;
    font-size: 10px;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== ADS STYLES ===== */
.ads-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .ads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ad-card {
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.ad-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 2px solid var(--gold);
    padding: 4px;
}

/* ===== STATUS BADGES ===== */
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 600;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.status-approved {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.status-active {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.status-suspended {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* ===== HISTORY STYLES ===== */
.deposit-history {
    margin-top: 24px;
}

.history-item {
    background: rgba(138, 43, 226, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.history-item .amount {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
}

.withdrawal-history {
    margin-top: 24px;
}

.withdrawal-history h3 {
    color: var(--gold);
    margin-bottom: 16px;
}

/* ===== QUICK ACTIONS ===== */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

/* ===== REFERRALS STYLES ===== */
.referrals-list {
    margin-top: 24px;
}

.referral-item {
    background: rgba(138, 43, 226, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.referral-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.referral-name {
    font-weight: 600;
    color: var(--gold);
    font-size: 13px;
}

.referral-date {
    font-size: 10px;
    color: var(--text-secondary);
}

.referral-badge {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

/* ===== PACKAGE INFO ===== */
.package-duration {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 8px 0;
}

.expiry-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 10px;
}

/* ===== AD CONTAINER ===== */
.ad-wrapper {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 2px solid var(--gold);
    border-radius: 18px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-label {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #fbbf24;
    color: var(--purple-dark);
    font-size: 10px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 10;
    border: 2px solid var(--purple-dark);
}

.ad-container {
    position: relative;
    margin: 20px 0;
}

/* ===== BALANCE INFO ===== */
.balance-info {
    background: rgba(138, 43, 226, 0.2);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-bottom: 16px;
    border: 1px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.balance-info span {
    color: var(--gold);
    font-weight: 700;
}

/* ===== SUSPENDED ALERT ===== */
.suspended-alert {
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid #dc3545;
    border-radius: var(--radius);
    padding: 16px;
    margin: 20px 0;
    text-align: center;
    color: #dc3545;
    font-weight: 600;
}

/* ===== REFERRED BY INFO ===== */
.referred-by-info {
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    border-radius: var(--radius);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--gold);
    text-align: center;
}

.referred-by-name {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 5px;
}

/* ===== EARNING HISTORY SECTION ===== */
.earning-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--purple-gold-gradient);
    color: var(--black);
}

.earning-item {
    background: rgba(138, 43, 226, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 8px;
    border-left: 4px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.earning-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.earning-title {
    font-weight: 600;
    color: var(--gold);
    font-size: 13px;
}

.earning-date {
    font-size: 10px;
    color: var(--text-secondary);
}

.earning-amount {
    font-weight: 700;
    color: #28a745;
    font-size: 14px;
}

.earning-amount.negative {
    color: #dc3545;
}

.tax-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 9px;
    margin-left: 5px;
}

/* ===== REFRESH BUTTON ===== */
.refresh-btn {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    margin-right: 8px;
}

.refresh-btn:hover {
    transform: rotate(90deg);
    background: var(--purple-dark);
}

.refresh-btn:active {
    transform: rotate(180deg);
}

/* ===== CONVERSION SECTION STYLES ===== */
.conversion-inside-wallet {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(75, 0, 130, 0.15));
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.conversion-inside-wallet h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.real-time-balance {
    background: rgba(138, 43, 226, 0.3);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 20px;
}

.real-time-balance .balance-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    display: inline-block;
    animation: pulse 1s ease-in-out;
}

.conversion-preview-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    margin: 20px 0;
}

.conversion-preview-card .rs-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--gold);
}

.conversion-rate-info {
    color: var(--gold);
    font-size: 14px;
    margin-top: 10px;
}

.convert-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.conversion-item {
    background: rgba(138, 43, 226, 0.1);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid var(--gold);
}

.conversion-info {
    flex: 1;
}

.conversion-title {
    font-weight: 600;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.conversion-date {
    font-size: 11px;
    color: var(--text-secondary);
}

.conversion-rate {
    font-size: 12px;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
}

.conversion-history-list {
    max-height: 300px;
    overflow-y: auto;
}

.conversion-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.conversion-input-group input {
    flex: 1;
    min-width: 150px;
}

@media (max-width: 480px) {
    .conversion-input-group {
        flex-direction: column;
    }
    .conversion-input-group button {
        width: 100%;
    }
    .real-time-balance .balance-value {
        font-size: 36px;
    }
    .conversion-preview-card .rs-amount {
        font-size: 32px;
    }
}

/* ===== AIRDROP SECTION STYLES ===== */
.airdrop-section {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.15), rgba(75, 0, 130, 0.15));
    border-radius: var(--radius);
    padding: 25px;
    margin-top: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.airdrop-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.airdrop-tap-area {
    background: linear-gradient(135deg, var(--purple-dark), var(--black-light));
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('https://elegantsworld.store/images/1773443221_8710.jpeg');
}

.airdrop-tap-area:active {
    transform: scale(0.95);
}

.airdrop-tap-area.disabled,
.airdrop-tap-area.locked {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.5);
}

.airdrop-tap-area .tap-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.airdrop-tap-area .tap-count {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.airdrop-tap-area .tap-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.airdrop-tap-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.locked-overlay i {
    font-size: 40px;
    color: #ffc107;
    margin-bottom: 10px;
}

.locked-overlay span {
    font-size: 12px;
    color: white;
}

.airdrop-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.airdrop-stat-card {
    background: rgba(138, 43, 226, 0.2);
    padding: 12px;
    border-radius: var(--radius-sm);
    flex: 1;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.airdrop-stat-card .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
}

.airdrop-stat-card .stat-label {
    font-size: 11px;
    color: var(--text-secondary);
}

.airdrop-progress {
    background: rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    height: 8px;
    margin: 15px 0;
    overflow: hidden;
}

.airdrop-progress-bar {
    background: var(--purple-gold-gradient);
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 20px;
}

.airdrop-timer {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
    font-size: 14px;
    color: var(--gold);
}

.airdrop-earned {
    background: rgba(40, 167, 69, 0.2);
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
    border: 1px solid #28a745;
}

.airdrop-earned span {
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

.locked-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.requirement-card {
    background: rgba(138, 43, 226, 0.2);
    border-radius: var(--radius);
    padding: 15px;
    margin-top: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.requirement-item:last-child {
    border-bottom: none;
}

.requirement-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.requirement-check.completed {
    background: #28a745;
    color: white;
}

.requirement-check.pending {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.airdrop-balance-card {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(75, 0, 130, 0.3));
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.airdrop-balance-card .balance-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.unlock-timer {
    font-size: 11px;
    color: var(--gold);
    margin-top: 5px;
}

@media (max-width: 480px) {
    .airdrop-tap-area {
        width: 160px;
        height: 160px;
    }
    .airdrop-tap-area .tap-icon {
        font-size: 48px;
    }
    .airdrop-tap-area .tap-count {
        font-size: 24px;
    }
    .profile-container {
        gap: 6px;
    }
}

/* ===== PASSWORD CHANGE MODAL STYLES ===== */
.password-change-modal .modal {
    max-width: 400px;
}

.password-form-group {
    margin-bottom: 20px;
}

.password-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gold);
    font-size: 13px;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 40px;
    font-size: 14px;
    background: rgba(42, 0, 77, 0.5);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.password-input-wrapper input:focus {
    outline: none;
    border-color: var(--gold);
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 14px;
}

.forgot-password-link {
    display: block;
    text-align: right;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gold);
    text-decoration: none;
    cursor: pointer;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.password-message {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 12px;
    display: none;
}

.password-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
    display: block;
}

.password-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
    display: block;
}

.password-message.info {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
    display: block;
}

/* ===== SCREENSHOT UPLOAD STYLES ===== */
.payment-screenshot-section {
    margin: 20px 0;
    padding: 20px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 215, 0, 0.5);
    text-align: center;
}

.payment-screenshot-section label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-weight: 600;
}

.screenshot-preview {
    margin-top: 15px;
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--radius);
    display: none;
}

.screenshot-preview.active {
    display: block;
    margin: 15px auto;
}

.upload-btn {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.upload-btn:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

.file-input {
    display: none;
}

.screenshot-info {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp-float img {
    width: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}