/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A1A2A 50%, #1A1A1A 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    min-height: 100vh;
    color: #FFFFFF;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(128, 0, 128, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

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

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #800080 50%, #FFD700 100%);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

@keyframes logoGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
        transform: scale(1.05);
    }
}

@keyframes logoWave {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
    }
    25% { 
        transform: scale(1.02) rotate(1deg);
    }
    50% { 
        transform: scale(1.01) rotate(0deg);
    }
    75% { 
        transform: scale(1.03) rotate(-1deg);
    }
}

@keyframes logoRipple {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nav-logo:hover {
    animation-play-state: paused;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.nav-logo i {
    font-size: 1.8rem;
}

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

.nav-link {
    text-decoration: none;
    color: #CCCCCC;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
}

.btn:active::before {
    width: 300px;
    height: 300px;
}


.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #800080 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}


.btn-primary:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #FFD700;
    border: 2px solid #FFD700;
}

.btn-secondary:hover:not(:disabled) {
    background: #FFD700;
    color: #1A1A1A;
}

/* Main Content */
.main-content {
    margin-top: 70px;
    padding: 40px 0;
    position: relative;
}

.main-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #800080 50%, #FFD700 100%);
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite reverse;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    display: none;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700 0%, #800080 50%, #FFD700 100%);
    background-size: 200% 100%;
    animation: gradientFlow 4s linear infinite;
    opacity: 0.6;
}

.section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes sectionScroll {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg);
    }
    25% { 
        transform: translateY(-2px) rotateX(0.5deg);
    }
    50% { 
        transform: translateY(0px) rotateX(0deg);
    }
    75% { 
        transform: translateY(2px) rotateX(-0.5deg);
    }
}

@keyframes sectionGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.section.active {
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}

@keyframes titleFloat {
    0%, 100% { 
        transform: translateY(0px);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: translateY(-5px);
        text-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    }
}

@keyframes titleWave {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
    }
    25% { 
        transform: scale(1.02) rotate(0.5deg);
    }
    50% { 
        transform: scale(1.01) rotate(0deg);
    }
    75% { 
        transform: scale(1.03) rotate(-0.5deg);
    }
}

@keyframes titleSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
}

/* Ensure 4-5 cards per row on larger screens */
@media (min-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: 100%;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stats-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: gridPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gridFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

@keyframes gridWave {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
    }
    25% { 
        transform: scale(1.01) rotate(0.2deg);
    }
    50% { 
        transform: scale(1.005) rotate(0deg);
    }
    75% { 
        transform: scale(1.015) rotate(-0.2deg);
    }
}

@keyframes gridPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.stat-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover::after {
    opacity: 1;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8) rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes cardRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-card:hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.stat-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #800080 100%);
    background-size: 200% 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.stat-icon:hover {
    animation-play-state: paused;
}

.stat-icon:hover::before {
    animation-play-state: paused;
}

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

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes iconRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

.stat-content h3 {
    font-size: 0.8rem;
    color: #CCCCCC;
    margin-bottom: 4px;
    font-weight: 500;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.stat-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
}

@keyframes valueCounter {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
}

@keyframes valueType {
    0%, 100% { 
        transform: translateX(0px);
    }
    25% { 
        transform: translateX(2px);
    }
    50% { 
        transform: translateX(0px);
    }
    75% { 
        transform: translateX(-2px);
    }
}

@keyframes valueSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* User Info Grid */
.user-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes cardBreath {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.2);
    }
    50% { 
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
    }
}

@keyframes card3D {
    0%, 100% { 
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% { 
        transform: rotateX(2deg) rotateY(1deg) rotateZ(0.5deg);
    }
    50% { 
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    75% { 
        transform: rotateX(-2deg) rotateY(-1deg) rotateZ(-0.5deg);
    }
}

.info-card:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.02) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item span:first-child {
    color: #CCCCCC;
    font-weight: 500;
}

.info-item span:last-child {
    color: #FFFFFF;
    font-weight: 600;
}

/* Slots Section */
.slots-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.slots-info,
.growth-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slots-info h3,
.growth-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.slots-info p,
.growth-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.slot-stats,
.growth-stats {
    margin-bottom: 25px;
}

.slot-stat,
.growth-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.slot-stat:last-child,
.growth-stat:last-child {
    border-bottom: none;
}

.slot-stat span:first-child,
.growth-stat span:first-child {
    color: #666;
    font-weight: 500;
}

.slot-stat span:last-child,
.growth-stat span:last-child {
    color: #333;
    font-weight: 600;
}

.slots-visual {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slots-visual h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.slot-item {
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.slot-item.owned {
    background: linear-gradient(135deg, #FFD700 0%, #800080 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.slot-item.available {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 2px solid #FFD700;
}

.slot-item.locked {
    background: #f5f5f5;
    color: #999;
    border: 2px solid #e0e0e0;
}

/* Growth Section */
.growth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.earnings-table {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.earnings-table h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

th {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    font-weight: 600;
}

tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.status-completed {
    color: #10b981;
    font-weight: 600;
}

.status-current {
    color: #f59e0b;
    font-weight: 600;
}

.status-pending {
    color: #6b7280;
    font-weight: 600;
}

.status-active {
    color: #10b981;
    font-weight: 600;
}

.status-inactive {
    color: #ef4444;
    font-weight: 600;
}

.status-got-it {
    color: #10b981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-lost {
    color: #ef4444;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Referrals Section */
.referrals-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.referral-info {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.referral-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 20px;
}

.referral-link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.referral-link-container input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    background: white;
}

.referral-link-container input:focus {
    outline: none;
    border-color: #FFD700;
}

.referral-stats {
    margin-bottom: 20px;
}

.referral-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.referral-stat:last-child {
    border-bottom: none;
}

.referral-stat span:first-child {
    color: #CCCCCC;
    font-weight: 500;
}

.referral-stat span:last-child {
    color: #FFFFFF;
    font-weight: 600;
}

.referrals-list {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.referrals-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-toggle .btn {
    padding: 8px 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-toggle .btn.active {
    background: #FFD700;
    color: #1A1A1A;
    border-color: #FFD700;
}

.referrals-list h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 20px;
}

/* System Sections */
.key-purchase-system,
.gcc-income-system {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: systemPulse 6s ease-in-out infinite, system3D 8s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes systemPulse {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.2);
    }
    50% { 
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
        border-color: rgba(255, 215, 0, 0.3);
    }
}

@keyframes system3D {
    0%, 100% { 
        transform: rotateX(0deg) rotateY(0deg);
    }
    25% { 
        transform: rotateX(1deg) rotateY(0.5deg);
    }
    50% { 
        transform: rotateX(0deg) rotateY(0deg);
    }
    75% { 
        transform: rotateX(-1deg) rotateY(-0.5deg);
    }
}

.key-purchase-system:hover,
.gcc-income-system:hover {
    animation-play-state: paused;
    transform: translateY(-3px) rotateX(3deg) rotateY(3deg);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.system-header {
    margin-bottom: 25px;
}

.system-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 10px;
}

.system-header p {
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

.key-purchase-content,
.gcc-income-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    margin-bottom: 25px;
}

.key-stats,
.gcc-stats {
    display: grid;
    gap: 10px;
}

.key-stat,
.gcc-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.key-stat:last-child,
.gcc-stat:last-child {
    border-bottom: none;
}

.key-stat span:first-child,
.gcc-stat span:first-child {
    color: #CCCCCC;
    font-weight: 500;
}

.key-stat span:last-child,
.gcc-stat span:last-child {
    color: #FFFFFF;
    font-weight: 600;
}

.key-actions,
.gcc-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.key-visual {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 12px;
    max-width: 250px;
    margin: 0 auto;
}

.key-visual h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 12px;
    text-align: center;
}


.schedule-header {
    text-align: center;
    margin-bottom: 25px;
}

.schedule-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.schedule-header h3 i {
    font-size: 1.2rem;
}

.schedule-header p {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin: 0;
}

.schedule-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.2rem;
}

.stat-info {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    color: #AAAAAA;
    font-weight: 500;
}

.schedule-timeline {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.timeline-header h4 {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.timeline-controls {
    display: flex;
    gap: 8px;
}

.timeline-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #CCCCCC;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

.timeline-btn.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: #FFD700;
    color: #1a1a1a;
    font-weight: 600;
}

.timeline-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.timeline-container::-webkit-scrollbar {
    width: 6px;
}

.timeline-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.timeline-container::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.5);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-left-color: #FFD700;
    transform: translateX(5px);
}

.timeline-item.completed {
    border-left-color: #00FF88;
    background: rgba(0, 255, 136, 0.05);
}

.timeline-item.pending {
    border-left-color: #FFA500;
    background: rgba(255, 165, 0, 0.05);
}

.timeline-item.claimed {
    border-left-color: #00BFFF;
    background: rgba(0, 191, 255, 0.05);
}

.timeline-week {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFD700;
    margin-right: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.timeline-week.completed {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 200, 100, 0.2));
    border-color: rgba(0, 255, 136, 0.5);
    color: #00FF88;
}

.timeline-week.pending {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.2));
    border-color: rgba(255, 165, 0, 0.5);
    color: #FFA500;
}

