
/* ========== GLOBAL / RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background: radial-gradient(circle at 20% 30%, #0a0c15, #020304);
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated background orbs */
body::before {
    content: '';
    position: fixed;
    width: 70vmax;
    height: 70vmax;
    background: radial-gradient(circle, rgba(0, 230, 255, 0.05) 0%, transparent 70%);
    top: -20vh;
    left: -10vw;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: floatOrb 25s infinite alternate;
}


@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.2); }
}


.notif-card {
    background: #111;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    color: #0ff;
    border: 1px solid #044;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    background: #0b0c10;
    border-bottom: 1px solid #1f2833;
}

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

.logo {
    height: 38px;
}

.brand {
    color: #66fcf1;
    font-size: 20px;
    font-weight: 700;
}

.nav-items a {
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
    color: #c5c6c7;
    transition: 0.3s;
}

.nav-items a:hover {
    color: #66fcf1;
}

.nav-items .active {
    color: #66fcf1;
    font-weight: bold;
    border-bottom: 2px solid #66fcf1;
}
.welcome-text {
    margin: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.section-title {
    color: #66fcf1;
    margin-left: 20px;
    margin-top: 10px;
}

#notifications {
    padding: 20px;
}

.note-card {
    background: #1f2833;
    color: #c5c6c7;
    padding: 15px;
    margin-bottom: 12px;
    border-left: 3px solid #66fcf1;
    border-radius: 8px;
}

.note-time {
    font-size: 12px;
    color: #45a29e;
}
/* ========== LOGIN PAGE - NEON GLASS ========== */

/* Center the login card */
body:has(.login-card) {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: radial-gradient(circle at 30% 40%, #0a0c18, #010101);
    overflow: hidden;
}

/* Extra orbs for login page */
body:has(.login-card)::before {
    width: 80vmax;
    height: 80vmax;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.06) 0%, transparent 70%);
    top: -30vh;
    left: -20vw;
    filter: blur(120px);
    animation: floatOrb 20s infinite alternate;
}

body:has(.login-card)::after {
    width: 70vmax;
    height: 70vmax;
    background: radial-gradient(circle, rgba(200, 0, 255, 0.06) 0%, transparent 70%);
    bottom: -30vh;
    right: -20vw;
    filter: blur(140px);
}