.timeline-week.claimed {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(0, 150, 200, 0.2));
    border-color: rgba(0, 191, 255, 0.5);
    color: #00BFFF;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
    font-size: 1rem;
}

.timeline-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 4px;
}

.timeline-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-status.completed {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.timeline-status.pending {
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.timeline-status.claimed {
    background: rgba(0, 191, 255, 0.2);
    color: #00BFFF;
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.timeline-action {
    margin-left: 15px;
}

.timeline-action .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-action .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Registration Modal Styles */
.registration-info {
    padding: 20px 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(128, 0, 128, 0.1));
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.info-card i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 10px;
}

.info-card h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-card p {
    color: #CCCCCC;
    margin: 0;
}

.registration-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.registration-details h4 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.registration-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-details li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #CCCCCC;
}

.registration-details li i {
    margin-right: 10px;
    width: 20px;
}

.text-success {
    color: #00FF88 !important;
}

.text-info {
    color: #00BFFF !important;
}

.text-primary {
    color: #FFD700 !important;
}

.gas-fee-explanation {
    background: rgba(255, 165, 0, 0.1);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.gas-fee-explanation h5 {
    color: #FFA500;
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.gas-fee-explanation h5 i {
    margin-right: 8px;
}

.gas-fee-explanation p {
    color: #CCCCCC;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Network Switch Modal Styles */
.network-info {
    padding: 20px 0;
}

.network-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.network-details h4 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.network-card {
    display: flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.network-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.network-card .network-info h5 {
    color: #FFD700;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.network-card .network-info p {
    color: #CCCCCC;
    margin: 0;
    font-size: 0.9rem;
}

.network-benefits {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.network-benefits h5 {
    color: #00FF88;
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.network-benefits h5 i {
    margin-right: 8px;
}

.network-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.network-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #CCCCCC;
    font-size: 0.9rem;
}

.network-benefits li i {
    color: #00FF88;
    margin-right: 10px;
    width: 16px;
}

.keys-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    max-width: 200px;
    margin: 0 auto;
}

.key-item {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.6rem;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.key-item.owned {
    background: linear-gradient(135deg, #FFD700 0%, #800080 100%);
    background-size: 200% 200%;
    animation: keyGlow 2s ease-in-out infinite, keyMorph 4s ease-in-out infinite;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.key-item.owned::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: keyRotate 3s linear infinite;
    opacity: 0.5;
}

@keyframes keyGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    }
}

@keyframes keyMorph {
    0%, 100% { 
        border-radius: 12px;
        transform: scale(1);
    }
    25% { 
        border-radius: 20px;
        transform: scale(1.05);
    }
    50% { 
        border-radius: 8px;
        transform: scale(1.02);
    }
    75% { 
        border-radius: 16px;
        transform: scale(1.08);
    }
}

@keyframes keyRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.key-item.available {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 2px solid #FFD700;
    animation: keyPulse 3s ease-in-out infinite, keyWave 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.key-item.available::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: keySweep 2s ease-in-out infinite;
}

@keyframes keyPulse {
    0%, 100% { 
        border-color: #FFD700;
        box-shadow: 0 0 0 rgba(255, 215, 0, 0);
    }
    50% { 
        border-color: #FFA500;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
}

@keyframes keyWave {
    0%, 100% { 
        transform: scale(1);
        border-radius: 12px;
    }
    50% { 
        transform: scale(1.1);
        border-radius: 20px;
    }
}

@keyframes keySweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.key-item.locked {
    background: #f5f5f5;
    color: #999;
    border: 2px solid #e0e0e0;
}

/* Claim Section Styles */
.claim-section {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 30px;
}

.claim-header {
    margin-bottom: 25px;
}

.claim-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 10px;
}

.claim-header p {
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

.claim-balances {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.claim-balance {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.balance-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.balance-label {
    font-size: 0.9rem;
    color: #CCCCCC;
    font-weight: 500;
}

.balance-amount {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    animation: balancePulse 3s ease-in-out infinite, balanceType 4s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.balance-amount::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: balanceSweep 3s ease-in-out infinite;
}

@keyframes balancePulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: scale(1.02);
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
}

@keyframes balanceType {
    0%, 100% { 
        transform: translateY(0px);
    }
    25% { 
        transform: translateY(-1px);
    }
    50% { 
        transform: translateY(0px);
    }
    75% { 
        transform: translateY(1px);
    }
}

@keyframes balanceSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Team Overview Styles */
.team-overview {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 30px;
}

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

.team-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFD700;
    margin: 0;
}

.team-table-container {
    overflow-x: auto;
}

/* Level View Container */
.level-view-container {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: levelViewPulse 6s ease-in-out infinite, levelView3D 8s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes levelViewPulse {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.2);
    }
    50% { 
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
        border-color: rgba(255, 215, 0, 0.3);
    }
}

@keyframes levelView3D {
    0%, 100% { 
        transform: rotateX(0deg) rotateY(0deg);
    }
    25% { 
        transform: rotateX(1deg) rotateY(0.5deg);
    }
    50% { 
        transform: rotateX(0deg) rotateY(0deg);
    }
    75% { 
        transform: rotateX(-1deg) rotateY(-0.5deg);
    }
}

.level-view-container:hover {
    animation-play-state: paused;
    transform: translateY(-3px) rotateX(3deg) rotateY(3deg);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.level-view-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

/* Level Tabs */
.level-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.level-tab {
    padding: 10px 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: rgba(26, 26, 26, 0.8);
    color: #CCCCCC;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 80px;
    text-align: center;
    z-index: 10;
    pointer-events: auto;
    user-select: none;
}

.level-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.level-tab:hover::before {
    left: 100%;
}

.level-tab:hover {
    border-color: rgba(255, 215, 0, 0.6);
    color: #FFD700;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.level-tab.active {
    background: linear-gradient(135deg, #FFD700 0%, #800080 100%);
    background-size: 200% 200%;
    animation: tabGradient 3s ease-in-out infinite;
    color: white;
    border-color: #FFD700;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.level-tab.active::before {
    display: none;
}

/* Compact Level Tabs */
.level-header {
    text-align: center;
    margin-bottom: 20px;
}

.level-header h3 {
    font-size: 1.5rem;
    color: #4ECDC4;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.level-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.level-tabs-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 25px;
    justify-content: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.level-tab-compact {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(78, 205, 196, 0.3);
    background: rgba(26, 26, 26, 0.8);
    color: #CCCCCC;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.level-tab-compact:hover {
    border-color: rgba(78, 205, 196, 0.6);
    background: rgba(78, 205, 196, 0.1);
    color: #4ECDC4;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
}

.level-tab-compact.active {
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
    color: #000;
    border-color: #4ECDC4;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    font-weight: 700;
}

.level-tab-compact.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

/* Level Content */
.level-content {
    animation: contentFadeIn 0.5s ease-in-out;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.level-info {
    margin-bottom: 20px;
    text-align: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.level-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 8px;
}

.level-info p {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin: 0;
}

/* Updating animation for level info */
.level-info h4.updating,
.level-info p.updating {
    animation: levelInfoUpdate 0.3s ease-in-out;
    color: #FFD700;
}

@keyframes levelInfoUpdate {
    0% { 
        opacity: 0.5;
        transform: scale(0.95);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
        color: #FFD700;
    }
    100% { 
        opacity: 1;
        transform: scale(1);
        color: #FFD700;
    }
}

.level-view-table {
    overflow-x: auto;
}

.level-view-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.level-view-table th {
    background: linear-gradient(135deg, #FFD700 0%, #800080 100%);
    color: white;
    font-weight: 600;
    padding: 15px 12px;
    text-align: left;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.level-view-table th::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: headerSweep 3s ease-in-out infinite;
}

@keyframes headerSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.level-view-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.level-view-table tr:hover td {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.01);
}

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

/* Tree Visualization */
.tree-container {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.tree-visualization {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    min-height: 400px;
}

.tree-level {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    width: 100%;
}

.tree-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.node-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #20B2AA 0%, #00CED1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    transition: all 0.3s ease;
    animation: nodePulse 3s ease-in-out infinite;
}

.node-icon i {
    font-size: 1.1rem;
}

.node-label {
    margin-top: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 8px;
    min-width: 60px;
}

.tree-node.available .node-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    animation: availablePulse 2s ease-in-out infinite;
}

.tree-node.available .node-label {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.root-node .node-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #FFD700 0%, #800080 100%);
    animation: rootPulse 4s ease-in-out infinite;
}

.root-node .node-label {
    font-size: 1rem;
    font-weight: 700;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
}

/* Tree Connections */
.tree-visualization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.tree-level::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #FFD700 0%, #800080 100%);
    animation: connectionFlow 3s ease-in-out infinite;
}

.tree-level.level-1::before {
    height: 40px;
}

.tree-level.level-2::before {
    height: 40px;
}

.tree-node:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700 0%, #800080 100%);
    animation: connectionFlow 3s ease-in-out infinite;
}

/* Animations */
@keyframes nodePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(32, 178, 170, 0.5);
    }
}

@keyframes availablePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    }
}

@keyframes rootPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    }
}

@keyframes connectionFlow {
    0%, 100% { 
        opacity: 0.6;
        transform: translateX(-50%) scaleY(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleY(1.1);
    }
}

/* Referral Details */
.referral-details {
    display: grid;
    gap: 20px;
}

.detail-item {
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #FFD700;
}

.detail-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 10px;
}

.detail-item p {
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

.referrals-table-container {
    overflow-x: auto;
}

.no-data {
    text-align: center;
    color: #CCCCCC;
    font-style: italic;
    padding: 20px;
}

/* Withdraw Section */
.withdraw-container {
    max-width: 600px;
    margin: 0 auto;
}

.withdraw-balances {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.withdraw-balances h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.balance-item:last-child {
    border-bottom: none;
}

.balance-item.total {
    background: rgba(102, 126, 234, 0.1);
    margin: 15px -15px -15px -15px;
    padding: 20px 15px;
    border-radius: 0 0 20px 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.balance-item span:first-child {
    color: #666;
    font-weight: 500;
}

.balance-item span:last-child {
    color: #333;
    font-weight: 600;
}

.withdraw-actions {
    text-align: center;
}

.claim-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.claim-buttons .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    min-height: 80px;
    justify-content: center;
}

.claim-buttons .btn i {
    font-size: 1.2rem;
}

.withdraw-note {
    color: #CCCCCC;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    background: rgba(26, 26, 26, 0.95);
    color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    animation: spinnerFloat 2s ease-in-out infinite, spinner3D 4s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes spinnerFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    50% { 
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 80px rgba(255, 215, 0, 0.2);
    }
}

@keyframes spinner3D {
    0%, 100% { 
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    25% { 
        transform: rotateX(5deg) rotateY(2deg) rotateZ(1deg);
    }
    50% { 
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    75% { 
        transform: rotateX(-5deg) rotateY(-2deg) rotateZ(-1deg);
    }
}

.loading-spinner i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.loading-spinner p {
    color: #CCCCCC;
    font-weight: 500;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* MetaMask Installation Modal */
.metamask-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: rgba(26, 26, 26, 0.95);
    color: #FFFFFF;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out, modal3D 4s ease-in-out infinite;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes modal3D {
    0%, 100% { 
        transform: rotateX(0deg) rotateY(0deg);
    }
    25% { 
        transform: rotateX(1deg) rotateY(0.5deg);
    }
    50% { 
        transform: rotateX(0deg) rotateY(0deg);
    }
    75% { 
        transform: rotateX(-1deg) rotateY(-0.5deg);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFD700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-body {
    padding: 25px 30px 30px;
}

.modal-body p {
    color: #CCCCCC;
    margin-bottom: 25px;
    line-height: 1.6;
}

.install-steps {
    margin-bottom: 25px;
}

.step {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: #CCCCCC;
    line-height: 1.5;
}

.step:last-child {
    border-bottom: none;
}

.step strong {
    color: #FFD700;
}

.step a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
}

.step a:hover {
    text-decoration: underline;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-actions .btn {
    min-width: 140px;
}

.wallet-options {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.wallet-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.wallet-option:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.2);
}

.wallet-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFD700;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet-info p {
    color: #CCCCCC;
    margin: 0;
    font-size: 0.9rem;
}

.wallet-option .btn {
    min-width: 100px;
    padding: 8px 16px;
    font-size: 0.9rem;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.8) rotateX(20deg) rotateY(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg) rotateY(0deg);
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background: rgba(26, 26, 26, 0.95);
    color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    border-left: 4px solid #FFD700;
    animation: slideIn 0.3s ease-out;
    max-width: 300px;
}

.toast.success {
    border-left-color: #10b981;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast.warning {
    border-left-color: #f59e0b;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.9) rotateY(20deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Contract Status Indicator */
.contract-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
    vertical-align: middle;
}

.contract-status.connected {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.contract-status.demo {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Level Count Badge */
.level-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

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

/* GCC Level View Specific Styles */
#gcc-dashboard .level-view-container {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 106, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.2);
}

#gcc-dashboard .level-tabs {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

#gcc-dashboard .level-tab {
    border: 2px solid rgba(0, 255, 136, 0.3);
    background: rgba(26, 26, 26, 0.8);
    color: #CCCCCC;
}

#gcc-dashboard .level-tab:hover {
    border-color: rgba(0, 255, 136, 0.6);
    background: rgba(0, 255, 136, 0.1);
    color: #00FF88;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

#gcc-dashboard .level-tab.active {
    background: linear-gradient(135deg, #00FF88, #00CC6A);
    color: #000;
    border-color: #00FF88;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

#gcc-dashboard .level-info {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
}

#gcc-dashboard .level-info h4 {
    color: #00FF88;
}

#gcc-dashboard .level-view-table {
    border: 1px solid rgba(0, 255, 136, 0.2);
}

#gcc-dashboard .level-view-table th {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 106, 0.05));
    color: #00FF88;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
}

#gcc-dashboard .level-view-table tr:hover {
    background: rgba(0, 255, 136, 0.05);
}