/* ===== MAIN LOGIN CARD (GLASS) ===== */
.login-card {
    position: relative;
    width: 400px;
    max-width: 90%;
    padding: 45px 35px;
    border-radius: 40px;
    background: rgba(12, 18, 30, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -10px rgba(0,0,0,0.6);
    text-align: center;
    z-index: 100;
    transition: 0.3s;
}

/* Gradient Animated Border (upgraded) */
.gradient-border {
    position: relative;
    background: rgba(12, 18, 30, 0.65);
    border-radius: 40px;
    z-index: 1;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 42px;
    background: linear-gradient(45deg, 
        #00ffe0, #ff44b0, #6e44ff, #00c3ff, #00ffe0);
    background-size: 400% 400%;
    animation: borderGlow 8s ease infinite;
    z-index: -1;
    opacity: 0.7;
    filter: blur(3px);
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== TYPOGRAPHY ===== */
.login-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(145deg, #ffffff, #a6f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.subtitle {
    font-size: 1rem;
    color: rgba(220, 240, 255, 0.7);
    margin-bottom: 35px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== INPUT FIELDS ===== */
.input-group {
    margin-bottom: 22px;
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s;
}

.input-group input:focus {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    background: rgba(20, 30, 50, 0.7);
}

.input-group input::placeholder {
    color: rgba(200, 220, 255, 0.4);
    font-weight: 400;
}

/* ===== PASSWORD TOGGLE ===== */
.password-group {
    position: relative;
}

.toggle-pass {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    color: rgba(200, 255, 255, 0.7);
    transition: 0.2s;
    padding: 5px;
}

.toggle-pass:hover {
    color: white;
    text-shadow: 0 0 12px cyan;
    transform: translateY(-50%) scale(1.1);
}

/* ===== LOGIN BUTTON (RIPPLE) ===== */
.login-btn {
    width: 100%;
    padding: 16px 20px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(145deg, #00c6ff, #a566ff);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(0, 200, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 200, 255, 0.5);
    background: linear-gradient(145deg, #1ad6ff, #b57aff);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: 0s;
}

.ripple:active::after {
    animation: rippleAnim 0.6s ease-out;
}

@keyframes rippleAnim {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== LOGIN MESSAGE ===== */
.login-msg {
    margin: 15px 0 10px;
    font-size: 0.9rem;
    color: #ffb3b3;
    background: rgba(255, 80, 80, 0.1);
    padding: 12px;
    border-radius: 50px;
    border-left: 4px solid #ff6666;
    text-align: left;
    font-weight: 500;
    display: none;
}

.login-msg:not(:empty) {
    display: block;
}

/* ===== LINKS ===== */
.login-links {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-links a {
    color: rgba(200, 230, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 0.5px solid rgba(255, 255, 255, 0.05);
}

.login-links a:hover {
    color: white;
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 8px cyan;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 500px) {
    .login-card {
        padding: 35px 25px;
    }
    
    .login-card h2 {
        font-size: 2rem;
    }
    
    .login-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .login-links a {
        width: 100%;
    }
}
/* ========== NAVBAR (GLASS) ========== */
.nav {
    background: rgba(8, 12, 25, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav .logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 0;
    position: relative;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a i {
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00ffe0, #ff66c7);
    border-radius: 10px;
    box-shadow: 0 0 15px #00ffff;
}

/* ========== MAIN CONTAINER ========== */
.container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    width: 90%;
    margin: 30px auto;
}

/* ========== WELCOME CARD ========== */
.welcome {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 35px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.welcome span {
    background: linear-gradient(145deg, #ffffff, #b5f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* ========== STATS GRID (GLASS MORPH) ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(15, 20, 30, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px black;
}

/* Gradient border animation on hover */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(145deg, #00ffe0, #ff44b0, #6e44ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover::before {
    opacity: 0.8;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -10px black, 0 0 30px rgba(0, 255, 255, 0.2);
    border-color: transparent;
}

.stat-card h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(200, 230, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stat-card p {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 5px 0 0;
    background: linear-gradient(to right, #fff, #c9f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
}

/* Membership card special */
.stat-card:last-child p {
    font-size: 2.2rem;
    -webkit-text-fill-color: white;
    background: linear-gradient(145deg, #a8ffb5, #b0f0ff);
    -webkit-background-clip: text;
}

/* ========== RECENT ACTIVITY ========== */
.recent-activity-box {
    background: rgba(10, 15, 28, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 36px;
    padding: 28px 35px;
    margin: 30px 0 50px;
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.5);
}

.recent-activity-box h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
}

.recent-activity-box h3 i {
    color: #00ffe0;
    text-shadow: 0 0 12px cyan;
}

#recentActivity {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 1rem;
    transition: 0.2s;
    border-radius: 20px;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 28px;
    border-bottom-color: transparent;
}

.activity-item span:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
}

.activity-item i {
    width: 24px;
    color: #7fd1ff;
    text-shadow: 0 0 6px cyan;
}

.activity-item small {
    color: rgba(200, 235, 255, 0.6);
    background: rgba(0, 255, 255, 0.06);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 0.5px solid rgba(255,255,255,0.1);
}

/* ========== SKELETON LOADER ========== */
.skeleton {
    height: 70px;
    margin-bottom: 12px;
    border-radius: 20px;
    background: linear-gradient(90deg, #181e28 25%, #232b38 37%, #181e28 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 700px) {
    .nav {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .nav-links {
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .welcome {
        font-size: 1.5rem;
        padding: 15px 20px;
    }
    
    .stat-card p {
        font-size: 2.6rem;
    }
    
    .recent-activity-box {
        padding: 20px;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Custom scroll */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0c14;
}
::-webkit-scrollbar-thumb {
    background: #2a3a55;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3e5a80;
}
/* ========== EARN PAGE - NEON CARDS ========== */

/* Earn page container */
.earn-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    width: 90%;
    margin: 30px auto;
}

/* Page Header */
.earn-header {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.earn-header i {
    color: #ffe484;
    text-shadow: 0 0 20px #ffaa00;
}

/* Section Cards */
.earn-section {
    background: rgba(15, 22, 36, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 36px;
    padding: 30px 35px;
    margin-bottom: 40px;
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.6);
    transition: 0.3s;
}

.earn-section:hover {
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 30px 50px -15px rgba(0, 200, 255, 0.1);
}

.earn-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    letter-spacing: -0.5px;
}

.earn-section h3 i {
    color: #00ffe0;
    text-shadow: 0 0 15px cyan;
    font-size: 1.8rem;
}

/* ===== QUIZ CARD ===== */
.quiz-card {
    background: rgba(10, 18, 30, 0.6);
    border-radius: 28px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

.quiz-question {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    padding: 20px;
    background: rgba(0, 255, 255, 0.02);
    border-radius: 20px;
    border-left: 5px solid #00ffe0;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.25s;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quiz-option:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 200, 255, 0.2);
    color: white;
}

.quiz-option i {
    color: #00ffe0;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.quiz-option span {
    font-weight: 700;
    color: #00ffe0;
    margin-right: 8px;
}

/* ========== SPIN COUNTER ========== */
.spin-counter-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(145deg, #1a1f2e, #0f1320);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 60px;
    padding: 15px 25px;
    margin-bottom: 20px;
}

.spin-daily, .spin-extra, .spin-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.spin-daily i { color: #ffd700; }
.spin-extra i { color: #00ffe0; }
.spin-total i { color: #a566ff; }

.spin-daily .label, .spin-extra .label, .spin-total .label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.spin-daily .count, .spin-extra .count, .spin-total .count {
    font-size: 1.5rem;
    font-weight: 800;
}

.spin-daily .count { color: #ffd700; }
.spin-extra .count { color: #00ffe0; }
.spin-total .count { 
    background: linear-gradient(145deg, #fff, #a0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Spin Win Animation */
.spin-win {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.spin-win i {
    font-size: 3rem;
    color: #ffd700;
    animation: bounce 1s ease;
}

.win-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

.win-reward {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(145deg, #ffd700, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Prize Badge */
.prize-badge {
    background: linear-gradient(145deg, #ffd700, #ffb347);
    padding: 8px 20px;
    border-radius: 50px;
    color: black;
    font-weight: 700;
    display: inline-block;
    margin-left: 10px;
}

/* No quiz message */
.no-quiz {
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.no-quiz i {
    font-size: 3rem;
    color: #00ffe0;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Loading Skeleton */
.quiz-skeleton {
    height: 200px;
    border-radius: 28px;
    background: linear-gradient(90deg, #1a1e2a 25%, #252c3a 37%, #1a1e2a 63%);
    background-size: 400% 100%;
    animation: shimmer 1.5s infinite;
}

/* Responsive */
@media (max-width: 700px) {
    .earn-header {
        font-size: 1.8rem;
        padding: 15px 25px;
    }
    
    .earn-section {
        padding: 20px;
    }
    
    .earn-section h3 {
        font-size: 1.5rem;
    }
    
    .quiz-question {
        font-size: 1.1rem;
    }
    
    .quiz-options {
        grid-template-columns: 1fr;
    }
    
    .spin-wheel-preview {
        width: 150px;
        height: 150px;
    }
    
    .spin-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}
/* ========== STREAK SYSTEM STYLES ========== */
.streak-card {
    background: linear-gradient(145deg, #1a1f2e, #0f1320);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.streak-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.streak-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 100, 0, 0.2);
    padding: 10px 20px;
    border-radius: 60px;
    border: 1px solid rgba(255, 150, 0, 0.3);
}

.streak-icon i {
    color: #ff6b00;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px #ff6b00);
}

.streak-count {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.streak-stats {
    flex: 1;
}

.streak-max, .streak-earned {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.streak-max i { color: #ffd700; }
.streak-earned i { color: #00ffe0; }

/* Calendar */
.streak-calendar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.calendar-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 16px;
    min-width: 70px;
    position: relative;
}

.calendar-day.claimed {
    background: rgba(0, 255, 100, 0.1);
    border: 1px solid rgba(0, 255, 100, 0.3);
}

.calendar-day.today {
    border: 2px solid #00ffe0;
    box-shadow: 0 0 20px rgba(0,255,200,0.3);
}

.day-name {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.day-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.calendar-day i {
    color: #00ff88;
    font-size: 1rem;
    margin-top: 5px;
}

.claim-today {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #00ffe0;
    color: black;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    animation: pulse 2s infinite;
}

/* Progress Bar */
.streak-progress {
    margin: 20px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.next-reward {
    background: linear-gradient(145deg, #ffd700, #ffb347);
    padding: 5px 15px;
    border-radius: 30px;
    color: black;
    font-weight: 700;
    font-size: 0.8rem;
}

.progress-bar-container {
    position: relative;
    margin-bottom: 8px;
}

.progress-bar-bg {
    height: 12px;
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #a566ff);
    border-radius: 20px;
    transition: width 0.5s ease;
}

.progress-text {
    position: absolute;
    right: 10px;
    top: -2px;
    font-size: 0.7rem;
    color: white;
    text-shadow: 0 1px 2px black;
}

.progress-remain {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-align: right;
}

/* Status Messages */
.streak-claim-pending {
    background: rgba(255, 170, 0, 0.15);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffd966;
    margin-top: 15px;
}

.streak-claimed-today {
    background: rgba(0, 255, 100, 0.1);
    border: 1px solid rgba(0, 255, 100, 0.3);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0ffc0;
    margin-top: 15px;
}

/* Premium Notification */
.streak-premium-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(145deg, #1a1f2e, #0f1320);
    border: 2px solid #ffd700;
    border-radius: 30px;
    padding: 30px;
    z-index: 10000;
    animation: premiumPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 60px rgba(255,215,0,0.3);
    text-align: center;
}

.premium-content i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 0 40px gold;
}

.premium-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.premium-rewards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.premium-rewards span {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes premiumPop {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .streak-calendar {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .calendar-day {
        min-width: calc(14.28% - 10px);
    }
    
    .streak-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .premium-content h3 {
        font-size: 1.2rem;
    }
    
    .premium-rewards {
        flex-direction: column;
        gap: 10px;
    }
}
/* ========== REDEEM PAGE - REWARDS CATALOG ========== */

.redeem-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    width: 90%;
    margin: 30px auto;
}

/* Header */
.redeem-header {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.redeem-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.redeem-header-left i {
    color: #ffd700;
    text-shadow: 0 0 20px #ffaa00;
}

/* Stamp Counter Badge */
.stamp-badge {
    background: linear-gradient(145deg, #ffd700, #ffb347);
    padding: 12px 25px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stamp-badge i {
    color: #000;
    font-size: 1.3rem;
}

.stamp-count {
    background: #000;
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 50px;
    margin-left: 10px;
    font-size: 1.1rem;
}

/* Rewards Grid */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

/* Reward Card */
.reward-card {
    background: rgba(15, 22, 36, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.6);
}

/* Gradient border animation */
.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    padding: 2px;
    background: linear-gradient(145deg, #00ffe0, #ff44b0, #6e44ff, #00c3ff);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    animation: borderGradient 6s ease infinite;
}

.reward-card:hover::before {
    opacity: 0.8;
}

.reward-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px -15px rgba(0, 200, 255, 0.2);
    border-color: transparent;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Reward Icon */
.reward-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-icon i {
    filter: drop-shadow(0 0 15px currentColor);
}

/* Reward Name */
.reward-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #e0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Reward Description */
.reward-desc {
    color: rgba(200, 220, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Stamp Cost */
.stamp-cost {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stamp-cost i {
    color: #ffd700;
    font-size: 1.5rem;
    text-shadow: 0 0 15px gold;
}

.cost-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.cost-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-left: 5px;
}

/* Redeem Button */
.redeem-btn {
    background: linear-gradient(145deg, #00c6ff, #a566ff);
    border: none;
    border-radius: 60px;
    padding: 16px 25px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.redeem-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 200, 255, 0.4);
    background: linear-gradient(145deg, #1ad6ff, #b57aff);
}

.redeem-btn:active {
    transform: translateY(0);
}

.redeem-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: linear-gradient(145deg, #666, #888);
    box-shadow: none;
}

.redeem-btn i {
    font-size: 1rem;
}

/* Insufficient Stamps */
.insufficient {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.3);
    border-radius: 20px;
    padding: 12px 15px;
    margin-top: 15px;
    color: #ffb3b3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.insufficient i {
    color: #ff6666;
}

/* Loading Skeleton */
.rewards-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.skeleton-card {
    height: 280px;
    border-radius: 32px;
    background: linear-gradient(90deg, #1a1e2a 25%, #252c3a 37%, #1a1e2a 63%);
    background-size: 400% 100%;
    animation: shimmer 1.5s infinite;
}

/* Empty State */
.no-rewards {
    grid-column: 1 / -1;
    padding: 80px 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.no-rewards i {
    font-size: 4rem;
    color: #00ffe0;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-rewards h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.no-rewards p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Redeem Success Animation */
.redeem-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 40px;
    border: 2px solid #00ff88;
    box-shadow: 0 0 60px rgba(0, 255, 100, 0.3);
    text-align: center;
    z-index: 9999;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% { transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 700px) {
    .redeem-header {
        font-size: 1.8rem;
        padding: 15px 25px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stamp-badge {
        width: 100%;
        justify-content: center;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .reward-card {
        padding: 25px;
    }
    
    .reward-name {
        font-size: 1.4rem;
    }
    
    .cost-amount {
        font-size: 1.5rem;
    }
}
/* ========== HISTORY PAGE - TRANSACTION LOGS ========== */

.history-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    width: 90%;
    margin: 30px auto;
}

/* History Header */
.history-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    gap: 20px;
}

.history-title {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.history-title i {
    color: #00ffe0;
    text-shadow: 0 0 20px cyan;
}

/* Filter Dropdown */
.filter-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.history-filter {
    background: rgba(15, 25, 40, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 14px 30px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300ffe0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
    min-width: 200px;
    transition: all 0.3s;
}

.history-filter:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.history-filter:focus {
    border-color: #00ffe0;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.history-filter option {
    background: #0a0f1a;
    color: white;
    padding: 15px;
}

/* Table Wrapper - Glass Effect */
.table-wrapper {
    background: rgba(12, 20, 32, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.6);
    overflow-x: auto;
}

/* Modern Table Design */
#historyTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

#historyTable thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#historyTable th {
    text-align: left;
    padding: 18px 15px;
    font-weight: 600;
    color: rgba(0, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    background: rgba(0, 255, 255, 0.03);
}

#historyTable td {
    padding: 16px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
}

#historyTable tbody tr:hover {
    background: rgba(0, 255, 255, 0.05);
}

#historyTable tbody tr:last-child td {
    border-bottom: none;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.badge-success {
    background: rgba(0, 255, 100, 0.15);
    color: #a0ffc0;
    border: 1px solid rgba(0, 255, 100, 0.3);
}

.badge-warning {
    background: rgba(255, 170, 0, 0.15);
    color: #ffd966;
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.badge-info {
    background: rgba(0, 255, 255, 0.15);
    color: #80ffff;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.badge-primary {
    background: rgba(100, 100, 255, 0.15);
    color: #b0b0ff;
    border: 1px solid rgba(100, 100, 255, 0.3);
}

/* Amount Styling */
.amount-positive {
    color: #00ff88;
    font-weight: 600;
}

.amount-negative {
    color: #ff8888;
    font-weight: 600;
}

/* Points Highlight */
.points-gain {
    color: #00ffe0;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Empty State */
.empty-state {
    padding: 60px 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.empty-state i {
    font-size: 4rem;
    color: rgba(0, 255, 255, 0.3);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

/* Modern Loader */
.loader {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #00ffe0;
    animation: spin 0.8s linear infinite;
    margin: 30px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Skeleton Loader for Table */
.skeleton-row {
    height: 60px;
    background: linear-gradient(90deg, #1a1e2a 25%, #252c3a 37%, #1a1e2a 63%);
    background-size: 400% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 12px;
    margin-bottom: 10px;
}

/* Summary Cards */
.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: rgba(15, 25, 40, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00ffe0;
}

.summary-info h4 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.summary-info p {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .history-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .history-title {
        font-size: 1.6rem;
        padding: 12px 20px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .history-filter {
        width: 100%;
    }
    
    .table-wrapper {
        padding: 15px;
    }
    
    #historyTable th,
    #historyTable td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

/* Invoice ID Style */
.invoice-id {
    font-family: monospace;
    background: rgba(0,0,0,0.3);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Date Style */
.date-cell {
    color: rgba(200, 220, 255, 0.7);
    font-size: 0.85rem;
}
/* ========== EDIT PROFILE PAGE - NEON PROFILE CARD ========== */

.profile-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 90%;
    margin: 30px auto;
}

/* Profile Header */
.profile-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    gap: 20px;
}

.profile-title {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.profile-title i {
    color: #00ffe0;
    text-shadow: 0 0 20px cyan;
}

/* Stats Badge */
.profile-stats-badge {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-pill {
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 60px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.stat-pill i {
    color: #00ffe0;
    font-size: 1.1rem;
}

.stat-pill span {
    font-weight: 600;
    color: white;
}

.stat-pill small {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 5px;
}

/* Profile Main Card */
.profile-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    margin-top: 20px;
}

@media (max-width: 900px) {
    .profile-card {
        grid-template-columns: 1fr;
    }
}

/* Profile Image Section */
.profile-image-section {
    background: rgba(15, 22, 36, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.6);
}

.image-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 25px;
}

.profile-preview {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.2);
    transition: 0.3s;
}

.profile-preview:hover {
    border-color: #00ffe0;
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.4);
    transform: scale(1.02);
}

.image-upload-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #00c6ff, #a566ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: 0.2s;
}

.image-upload-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.image-upload-btn i {
    color: white;
    font-size: 1.2rem;
}

.remove-image-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: rgba(255, 80, 80, 0.2);
    border: 1px solid rgba(255, 80, 80, 0.3);
    border-radius: 50px;
    color: #ffb3b3;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.remove-image-btn:hover {
    background: rgba(255, 80, 80, 0.3);
    border-color: #ff6666;
    color: white;
}

.member-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.member-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin: 12px 0;
    font-size: 0.95rem;
}

.member-info i {
    color: #00ffe0;
    width: 20px;
}

/* Profile Form Section */
.profile-form-section {
    background: rgba(15, 22, 36, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.6);
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.form-section-title i {
    color: #00ffe0;
    text-shadow: 0 0 15px cyan;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

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

.form-group.full-width {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .form-group.full-width {
        grid-column: span 1;
    }
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: white;
    font-size: 1rem;
    transition: all 0.25s;
}

.form-control:focus {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    background: rgba(20, 30, 50, 0.8);
    outline: none;
}

.form-control::placeholder {
    color: rgba(200, 220, 255, 0.3);
}

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

/* Password Section */
.password-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.password-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 16px;
    padding: 12px 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.password-hint i {
    color: #ffd700;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
}

.btn-primary {
    background: linear-gradient(145deg, #00c6ff, #a566ff);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 200, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 200, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Readonly field */
.form-control[readonly] {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.05);
}

/* Animation */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}
/* ========== SIGNUP PAGE - NEON GLASS ========== */

.signup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.signup-card {
    width: 480px;
    max-width: 100%;
    padding: 40px 35px;
    border-radius: 40px;
    background: rgba(12, 18, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -10px rgba(0,0,0,0.6);
}

.signup-header {
    text-align: center;
    margin-bottom: 35px;
}

.signup-header i {
    font-size: 3rem;
    color: #00ffe0;
    text-shadow: 0 0 30px cyan;
    margin-bottom: 15px;
}

.signup-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(145deg, #ffffff, #a6f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signup-header .subtitle {
    color: rgba(220, 240, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Form */
.signup-form {
    margin-bottom: 25px;
}

/* Input Groups */
.input-group {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: rgba(0, 255, 255, 0.5);
    font-size: 1rem;
    z-index: 1;
}

.input-group input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.25s;
}

.input-group input:focus {
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    background: rgba(20, 30, 50, 0.8);
    outline: none;
}

.input-group input::placeholder {
    color: rgba(200, 220, 255, 0.3);
}

/* Password Group */
.password-group {
    position: relative;
}

.toggle-pass {
    position: absolute;
    right: 18px;
    cursor: pointer;
    font-size: 1.2rem;
    color: rgba(200, 255, 255, 0.7);
    transition: 0.2s;
}

.toggle-pass:hover {
    color: white;
    text-shadow: 0 0 12px cyan;
    transform: scale(1.1);
}

/* Password Strength */
.password-strength {
    margin-top: -10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.strength-bar-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
}

.strength-text {
    font-size: 0.8rem;
    min-width: 110px;
    text-align: right;
}

/* Terms Checkbox */
.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ffe0;
    border-radius: 6px;
}

.terms-checkbox a {
    color: #00ffe0;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

/* Signup Button */
.signup-btn {
    width: 100%;
    padding: 16px 20px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(145deg, #00c6ff, #a566ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 200, 255, 0.3);
    margin-top: 10px;
}

.signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 200, 255, 0.5);
}

.signup-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Message Box */
.signup-msg {
    margin: 20px 0 10px;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 0.95rem;
    display: none;
    border-left: 4px solid;
}

/* Login Link */
.login-link {
    margin-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.login-link a {
    color: #00ffe0;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: 0.2s;
}

.login-link a:hover {
    text-shadow: 0 0 10px cyan;
}

.login-link i {
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Features List */
.signup-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.feature-item i {
    font-size: 1.3rem;
    color: #00ffe0;
    text-shadow: 0 0 15px cyan;
}

/* Secure Badge */
.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.secure-badge i {
    color: #00ff88;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: rgba(15, 25, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-icon {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 255, 100, 0.5);
}

.modal h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(145deg, #fff, #a0ffc0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.user-id-card {
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.id-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.id-value {
    font-size: 2rem;
    font-weight: 800;
    color: #00ffe0;
    text-shadow: 0 0 20px cyan;
    letter-spacing: 2px;
}

.copy-id-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 25px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.copy-id-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffe0;
}

.id-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.modal-btn {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(145deg, #00c6ff, #a566ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 200, 255, 0.5);
}

/* Responsive */
@media (max-width: 500px) {
    .signup-card {
        padding: 30px 20px;
    }
    
    .signup-header h2 {
        font-size: 1.8rem;
    }
    
    .signup-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: row;
        justify-content: center;
    }
}
/* ========== FORGOT PASSWORD PAGE - NEON GLASS ========== */

.forgot-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.forgot-card {
    width: 500px;
    max-width: 100%;
    padding: 40px 35px;
    border-radius: 40px;
    background: rgba(12, 18, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -10px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

/* Shake animation for error */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Header */
.forgot-header {
    text-align: center;
    margin-bottom: 35px;
}

.header-icon {
    font-size: 3.5rem;
    color: #00ffe0;
    text-shadow: 0 0 30px cyan;
    margin-bottom: 15px;
}

.forgot-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(145deg, #ffffff, #a6f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.forgot-header .subtitle {
    color: rgba(220, 240, 255, 0.7);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Form */
.forgot-form {
    margin-bottom: 25px;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 16px;
    margin: 20px 0 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.info-box i {
    color: #00ffe0;
    font-size: 1.1rem;
}

/* Forgot Button */
.forgot-btn {
    width: 100%;
    padding: 16px 20px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(145deg, #00c6ff, #a566ff);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 200, 255, 0.3);
    margin-top: 10px;
}

.forgot-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 200, 255, 0.5);
}

.forgot-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Password Card */
.password-card {
    margin-top: 30px;
    padding: 25px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    text-align: center;
}

.password-icon {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 15px;
}

.password-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.password-value {
    font-size: 2rem;
    font-weight: 800;
    color: #00ffe0;
    text-shadow: 0 0 20px cyan;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: monospace;
}

.password-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.copy-password-btn,
.show-password-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-password-btn:hover,
.show-password-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffe0;
}

.password-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.password-warning i {
    color: #ffd700;
}

/* Signup Link */
.signup-link {
    margin-top: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.signup-link a {
    color: #00ffe0;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: 0.2s;
}

.signup-link a:hover {
    text-shadow: 0 0 10px cyan;
}

/* Support Contact */
.support-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.support-contact i {
    color: #00ffe0;
}

.support-contact a {
    color: #a0e0ff;
    text-decoration: none;
}

.support-contact a:hover {
    text-decoration: underline;
}

/* Message Box */
.forgot-msg {
    margin: 20px 0 10px;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 0.95rem;
    display: none;
    border-left: 4px solid;
}

/* Password Reveal Card in Modal */
.password-reveal-card {
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.reveal-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reveal-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00ffe0;
    text-shadow: 0 0 20px cyan;
    letter-spacing: 2px;
    font-family: monospace;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.security-note i {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 500px) {
    .forgot-card {
        padding: 30px 20px;
    }
    
    .forgot-header h2 {
        font-size: 1.6rem;
    }
    
    .password-value {
        font-size: 1.5rem;
    }
    
    .password-actions {
        flex-direction: column;
    }
    
    .copy-password-btn,
    .show-password-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ========== READ TO EARN - PROGRESS BAR ========== */
.read-earn-section {
    background: linear-gradient(145deg, #1a1f2e, #0f1320);
    border: 1px solid rgba(0, 255, 200, 0.15);
    border-radius: 32px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.read-earn-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,255,200,0.02) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
    pointer-events: none;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 200, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: #00ffe0;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(145deg, #fff, #a0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* COMPLETION CARD */
.completion-card {
    background: rgba(20, 30, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

.completion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.completion-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.completion-title i {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
    font-size: 1.6rem;
}

.completion-reward {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, #ffd700, #ffb347);
    padding: 10px 25px;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 30px rgba(255,215,0,0.3);
}

.completion-reward i {
    font-size: 1.2rem;
}

/* PROGRESS BAR LARGE */
.completion-progress {
    margin-bottom: 20px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
}

.progress-label {
    font-size: 1rem;
    letter-spacing: 1px;
}

.progress-percentage {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffe0;
    text-shadow: 0 0 15px rgba(0,255,200,0.5);
}

.progress-bar-large {
    position: relative;
    height: 24px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: visible;
    margin-bottom: 10px;
}

.progress-fill {
    position: relative;
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #a566ff, #ff44b0, #00c6ff);
    background-size: 300% 100%;
    border-radius: 30px;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: gradientFlow 8s linear infinite;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0,200,255,0.5);
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.progress-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.8), rgba(255,255,255,0.2));
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.progress-milestones {
    position: relative;
    height: 30px;
    margin-top: 5px;
}

.milestone {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    padding-top: 5px;
}

.milestone::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: rgba(255,255,255,0.3);
}

/* STATS */
.progress-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(145deg, #fff, #a0f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
}

.stat-divider {
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
}

/* REWARD READY */
.reward-ready {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(0,255,200,0.1), rgba(165,102,255,0.1));
    border: 1px solid rgba(0,255,200,0.3);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 20px rgba(0,255,200,0.2); }
    50% { box-shadow: 0 0 40px rgba(0,255,200,0.4); }
    100% { box-shadow: 0 0 20px rgba(0,255,200,0.2); }
}

.reward-glow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.reward-glow i {
    color: #ffd700;
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.claim-spin-btn {
    background: linear-gradient(145deg, #00c6ff, #a566ff);
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.claim-spin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,200,255,0.5);
}