#gcc-dashboard .status.active {
    background: linear-gradient(135deg, #00FF88, #00CC6A);
    color: #000;
}

#gcc-dashboard .status.inactive {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

/* Wallet Connection Prompt */
.wallet-connect-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.wallet-connect-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(40, 40, 40, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: walletCardPulse 3s ease-in-out infinite;
}

@keyframes walletCardPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 25px 50px rgba(255, 215, 0, 0.1);
    }
}

.wallet-connect-icon {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 20px;
    animation: walletIconFloat 2s ease-in-out infinite;
}

@keyframes walletIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.wallet-connect-card h1 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.wallet-connect-card p {
    color: #CCCCCC;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.wallet-connect-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.wallet-connect-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.wallet-connect-features .feature:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

.wallet-connect-features .feature i {
    color: #FFD700;
    font-size: 1.2rem;
    width: 20px;
}

.wallet-connect-features .feature span {
    color: #FFFFFF;
    font-weight: 500;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    min-width: 200px;
}

.btn-large:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.wallet-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.wallet-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.wallet-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.wallet-btn:hover::before {
    left: 100%;
}

.wallet-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wallet-btn.metamask:hover {
    border-color: #E2761B;
    box-shadow: 0 10px 30px rgba(226, 118, 27, 0.3);
}

.wallet-btn.trust:hover {
    border-color: #3375BB;
    box-shadow: 0 10px 30px rgba(51, 117, 188, 0.3);
}

.wallet-btn.binance:hover {
    border-color: #F3BA2F;
    box-shadow: 0 10px 30px rgba(243, 186, 47, 0.3);
}

.wallet-btn.walletconnect:hover {
    border-color: #3B99FC;
    box-shadow: 0 10px 30px rgba(59, 153, 252, 0.3);
}

.wallet-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.wallet-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    visibility: visible;
    opacity: 1;
}

.wallet-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.wallet-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFFFFF;
}

.wallet-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.wallet-fallback {
    margin-top: 20px;
    text-align: center;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.8), rgba(73, 80, 87, 0.9));
    border: 2px solid rgba(108, 117, 125, 0.3);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.9), rgba(73, 80, 87, 1));
    border-color: rgba(108, 117, 125, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.2);
}

.wallet-connect-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.wallet-connect-note p {
    color: #87CEEB;
    font-size: 0.9rem;
    margin: 0;
}

.wallet-connect-note i {
    color: #007BFF;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    
    .schedule-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .timeline-controls {
        width: 100%;
        justify-content: center;
    }
    
    .timeline-item {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .timeline-week {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 0;
        align-self: center;
    }
    
    .timeline-content {
        width: 100%;
        text-align: center;
    }
    
    .timeline-action {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        margin: 10px 0;
        padding: 15px 20px;
        width: 80%;
        text-align: center;
        border-radius: 12px;
        font-size: 16px;
        color: #CCCCCC;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 215, 0, 0.1);
        color: #FFD700;
        border-color: rgba(255, 215, 0, 0.4);
    }
    
    .nav-menu .nav-link.active {
        background: rgba(255, 215, 0, 0.15);
        color: #FFD700;
        border-color: rgba(255, 215, 0, 0.5);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .user-info-grid {
        grid-template-columns: 1fr;
    }
    
    .slots-container,
    .growth-container,
    .referrals-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .container {
        padding: 0 15px;
    }
    
    .stat-card {
        padding: 10px;
    }
    
    .info-card,
    .slots-info,
    .growth-info,
    .slots-visual,
    .earnings-table,
    .referral-info,
    .referrals-list,
    .withdraw-balances {
        padding: 20px;
    }
    
    .referrals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .view-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .view-toggle .btn {
        flex: 1;
        justify-content: center;
    }
    
    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .team-overview {
        padding: 20px;
        margin-top: 20px;
    }
    
    .referral-details {
        gap: 15px;
    }
    
    .detail-item {
        padding: 15px;
    }
    
    .key-purchase-content,
    .gcc-income-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .key-purchase-system,
    .gcc-income-system {
        padding: 20px;
        margin-top: 20px;
    }
    
    .keys-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        max-width: 150px;
    }
    
    .key-item {
        width: 22px;
        height: 22px;
        font-size: 0.5rem;
    }
    
    .claim-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .claim-buttons .btn {
        min-height: 60px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo span {
        font-size: 1.2rem;
    }
    
    .nav-actions .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .mobile-menu-toggle {
        padding: 3px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .modal-content {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .wallet-option {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .wallet-option .btn {
        width: 100%;
        min-width: auto;
    }
    
    .claim-section {
        padding: 20px;
        margin-top: 20px;
    }
    
    .claim-balances {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .claim-balance {
        padding: 15px;
    }
    
    /* Level View Mobile */
    .level-view-container {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .level-tabs {
        gap: 6px;
        padding: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .level-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 70px;
        flex-shrink: 0;
    }
    
    /* Compact Level Tabs Mobile */
    .level-tabs-compact {
        gap: 4px;
        padding: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .level-tab-compact {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    .level-header h3 {
        font-size: 1.3rem;
    }
    
    .level-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .level-tabs-compact {
        gap: 3px;
        padding: 8px;
    }
    
    .level-tab-compact {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .level-header h3 {
        font-size: 1.2rem;
    }
    
    .level-subtitle {
        font-size: 0.75rem;
    }
    
    .level-view-table th,
    .level-view-table td {
        padding: 8px 6px;
        font-size: 0.9rem;
    }
    
    .level-view-table th:first-child,
    .level-view-table td:first-child {
        min-width: 60px;
    }
    
    .level-view-table th:nth-child(2),
    .level-view-table td:nth-child(2) {
        min-width: 120px;
    }
    
    /* Tree Responsive */
    .tree-container {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .tree-visualization {
        gap: 30px;
        min-height: 300px;
    }
    
    .tree-level {
        gap: 30px;
    }
    
    .node-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .root-node .node-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .node-label {
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    .tree-node:not(:last-child)::after {
        right: -15px;
        width: 30px;
    }
    
    /* Wallet Connection Prompt Mobile */
    .wallet-connect-container {
        min-height: 70vh;
        padding: 15px;
    }
    
    .wallet-connect-card {
        padding: 25px;
        max-width: 100%;
    }
    
    .wallet-connect-card h1 {
        font-size: 2rem;
    }
    
    .wallet-connect-card p {
        font-size: 1rem;
    }
    
    .wallet-connect-features {
        gap: 10px;
    }
    
    .wallet-connect-features .feature {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .wallet-connect-features .feature:hover {
        transform: none;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 1.1rem;
        min-width: 180px;
    }
    
    .wallet-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .wallet-btn {
        padding: 15px;
        gap: 12px;
    }
    
    .wallet-icon {
        width: 32px;
        height: 32px;
    }
    
    .wallet-icon svg {
        width: 20px;
        height: 20px;
        display: block;
        visibility: visible;
        opacity: 1;
    }
    
    .wallet-name {
        font-size: 1rem;
    }
    
    .wallet-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Tree Mobile */
    .tree-container {
        padding: 15px;
    }
    
    .tree-visualization {
        gap: 20px;
        min-height: 250px;
    }
    
    .tree-level {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .node-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .root-node .node-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .node-label {
        font-size: 0.7rem;
        min-width: 40px;
        padding: 2px 6px;
    }
    
    .tree-node:not(:last-child)::after {
        display: none;
    }
}

/* ==================== ADMIN PANEL STYLES ==================== */

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.admin-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
}

.admin-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.admin-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-card-header i {
    font-size: 2rem;
    color: #4ECDC4;
    background: rgba(78, 205, 196, 0.1);
    padding: 15px;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.admin-card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.admin-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.info-item .value {
    color: #4ECDC4;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.admin-amount-input {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-amount-input label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.amount-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.amount-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.amount-input:focus {
    outline: none;
    border-color: #4ECDC4;
    background: rgba(255, 255, 255, 0.08);
}

.amount-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-small {
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.amount-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.btn-link {
    background: none;
    border: none;
    color: #4ECDC4;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 10px;
    text-decoration: underline;
}

.btn-link:hover {
    color: #5EDDD6;
}

.admin-btn {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

.admin-btn.btn-warning {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: #FFFFFF;
}

.admin-btn.btn-warning:hover {
    background: linear-gradient(135deg, #FF5252, #FF7043);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.admin-btn.btn-danger {
    background: linear-gradient(135deg, #E53E3E, #C53030);
    color: #FFFFFF;
}

.admin-btn.btn-danger:hover {
    background: linear-gradient(135deg, #C53030, #9B2C2C);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

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

.admin-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.admin-message {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4ECDC4;
    font-size: 0.9rem;
    margin-top: 15px;
}

.admin-message i {
    font-size: 1.2rem;
}

.admin-message.warning {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    color: #FF6B6B;
}

.admin-message.error {
    background: rgba(229, 62, 62, 0.1);
    border-color: rgba(229, 62, 62, 0.3);
    color: #E53E3E;
}

.admin-message.success {
    background: rgba(72, 187, 120, 0.1);
    border-color: rgba(72, 187, 120, 0.3);
    color: #48BB78;
}

/* Admin Panel Responsive */
@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .admin-card {
        padding: 20px;
    }
    
    .admin-card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .admin-card-header i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .admin-card-header h3 {
        font-size: 1.3rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-item .value {
        font-size: 0.9rem;
        word-break: break-all;
    }
}

/* ==================== GCC PLANS SECTION STYLES ==================== */

.gcc-plans-section {
    margin-bottom: 30px;
}

.gcc-plans-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.gcc-plans-section .section-header h3 {
    color: #4ECDC4;
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gcc-plans-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== GCC PLANS DISPLAY STYLES ==================== */

.gcc-plans-container {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* GCC Plans Tabs */
.gcc-plans-tabs {
    margin-top: 20px;
}

.gcc-tabs-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(78, 205, 196, 0.2);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(78, 205, 196, 0.3) transparent;
}

.gcc-tabs-header::-webkit-scrollbar {
    height: 6px;
}

.gcc-tabs-header::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.gcc-tabs-header::-webkit-scrollbar-thumb {
    background: rgba(78, 205, 196, 0.3);
    border-radius: 3px;
}

.gcc-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.gcc-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
}

.gcc-tab-btn:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.3);
    color: #4ECDC4;
}

.gcc-tab-btn.active {
    background: rgba(78, 205, 196, 0.15);
    border-color: #4ECDC4;
    color: #4ECDC4;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}

.gcc-tab-btn.create-tab {
    background: rgba(107, 207, 127, 0.1);
    border-color: rgba(107, 207, 127, 0.3);
    color: #6BCF7F;
}

.gcc-tab-btn.create-tab:hover {
    background: rgba(107, 207, 127, 0.2);
    border-color: #6BCF7F;
    color: #6BCF7F;
}

.tab-title {
    font-weight: 600;
    font-size: 1rem;
}

.tab-status {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.tab-status.active {
    background: rgba(78, 205, 196, 0.2);
    color: #4ECDC4;
}

.tab-status.completed {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.tab-status.create {
    background: rgba(107, 207, 127, 0.2);
    color: #6BCF7F;
}

.gcc-tabs-content {
    position: relative;
}

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

.gcc-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* No Plans Message */
.no-plans-message {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.no-plans-content i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.no-plans-content h4 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-plans-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1rem;
}

.gcc-plans-container h3 {
    color: #4ECDC4;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gcc-plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gcc-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4ECDC4, #45B7D1);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.gcc-plan-card.active {
    border-color: rgba(78, 205, 196, 0.3);
}

.gcc-plan-card.completed {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.gcc-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin: 0;
}

.plan-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-status.active {
    background: rgba(78, 205, 196, 0.2);
    color: #4ECDC4;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.plan-status.completed {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.plan-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-info .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.plan-info .label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.plan-info .value {
    color: #4ECDC4;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.plan-progress {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ECDC4, #45B7D1);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
}

.plan-topup-btn {
    grid-column: 1 / -1;
    margin-top: 15px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-topup-btn:hover {
    background: linear-gradient(135deg, #45B7D1, #4ECDC4);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.plan-topup-btn.disabled {
    background: rgba(128, 128, 128, 0.3);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    opacity: 0.6;
}

.plan-topup-btn.disabled:hover {
    background: rgba(128, 128, 128, 0.3);
    box-shadow: none;
    transform: none;
}

.cooldown-info {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 8px;
    margin-top: 8px;
}

.cooldown-text {
    color: #FFD93D !important;
    font-weight: 600;
}

.gcc-create-plan-btn {
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gcc-create-plan-btn:hover {
    background: linear-gradient(135deg, #45B7D1, #4ECDC4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

/* GCC Plans Responsive */
@media (max-width: 768px) {
    .gcc-plans-section .section-header h3 {
        font-size: 1.5rem;
        gap: 10px;
    }
    
    .gcc-plans-section .section-header p {
        font-size: 1rem;
    }
    
    .gcc-plans-container {
        padding: 15px;
    }
    
    .gcc-tabs-header {
        gap: 8px;
        padding-bottom: 8px;
    }
    
    .gcc-tab-btn {
        min-width: 100px;
        padding: 10px 15px;
    }
    
    .tab-title {
        font-size: 0.9rem;
    }
    
    .tab-status {
        font-size: 0.7rem;
        padding: 1px 6px;
    }
    
    .gcc-plan-card {
        padding: 15px;
    }
    
    .plan-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .plan-info .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    
    .plan-info .value {
        font-size: 0.9rem;
    }
    
    .no-plans-message {
        padding: 30px 15px;
    }
    
    .no-plans-content i {
        font-size: 2.5rem;
    }
    
    .no-plans-content h4 {
        font-size: 1.3rem;
    }
}


.earnings-header {
    margin-bottom: 15px;
    text-align: center;
}

.earnings-header h5 {
    color: #4ECDC4;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.earnings-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.earnings-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.earnings-stat {
    text-align: center;
}

.earnings-stat .stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.earnings-stat .stat-value {
    display: block;
    color: #4ECDC4;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
}

.earnings-stat .stat-value.pending {
    color: #FFD93D;
}

.earnings-stat .stat-value.claimed {
    color: #6BCF7F;
}

.earnings-timeline {
    margin-bottom: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    z-index: 1;
}

.timeline-item.claimed .timeline-marker {
    background: rgba(107, 207, 127, 0.2);
    border: 2px solid #6BCF7F;
    color: #6BCF7F;
}

.timeline-item.pending .timeline-marker {
    background: rgba(255, 217, 61, 0.2);
    border: 2px solid #FFD93D;
    color: #FFD93D;
}

.timeline-item.current .timeline-marker {
    background: rgba(78, 205, 196, 0.2);
    border: 2px solid #4ECDC4;
    color: #4ECDC4;
    animation: pulse 2s infinite;
}

.timeline-item.future .timeline-marker {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
}

.timeline-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.timeline-week {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-amount {
    color: #4ECDC4;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.timeline-status {
    font-size: 0.8rem;
    text-align: right;
}

.timeline-item.claimed .timeline-status {
    color: #6BCF7F;
}

.timeline-item.pending .timeline-status {
    color: #FFD93D;
}

.timeline-item.current .timeline-status {
    color: #4ECDC4;
}

.timeline-item.future .timeline-status {
    color: rgba(255, 255, 255, 0.5);
}

.claim-earnings-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #6BCF7F, #4ECDC4);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.claim-earnings-btn:hover {
    background: linear-gradient(135deg, #4ECDC4, #6BCF7F);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(107, 207, 127, 0.3);
}

.no-pending-claims {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: rgba(107, 207, 127, 0.1);
    border: 1px solid rgba(107, 207, 127, 0.2);
    border-radius: 8px;
    color: #6BCF7F;
    font-size: 0.9rem;
}

.no-pending-claims i {
    font-size: 1.1rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(78, 205, 196, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0);
    }
}

/* GCC Earnings Schedule Responsive */
@media (max-width: 768px) {
    
    .earnings-summary {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: left;
    }
    
    .timeline-status {
        text-align: left;
    }
    
    .timeline-marker {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }
    
    .timeline-marker i {
        font-size: 0.8rem;
    }
}

/* ==================== GCC PAGINATION STYLES ==================== */

.gcc-pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(78, 205, 196, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    flex-wrap: wrap;
    gap: 15px;
}

.pagination-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    color: #4ECDC4;
    transform: translateY(-1px);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 10px;
}

.pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0 8px;
}

.pagination-page:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
    color: #4ECDC4;
    transform: translateY(-1px);
}

.pagination-page.active {
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
    border-color: #4ECDC4;
    color: #000;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

.pagination-page.ellipsis {
    cursor: default;
    border: none;
    background: transparent;
}

.pagination-page.ellipsis:hover {
    background: transparent;
    border: none;
    transform: none;
    color: rgba(255, 255, 255, 0.5);
}

.pagination-size {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.pagination-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 6px;
    color: #FFFFFF;
    padding: 6px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-select:hover {
    background: rgba(78, 205, 196, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
}

.pagination-select:focus {
    outline: none;
    border-color: #4ECDC4;
    box-shadow: 0 0 0 2px rgba(78, 205, 196, 0.2);
}

.pagination-select option {
    background: #1A1A1A;
    color: #FFFFFF;
}

/* ==================== GCC EARNINGS SCHEDULE WEEK LIST STYLES ==================== */

.earnings-schedule-section {
    margin-top: 30px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* When inside GCC Plans section, adjust styling */
.gcc-plans-section .earnings-schedule-section {
    margin-top: 25px;
    padding: 20px;
    border-radius: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h3 {
    font-size: 1.8rem;
    color: #4ECDC4;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Adjust header size when inside GCC Plans section */
.gcc-plans-section .earnings-schedule-section .section-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Week List Container */
.earnings-week-list-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

/* Week List Header */
.week-list-header {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 1fr 1fr 100px;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(78, 205, 196, 0.1);
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
    color: #4ECDC4;
}

.week-header-item {
    text-align: center;
}

.week-header-item:first-child {
    text-align: left;
}

.week-header-item:last-child {
    text-align: right;
}

/* Week List Body */
.week-list-body {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.week-list-body::-webkit-scrollbar {
    width: 6px;
}

.week-list-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.week-list-body::-webkit-scrollbar-thumb {
    background: rgba(78, 205, 196, 0.3);
    border-radius: 3px;
}

.week-list-body::-webkit-scrollbar-thumb:hover {
    background: rgba(78, 205, 196, 0.5);
}

/* Week Item */
.week-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 1fr 1fr 100px;
    gap: 15px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    align-items: center;
}

.week-item:hover {
    background: rgba(78, 205, 196, 0.05);
}

.week-item:last-child {
    border-bottom: none;
}

/* Week Number */
.week-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #4ECDC4;
}

.week-number-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Week Data Items */
.week-data-item {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.week-data-item:first-child {
    text-align: left;
}

.week-data-item:last-child {
    text-align: right;
}

/* Status Styling */
.week-status {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.week-status.current {
    color: #4ECDC4;
}

.week-status.claimed {
    color: #4CAF50;
}

.week-status.pending {
    color: #FFC107;
}

.week-status.future {
    color: rgba(255, 255, 255, 0.6);
}

/* Current Week Highlighting */
.week-item.current {
    background: rgba(78, 205, 196, 0.1);
    border-left: 3px solid #4ECDC4;
}

.week-item.current .week-data-item {
    color: #4ECDC4;
}

/* Amount Styling */
.week-amount {
    font-weight: 500;
}

.week-amount.zero {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.earnings-chart-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Adjust spacing when inside GCC Plans section */
.gcc-plans-section .earnings-chart-container {
    gap: 25px;
}

.chart-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.chart-legend {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-color.invest {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.legend-color.total-earn {
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
}

.legend-color.redeemed {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.legend-color.pending {
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.chart-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-height: 300px;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 250px;
    gap: 2px;
    padding: 20px 0;
    position: relative;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.chart-bar {
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
    min-height: 2px;
    width: 100%;
    max-width: 20px;
}

.chart-bar.invest {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.chart-bar.total-earn {
    background: linear-gradient(135deg, #4ECDC4, #45B7D1);
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

.chart-bar.redeemed {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.chart-bar.pending {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
}

.chart-bar:hover {
    transform: scaleY(1.05);
    filter: brightness(1.1);
}

.chart-bar-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    font-weight: 500;
}

.chart-bar-value {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover .chart-bar-value {
    opacity: 1;
}

.chart-table {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    overflow-x: auto;
}

.earnings-table {
    width: 100%;
    border-collapse: collapse;
    color: #FFFFFF;
}

.earnings-table th {
    background: rgba(78, 205, 196, 0.1);
    color: #4ECDC4;
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid rgba(78, 205, 196, 0.3);
}

.earnings-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

.earnings-table tr:hover {
    background: rgba(78, 205, 196, 0.05);
}

.earnings-table .week-cell {
    font-weight: 600;
    color: #4ECDC4;
}

.earnings-table .invest-cell {
    color: #FFD700;
    font-weight: 500;
}

.earnings-table .total-earn-cell {
    color: #4ECDC4;
    font-weight: 500;
}

.earnings-table .redeemed-cell {
    color: #FF6B6B;
    font-weight: 500;
}

.earnings-table .no-earn {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.earnings-table .no-deposit {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.earnings-table .status-cell {
    font-weight: 600;
}

.earnings-table .status-claimed {
    color: #4ECDC4;
}

.earnings-table .status-pending {
    color: #FFA500;
}

.earnings-table .status-not-available {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* GCC Pagination Responsive */
@media (max-width: 768px) {
    .gcc-pagination-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px;
    }
    
    .pagination-controls {
        justify-content: center;
        order: 2;
    }
    
    .pagination-info {
        text-align: center;
        order: 1;
    }
    
    .pagination-size {
        justify-content: center;
        order: 3;
    }
    
    .pagination-pages {
        margin: 0 5px;
    }
    
    .pagination-btn,
    .pagination-page {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .pagination-page {
        min-width: 32px;
        padding: 0 6px;
    }
}

@media (max-width: 480px) {
    .gcc-pagination-container {
        padding: 12px;
    }
    
    .pagination-controls {
        gap: 4px;
    }
    
    .pagination-pages {
        gap: 2px;
        margin: 0 2px;
    }
    
    .pagination-btn,
    .pagination-page {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .pagination-page {
        min-width: 28px;
        padding: 0 4px;
    }
    
    .pagination-size {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .pagination-select {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* GCC Earnings Week List Responsive */
@media (max-width: 768px) {
    .earnings-schedule-section {
        margin-top: 30px;
        padding: 20px;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .week-list-header {
        grid-template-columns: 60px 1fr 1fr 1fr 1fr 80px;
        gap: 10px;
        padding: 12px 15px;
        font-size: 0.8rem;
    }
    
    .week-item {
        grid-template-columns: 60px 1fr 1fr 1fr 1fr 80px;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .week-number-circle {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .week-data-item {
        font-size: 0.8rem;
    }
    
    .week-status {
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .earnings-schedule-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .section-header h3 {
        font-size: 1.3rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* Hide the table header on small screens */
    .week-list-header {
        display: none !important;
    }
    
    /* Convert table rows to cards */
    .week-item {
        display: block !important;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 12px;
        margin-bottom: 12px;
        padding: 15px;
        border: 1px solid rgba(78, 205, 196, 0.1);
        transition: all 0.3s ease;
        grid-template-columns: none !important;
    }
    
    .week-item:hover {
        background: rgba(0, 0, 0, 0.4);
        border-color: rgba(78, 205, 196, 0.3);
        transform: translateY(-2px);
    }
    
    /* Hide table layout elements on mobile */
    .week-item .week-number,
    .week-item .week-data-item {
        display: none !important;
    }
    
    /* Show card layout on mobile */
    .week-item-content {
        display: block !important;
    }
    
    .week-item-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }
    
    .week-item-row:last-child {
        margin-bottom: 0;
    }
    
    .week-item-label {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
    }
    
    .week-item-value {
        font-size: 0.9rem;
        color: #FFFFFF;
        font-weight: 600;
    }
    
    .week-number-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-bottom: 10px;
        display: block;
    }
    
    .week-status {
        font-size: 0.7rem;
        padding: 4px 8px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .earnings-schedule-section {
        padding: 12px;
        margin-top: 15px;
    }
    
    .section-header h3 {
        font-size: 1.2rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .week-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .week-item-content {
        display: block !important;
    }
    
    .week-item-row {
        margin-bottom: 6px;
    }
    
    .week-item-label {
        font-size: 0.75rem;
    }
    
    .week-item-value {
        font-size: 0.8rem;
    }
    
    .week-number-circle {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .week-status {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
}

/* ===== ENHANCED LANDING PAGE ANIMATIONS ===== */

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-coin {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatUpDown 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.floating-coin.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-coin.coin-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.floating-coin.coin-3 {
    top: 30%;
    right: 25%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.floating-coin.coin-4 {
    top: 70%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.floating-coin.coin-5 {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.floating-coin.coin-6 {
    top: 80%;
    right: 10%;
    animation-delay: 5s;
    animation-duration: 7s;
}

.floating-particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.8;
    animation: particleFloat 5s linear forwards;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-30px) rotate(8deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 0 50px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    margin-bottom: 3rem;
}

.title-highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Enhanced Countdown Styles */
.countdown-container {
    text-align: center;
    margin: 3rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    position: relative;
}

.countdown-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    transition: all 0.3s ease;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-number.launched {
    font-size: 2.5rem;
    color: #00BFFF;
    animation: celebration 1s ease-in-out infinite;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: #FFFFFF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

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

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover .btn-glow {
    left: 100%;
}

.pulse-animation {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

/* Scroll Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

/* Enhanced Benefit Cards */
.benefit-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.benefit-icon {
    position: relative;
    display: inline-block;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

.benefit-card:hover .icon-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(128, 0, 128, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.benefit-card:hover .card-hover-effect {
    opacity: 1;
}

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

/* Responsive Design for Animations */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 0.8rem;
    }
    
    .countdown-card {
        min-width: 90px;
        padding: 1.2rem 0.8rem;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .floating-coin {
        font-size: 1.5rem;
    }
    
    .floating-particle {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .countdown-timer {
        gap: 0.6rem;
    }
    
    .countdown-card {
        min-width: 75px;
        padding: 1rem 0.6rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.4rem;
        flex-wrap: nowrap;
    }
    
    .countdown-card {
        min-width: 65px;
        padding: 0.8rem 0.4rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 360px) {
    .countdown-timer {
        gap: 0.3rem;
    }
    
    .countdown-card {
        min-width: 55px;
        padding: 0.6rem 0.3rem;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.5rem;
        letter-spacing: 0.5px;
    }
}

/* ===== CENTER ALIGNMENT STYLES ===== */

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    text-align: center;
}

.benefits-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefits-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.benefit-card {
    text-align: center;
    width: 100%;
    max-width: 350px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Hero Actions */
.hero-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #800080, #FFD700);
    border-radius: 2px;
}

/* Mobile Responsive Center Alignment */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
        min-height: 90vh;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .benefit-card {
        max-width: 100%;
    }
    
    .contact-content {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 30px;
        min-height: 80vh;
    }
    
    .benefits-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        padding: 0 15px;
    }
    
    .contact-content {
        padding: 0 15px;
    }
}

