/* GROW CASH - Professional Rich Color Scheme */
:root {
    /* Premium Purple/Violet Palette */
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;  /* Primary Purple */
    --purple-600: #9333ea;  /* Dark Purple */
    --purple-700: #7e22ce;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    
    /* Rich Gold Palette */
    --gold-50: #fffbeb;
    --gold-100: #fef3c7;
    --gold-200: #fde68a;
    --gold-300: #fcd34d;
    --gold-400: #fbbf24;  /* Primary Gold */
    --gold-500: #f59e0b;
    --gold-600: #d97706;  /* Dark Gold */
    --gold-700: #b45309;
    --gold-800: #92400e;
    --gold-900: #78350f;
    
    /* Emerald Green Accents */
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    
    /* Cyan Accents */
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    
    /* Orange Accents */
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    
    /* Professional Color Scheme */
    --primary-color: var(--purple-500);
    --secondary-color: var(--purple-600);
    --accent-color: var(--emerald-400);
    --success-color: var(--emerald-500);
    --warning-color: var(--orange-400);
    --info-color: var(--cyan-400);
    
    /* Background Colors */
    --background-color: #0a0e1a;
    --surface-color: #1a2332;
    --surface-elevated: #2a3441;
    --surface-hover: #3a4552;
    
    /* Text Colors */
    --text-color: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Border Colors */
    --border-color: var(--purple-800);
    --border-light: var(--purple-700);
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, var(--purple-500) 0%, var(--purple-600) 100%);
    --gradient-accent: linear-gradient(135deg, var(--emerald-400) 0%, var(--emerald-500) 100%);
    --gradient-luxury: linear-gradient(135deg, var(--purple-500) 0%, var(--gold-400) 100%);
    --gradient-glow: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-600) 100%);
    --gradient-success: linear-gradient(135deg, var(--emerald-400) 0%, var(--emerald-600) 100%);
    --gradient-warning: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
    --gradient-info: linear-gradient(135deg, var(--cyan-400) 0%, var(--cyan-500) 100%);
    
    /* Shadow Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(168, 85, 247, 0.3);
    --shadow-gold: 0 0 20px rgba(251, 191, 36, 0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 25%, #064e3b 50%, #78350f 75%, #0a0e1a 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Professional Green Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(22, 163, 74, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.06) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(34, 197, 94, 0.03) 50%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--emerald-500);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-500);
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo i {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    animation: pulse 2s infinite;
}

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

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #22c55e;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.connect-wallet-btn, .logout-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.connect-wallet-btn:hover, .logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: var(--gradient-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #22c55e;
    transition: all 0.3s ease;
}


.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-secondary:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-3px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 auto;
}

.maintenance-notice {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000000;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: pulse 2s infinite;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.maintenance-notice i {
    font-size: 1.5rem;
    color: #ef4444;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--background-color);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: heroParticles 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(168, 85, 247, 0.1) 0%, 
        rgba(52, 211, 153, 0.1) 50%, 
        rgba(251, 191, 36, 0.1) 100%);
}

@keyframes heroParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    animation: heroTextSlide 1s ease-out;
}

@keyframes heroTextSlide {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.hero-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);
    transition: left 0.5s ease;
}

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

.hero-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-light);
}

.hero-btn.secondary:hover {
    background: var(--surface-elevated);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroVisualSlide 1s ease-out 0.3s both;
}

@keyframes heroVisualSlide {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-card {
    background: linear-gradient(145deg, var(--surface-elevated) 0%, var(--surface-color) 100%);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(20px);
    max-width: 400px;
    width: 100%;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.hero-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.hero-card-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hero-card-change {
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-card-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--surface-color);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: linear-gradient(145deg, var(--surface-elevated) 0%, var(--surface-color) 100%);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(168, 85, 247, 0.2);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Investment Tiers - FIRST SECTION */
.tiers-section {
    padding: 80px 0 100px 0;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

/* Platform Statistics Section */
.stats-section {
    padding: 80px 0;
    background: var(--surface-color);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background: linear-gradient(145deg, var(--surface-elevated) 0%, var(--surface-color) 100%);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 140px;
    width: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(168, 85, 247, 0.2);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.tier-stat-card {
    background: linear-gradient(145deg, var(--surface-elevated) 0%, var(--surface-color) 100%);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tier-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(52, 211, 153, 0.2);
}

.tier-stat-card:hover::before {
    opacity: 1;
}

.tier-stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tier-stat-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
}

.tier-stat-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.3);
}

.tier-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    animation: countUp 2s ease-out 0.5s both;
}

/* Override for platform statistics to match original colors */
.tier-stats-grid:first-of-type .tier-stat-number {
    background: linear-gradient(to bottom, #FFB6C1, #FFA07A) !important; /* Light Pink to Light Salmon/Peach */
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Additional override for platform statistics */
#total-users, #total-invested, #total-withdrawn {
    background: linear-gradient(to bottom, #FFB6C1, #FFA07A) !important; /* Light Pink to Light Salmon/Peach */
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Team member card design based on direct referrals */
.member-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 4px 0;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 120px;
}

.member-card.no-direct {
    border: 2px solid #ef4444; /* RED border for 0 direct referrals */
    background: rgba(239, 68, 68, 0.1); /* Light red background */
}

.member-card.one-direct {
    border: 2px solid #f59e0b; /* YELLOW border for 1-4 direct referrals */
    background: rgba(245, 158, 11, 0.1); /* Light yellow background */
}

.member-card.five-plus-direct {
    border: 2px solid #10b981; /* GREEN border for 5+ direct referrals */
    background: rgba(16, 185, 129, 0.1); /* Light green background */
}

.member-id {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.member-directs {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.1;
}

.member-card.no-direct .member-id {
    color: #ef4444; /* RED text for 0 direct referrals */
}

.member-card.one-direct .member-id {
    color: #f59e0b; /* YELLOW text for 1-4 direct referrals */
}

.member-card.five-plus-direct .member-id {
    color: #10b981; /* GREEN text for 5+ direct referrals */
}

/* Grid layout for member cards */
.member-ids {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    padding: 8px 0;
}

.tier-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Compact Grow Cash Income Section */
.grow-income-info-section {
    padding: 60px 0;
    background: var(--surface-color);
    position: relative;
}

.compact-grow-section {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--surface-elevated) 0%, var(--surface-color) 100%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(168, 85, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.compact-grow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.grow-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    text-align: center;
    justify-content: center;
}

.grow-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.3);
}

.grow-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grow-title p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.grow-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.grow-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(145deg, var(--surface-color) 0%, var(--surface-elevated) 100%);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.grow-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grow-info-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(168, 85, 247, 0.2);
}

.grow-info-item:hover::before {
    opacity: 1;
}

.grow-info-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.grow-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.grow-info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.grow-info-value {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 700;
    line-height: 1.2;
}

/* Compact Hero Section */
.compact-hero-section {
    padding: 60px 0;
    background: var(--background-color);
    position: relative;
}

.compact-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.compact-hero-title {
    margin-bottom: 24px;
}

.compact-hero-main {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
    line-height: 1.1;
    margin-bottom: 8px;
}

.compact-hero-sub {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.compact-hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.compact-hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.compact-stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.compact-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.tiers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
    justify-items: center;
}

.tier-card {
    background: linear-gradient(145deg, var(--surface-elevated) 0%, var(--surface-color) 100%);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(168, 85, 247, 0.1);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(168, 85, 247, 0.3),
        var(--shadow-glow);
    background: linear-gradient(145deg, var(--surface-hover) 0%, var(--surface-elevated) 100%);
}

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

.tier-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.02);
    background: linear-gradient(145deg, var(--surface-elevated) 0%, var(--surface-color) 100%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(168, 85, 247, 0.2),
        var(--shadow-glow);
}

.tier-card.featured::before {
    opacity: 1;
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-luxury);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 
        0 6px 20px rgba(168, 85, 247, 0.4),
        0 0 0 1px rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.tier-header {
    margin-bottom: 28px;
    position: relative;
}

.tier-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-amount {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    margin-bottom: 8px;
}

.tier-details {
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.tier-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tier-item:hover {
    color: var(--text-color);
    transform: translateX(4px);
}

.tier-item i {
    color: var(--accent-color);
    width: 22px;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.3);
}

.tier-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.tier-btn {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.tier-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);
    transition: left 0.5s ease;
}

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

.tier-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(60%);
    pointer-events: none;
}

.tier-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.invest-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3);
}

.invest-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, var(--purple-400) 0%, var(--purple-500) 100%);
}

.approve-btn {
    background: var(--gradient-warning);
    color: white;
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.3);
}

.approve-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.4);
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
}

.rejoin-btn {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 6px 20px rgba(52, 211, 153, 0.3);
}

.rejoin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 211, 153, 0.4);
    background: linear-gradient(135deg, var(--emerald-400) 0%, var(--emerald-500) 100%);
}

.approve-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.rejoin-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    margin-top: 8px;
    width: 100%;
}

.rejoin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.rejoin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.invest-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}


/* System Stats Section */
.system-stats-section {
    padding: 60px 0;
    background: rgba(5, 15, 5, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Dashboard */
.dashboard-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
}

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

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(139, 92, 246, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.user-info:hover {
    transform: translateY(-2px);
    border-color: var(--alpine-gold-light);
    box-shadow: 0 6px 20px rgba(191, 154, 49, 0.2);
    background: rgba(191, 154, 49, 0.08);
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-alpine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-id, .user-address {
    font-size: 0.9rem;
    color: #a3a3a3;
}

.user-address {
    font-family: monospace;
    font-size: 0.8rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 80px;
}

.stat-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.08);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

#missed-income {
    color: #f59e0b !important;
}

/* Tier Distribution */
.tier-distribution {
    margin-bottom: 30px;
}

.distribution-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

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

.tier-dist-item {
    background: rgba(191, 154, 49, 0.05);
    border: 2px solid var(--alpine-gold);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.1);
}

.tier-dist-item:hover {
    border-color: var(--alpine-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 154, 49, 0.2);
    background: rgba(191, 154, 49, 0.08);
}

.tier-dist-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-alpine);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.tier-dist-content {
    flex: 1;
}

.tier-dist-label {
    font-size: 0.9rem;
    color: #a3a3a3;
    margin-bottom: 5px;
}

.tier-dist-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
}

/* Team Building Rewards Section */
.rewards-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.rewards-explanation {
    margin-bottom: 3rem;
}

.reward-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.reward-info-card h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.reward-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reward-info-card li {
    padding: 0.8rem 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.reward-info-card li:last-child {
    border-bottom: none;
}

.reward-info-card strong {
    color: #1f2937;
    font-weight: 600;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reward-tier-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reward-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.6);
}

.reward-tier-card.featured-reward {
    border: 3px solid #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    transform: scale(1.05);
}

.reward-tier-card.featured-reward::before {
    content: "⭐ FEATURED";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.reward-tier-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.reward-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reward-requirement {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.reward-description {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

.reward-total-members {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 4px;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.rewards-note {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(34, 197, 94, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.rewards-note p {
    color: #1f2937;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.rewards-note strong {
    color: #059669;
}

/* Mobile Responsiveness for Rewards Section */
@media (max-width: 768px) {
    .rewards-section {
        padding: 2rem 0;
    }
    
    .reward-info-card {
        padding: 1.5rem;
    }
    
    .reward-info-card h3 {
        font-size: 1.1rem;
    }
    
    .reward-info-card li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reward-tier-card {
        padding: 1.5rem;
    }
    
    .reward-tier-card.featured-reward {
        transform: none;
    }
    
    .reward-amount {
        font-size: 2rem;
    }
    
    .reward-requirement {
        font-size: 1rem;
    }
    
    .rewards-note {
        padding: 1rem;
    }
    
    .rewards-note p {
        font-size: 0.9rem;
    }
}

/* Seed Income Information Section */
.seed-income-info-section {
    padding: 60px 0;
    background: rgba(10, 26, 10, 0.2);
}

.seed-income-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.seed-income-card {
    background: rgba(191, 154, 49, 0.08);
    border: 2px solid var(--alpine-gold);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(191, 154, 49, 0.2);
    transition: all 0.3s ease;
}

.seed-income-card:hover {
    transform: translateY(-10px);
    border-color: var(--alpine-gold-light);
    box-shadow: 0 20px 40px rgba(191, 154, 49, 0.3);
    background: rgba(191, 154, 49, 0.12);
}

.seed-income-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.seed-income-content h3 {
    color: #22c55e;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.seed-income-content p {
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 1rem;
}

.seed-income-content strong {
    color: #22c55e;
    font-weight: 600;
}


.investment-section {
    margin-bottom: 40px;
}

.section-card {
    background: rgba(191, 154, 49, 0.05);
    border: 2px solid var(--alpine-gold);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.1);
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-2px);
    border-color: var(--alpine-gold-light);
    box-shadow: 0 6px 20px rgba(191, 154, 49, 0.2);
    background: rgba(191, 154, 49, 0.08);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #22c55e;
}

.investment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    background: rgba(191, 154, 49, 0.05);
    border-radius: 10px;
    border: 2px solid var(--alpine-gold);
    gap: 5px;
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    border-color: var(--alpine-gold-light);
    box-shadow: 0 6px 20px rgba(191, 154, 49, 0.2);
    background: rgba(191, 154, 49, 0.08);
}

.info-label {
    color: #a3a3a3;
    font-weight: 500;
}

.info-value {
    color: #ffffff;
    font-weight: 600;
}


.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn.primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.action-btn.secondary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.action-btn.tertiary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.action-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

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


.referral-section {
    margin-top: 40px;
}

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

.referral-link input {
    flex: 1;
    padding: 15px;
    background: rgba(191, 154, 49, 0.05);
    border: 2px solid var(--alpine-gold);
    border-radius: 10px;
    color: white;
    font-family: monospace;
    box-shadow: 0 2px 10px rgba(191, 154, 49, 0.1);
    transition: all 0.3s ease;
}

.referral-link input:focus {
    outline: none;
    border-color: var(--alpine-gold-light);
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.2);
    background: rgba(191, 154, 49, 0.08);
}

.copy-btn {
    padding: 15px 20px;
    background: var(--gradient-alpine);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.3);
}

.copy-btn:hover {
    background: linear-gradient(135deg, var(--alpine-gold-light) 0%, var(--alpine-gold) 100%);
    box-shadow: 0 6px 20px rgba(191, 154, 49, 0.4);
    transform: translateY(-2px);
}

.referral-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.referral-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.referral-stat .stat-label {
    color: #a3a3a3;
    font-size: 0.9rem;
}

.referral-stat .stat-value {
    color: var(--alpine-gold);
    font-size: 1.2rem;
    font-weight: 700;
}

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

.modal-content {
    background: rgba(5, 15, 5, 0.98);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 25px;
    padding: 40px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

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

.modal-header h3 {
    color: #22c55e;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: #a3a3a3;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #22c55e;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #a3a3a3;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.selected-tier {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.tier-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 5px;
}

.tier-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.investment-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #a3a3a3;
}

.summary-item.total {
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    padding-top: 10px;
    margin-top: 10px;
    font-weight: 600;
    color: #22c55e;
    font-size: 1.1rem;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Investment Status Steps */
.investment-status {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.status-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

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

.step-icon {
    width: 30px;
    height: 30px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #22c55e;
    font-size: 0.9rem;
}

.step-text {
    flex: 1;
    color: #a3a3a3;
    font-weight: 500;
}

.step-status {
    font-size: 1.2rem;
}

.status-step.active .step-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.status-step.completed .step-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.status-step.completed .step-status {
    color: #22c55e;
}

.status-step.active .step-text {
    color: #22c55e;
}

.status-step.completed .step-text {
    color: #22c55e;
}

/* USDT Approval Section */
.usdt-approval-section {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.approval-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #f59e0b;
    font-weight: 500;
}

.btn-approve {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-approve:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-approve:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

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

.loading-spinner {
    text-align: center;
    color: white;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(34, 197, 94, 0.3);
    border-top: 3px solid #22c55e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

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

.toast {
    background: rgba(10, 26, 10, 0.95);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 10px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    max-width: 300px;
}

.toast.success {
    border-color: #22c55e;
}

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

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

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation Mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo span {
        font-size: 1.2rem;
    }
    
    /* Hide navigation links on mobile */
    .nav-menu {
        display: none;
    }
    
    /* Simple button layout for mobile */
    .nav-buttons {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }
    
    .connect-wallet-btn,
    .logout-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .connect-wallet-btn {
        background: #22c55e;
        border: none;
        color: white;
        box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
    }
    
    .logout-btn {
        background: #ef4444;
        border: none;
        color: white;
        box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
    }
    
    /* Mobile Tiers Grid */
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .tier-card {
        margin: 0;
        padding: 1.5rem;
    }
    
    .tier-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tier-btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Mobile Dashboard */
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 32px 24px;
        min-height: 120px;
    }
    
    .tier-distribution-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    
    .action-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Mobile Referral Link */
    .referral-link {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .referral-link input {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .copy-btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    /* Mobile Investment Info */
    .investment-info {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 10px;
    }
    
    /* Mobile Section Headers */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .maintenance-notice {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    /* Mobile Dashboard Header */
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .user-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .tier-card {
        padding: 1rem;
    }
    
    .tier-amount {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Statistics Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 32px 24px;
        min-height: 130px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .tier-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tier-stat-card {
        padding: 24px;
    }
    
    .tier-stat-number {
        font-size: 2.2rem;
    }
    
    /* Compact Grow Cash Mobile */
    .compact-grow-section {
        padding: 24px;
        margin: 0 20px;
    }
    
    .grow-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .grow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .grow-title h3 {
        font-size: 1.5rem;
    }
    
    .grow-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .grow-info-item {
        padding: 16px;
    }
    
    .grow-info-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .grow-info-label {
        font-size: 0.8rem;
    }
    
    .grow-info-value {
        font-size: 0.95rem;
    }
    
    /* Compact Hero Mobile */
    .compact-hero-main {
        font-size: 2.2rem;
    }
    
    .compact-hero-sub {
        font-size: 1.1rem;
    }
    
    .compact-hero-description {
        font-size: 1rem;
    }
    
    .compact-hero-stats {
        gap: 30px;
    }
    
    .compact-stat-number {
        font-size: 1.8rem;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 24px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Tiers Mobile */
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .tier-card {
        max-width: 100%;
        padding: 24px 20px;
    }
    
    .tier-amount {
        font-size: 1.8rem;
    }
    
    .tier-name {
        font-size: 1.2rem;
    }
    
    .tier-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 26, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        margin: 20px 0;
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .tier-distribution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    
    
    .tiers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 900px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .investment-info {
        grid-template-columns: 1fr;
    }
    
    
    .referral-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .stat-card {
        padding: 28px 20px;
        min-height: 110px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .tier-distribution-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    
    .seed-income-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .seed-income-card {
        padding: 20px;
    }
    
    .seed-income-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .seed-income-content h3 {
        font-size: 1.1rem;
    }
    
    .seed-income-content p {
        font-size: 0.9rem;
    }
    
    .team-levels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 600px;
    }
    
    .team-level-card {
        padding: 1rem;
    }
    
    .team-level-number {
        font-size: 1.5rem;
    }
    
    .team-level-count {
        font-size: 1.5rem;
    }
    
    .team-levels-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }
    
    .team-level-card {
        padding: 1rem;
    }
    
    .team-level-number {
        font-size: 1.3rem;
    }
    
    .team-level-count {
        font-size: 1.3rem;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .tier-card {
        padding: 20px;
    }
    
    .step-card {
        padding: 30px 15px;
    }
    
    .modal-content {
        padding: 20px;
    }
}

/* Team Levels Section */
.team-levels-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(10, 26, 10, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-levels-title {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.team-levels-subtitle {
    color: #9ca3af;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

/* Color Legend */
.team-color-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(191, 154, 49, 0.05);
    border-radius: 12px;
    border: 1px solid var(--alpine-gold);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid;
}

.legend-item.no-direct .legend-color {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.legend-item.one-direct .legend-color {
    background: rgba(234, 179, 8, 0.2);
    border-color: #eab308;
}

.legend-item.five-plus-direct .legend-color {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

.team-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-level-card {
    background: rgba(191, 154, 49, 0.05);
    border: 2px solid var(--alpine-gold);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.1);
    overflow: hidden;
}

.team-level-header {
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.team-level-header:hover {
    background: rgba(191, 154, 49, 0.08);
}

.team-level-toggle {
    margin-top: 0.5rem;
    color: var(--alpine-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.team-level-details {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(191, 154, 49, 0.2);
    background: rgba(191, 154, 49, 0.03);
}

.loading-members {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 1rem;
}

.member-ids-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.member-id-item {
    background: rgba(191, 154, 49, 0.1);
    border: 1px solid var(--alpine-gold);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.member-id-item:hover {
    background: rgba(191, 154, 49, 0.15);
    transform: translateY(-2px);
}

/* Color coding based on direct referrals */
.member-id-item.no-direct {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.member-id-item.no-direct:hover {
    background: rgba(239, 68, 68, 0.15);
}

.member-id-item.no-direct .member-id {
    color: #ef4444;
}

.member-id-item.one-direct {
    border-color: #eab308;
    background: rgba(234, 179, 8, 0.1);
}

.member-id-item.one-direct:hover {
    background: rgba(234, 179, 8, 0.15);
}

.member-id-item.one-direct .member-id {
    color: #eab308;
}

.member-id-item.five-plus-direct {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.member-id-item.five-plus-direct:hover {
    background: rgba(34, 197, 94, 0.15);
}

.member-id-item.five-plus-direct .member-id {
    color: #22c55e;
}

.member-id {
    font-weight: 600;
    color: var(--alpine-gold);
    font-size: 0.9rem;
}

.member-direct-count {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

.no-members {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    padding: 1rem;
}

/* Team structure styles remain in dashboard */

.team-level-card:hover {
    transform: translateY(-5px);
    border-color: var(--alpine-gold-light);
    background: rgba(191, 154, 49, 0.08);
    box-shadow: 0 10px 25px rgba(191, 154, 49, 0.2);
}

.team-level-number {
    color: var(--alpine-gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-level-label {
    color: #e5e7eb;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-level-count {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
}

.team-level-count.zero {
    color: #6b7280;
}

/* Team Rewards Section */
.team-rewards-section {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.reward-explanation {
    margin-bottom: 2rem;
}

.reward-explanation-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reward-explanation-card h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reward-explanation-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reward-explanation-card li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.reward-explanation-card li:last-child {
    border-bottom: none;
}

.reward-explanation-card strong {
    color: #1f2937;
    font-weight: 600;
}

.reward-claim-section {
    margin-bottom: 2rem;
}

.reward-claim-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.reward-claim-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.reward-claim-header i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.reward-claim-header h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.reward-claim-content {
    text-align: center;
}

.reward-claim-description {
    color: #374151;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.reward-claim-main-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.reward-claim-main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.reward-claim-main-btn:active {
    transform: translateY(0);
}

.reward-claim-main-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.reward-milestones-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.reward-milestones-card h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.milestone-item {
    background: rgba(191, 154, 49, 0.08);
    border-radius: 12px;
    padding: 1rem;
    border: 2px solid var(--alpine-gold);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.1);
}

.milestone-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 154, 49, 0.2);
    border-color: var(--alpine-gold-light);
    background: rgba(191, 154, 49, 0.12);
}

.milestone-item.achieved {
    background: rgba(191, 154, 49, 0.15);
    border: 3px solid var(--alpine-gold);
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.3);
}

.milestone-item.achieved .milestone-team {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.milestone-item.achieved .milestone-reward {
    color: #bf9a31;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.milestone-item.achieved::before {
    content: "✓";
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--alpine-gold);
    color: white;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.milestone-team {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.milestone-reward {
    color: #bf9a31;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.team-rewards-title {
    color: #fbbf24;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.team-rewards-subtitle {
    color: #9ca3af;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.reward-progress {
    margin-bottom: 2rem;
}

.reward-progress-card {
    background: rgba(191, 154, 49, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid var(--alpine-gold);
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.1);
    transition: all 0.3s ease;
}

.reward-progress-card:hover {
    transform: translateY(-2px);
    border-color: var(--alpine-gold-light);
    box-shadow: 0 6px 20px rgba(191, 154, 49, 0.2);
    background: rgba(191, 154, 49, 0.08);
}

.reward-progress-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #22c55e;
}

.reward-progress-header i {
    font-size: 1.5rem;
}

.reward-progress-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.reward-progress-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.progress-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.progress-label {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
}

.progress-value {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: 700;
}


.reward-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.reward-tier-card {
    background: linear-gradient(135deg, rgba(10, 26, 10, 0.8) 0%, rgba(26, 45, 26, 0.8) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reward-tier-card.claimed {
    border-color: rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.reward-tier-card.eligible {
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: #22c55e;
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }
    50% {
        border-color: #fbbf24;
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    }
}

.reward-tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reward-tier-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.reward-tier-badge.claimed-badge {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: #fff;
}

.reward-tier-status {
    font-size: 1.5rem;
}

.reward-tier-body {
    margin-bottom: 1rem;
}

.reward-amount {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.reward-requirement {
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.reward-requirement strong {
    color: #22c55e;
}

.reward-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(107, 114, 128, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.reward-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e 0%, #fbbf24 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.reward-claim-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reward-claim-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.reward-claim-btn:disabled {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Mobile Responsiveness for Team Rewards */
@media (max-width: 768px) {
    .team-rewards-section {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .team-rewards-title {
        font-size: 1.4rem;
    }
    
    .team-rewards-subtitle {
        font-size: 0.9rem;
    }
    
    .reward-explanation-card {
        padding: 1rem;
    }
    
    .reward-explanation-card h4 {
        font-size: 1rem;
    }
    
    .reward-explanation-card li {
        font-size: 0.9rem;
    }
    
    .reward-claim-card {
        padding: 1rem;
    }
    
    .reward-claim-header h4 {
        font-size: 1rem;
    }
    
    .reward-claim-description {
        font-size: 0.9rem;
    }
    
    .reward-claim-main-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .reward-milestones-card {
        padding: 1rem;
    }
    
    .reward-milestones-card h4 {
        font-size: 1rem;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .milestone-item {
        padding: 0.8rem;
    }
    
    .milestone-team {
        font-size: 0.85rem;
    }
    
    .milestone-reward {
        font-size: 1rem;
    }
    
    .milestone-item.achieved::before {
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.7rem;
        top: 0.3rem;
        right: 0.3rem;
    }
    
    .reward-progress-card {
        padding: 1rem;
    }
    
    .reward-progress-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .reward-tiers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reward-tier-card {
        padding: 1rem;
    }
    
    .reward-amount {
        font-size: 1.2rem;
    }
    
    .reward-requirement {
        font-size: 0.85rem;
    }
}

.reward-claim-btn.claimed {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #0a1a0a 0%, #1a2d1a 100%);
    border-top: 2px solid rgba(34, 197, 94, 0.3);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-title {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.footer-link i {
    font-size: 1.2rem;
    color: #ef4444;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.social-link.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.social-link.telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

.social-link i {
    font-size: 1.5rem;
}

/* Community links in hero section */
.compact-hero-community {
    margin-top: 30px;
    text-align: center;
}

.compact-hero-community h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.community-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.community-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
}

.community-link.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.community-link.telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

.community-link.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.community-link.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.community-link i {
    font-size: 1.2rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
}


.footer-bottom {
    border-top: 1px solid rgba(34, 197, 94, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* Action Buttons Section */
.action-buttons-section {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a4d3a 0%, #2d5a47 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.action-title {
    color: #00ff00;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-button-card {
    background: rgba(191, 154, 49, 0.08);
    border: 2px solid var(--alpine-gold);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(191, 154, 49, 0.1);
}

.action-button-card:hover {
    transform: translateY(-5px);
    border-color: var(--alpine-gold-light);
    box-shadow: 0 15px 40px rgba(191, 154, 49, 0.3);
    background: rgba(191, 154, 49, 0.12);
}

.action-button-card.primary {
    background: linear-gradient(135deg, rgba(191, 154, 49, 0.15) 0%, rgba(191, 154, 49, 0.08) 100%);
    border-color: var(--alpine-gold);
}

.action-button-card.secondary {
    background: linear-gradient(135deg, rgba(191, 154, 49, 0.12) 0%, rgba(191, 154, 49, 0.06) 100%);
    border-color: var(--alpine-gold);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.action-button-card.primary .action-icon {
    color: var(--alpine-gold);
}

.action-button-card.secondary .action-icon {
    color: var(--alpine-gold-light);
}

.action-content h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.action-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Timer Display in Action Card */
.timer-display {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.timer-display:hover {
    border-color: rgba(0, 255, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

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

.timer-content {
    flex: 1;
    text-align: left;
}

.timer-label {
    color: #b0b0b0;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.timer-value {
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

/* Balance Display in Action Card */
.balance-display {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.balance-display:hover {
    border-color: rgba(0, 150, 255, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.balance-icon {
    font-size: 1.5rem;
    color: #0096ff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 150, 255, 0.1);
    border-radius: 50%;
}

.balance-content {
    flex: 1;
    text-align: left;
}

.balance-label {
    color: #b0b0b0;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.balance-value {
    color: #0096ff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.action-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn.primary {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.action-btn.primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #00cc00 0%, #00aa00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.4);
}

.action-btn.secondary {
    background: linear-gradient(135deg, #0096ff 0%, #0078cc 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 150, 255, 0.3);
}

.action-btn.secondary:hover:not(:disabled) {
    background: linear-gradient(135deg, #0078cc 0%, #005aa3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 150, 255, 0.4);
}

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

.action-btn i {
    font-size: 1.1rem;
}

/* Mobile responsiveness for action buttons */
@media (max-width: 768px) {
    .action-buttons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .action-button-card {
        padding: 1.5rem;
    }
    
    .action-icon {
        font-size: 2.5rem;
    }
    
    .action-content h4 {
        font-size: 1.2rem;
    }
    
    .action-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .timer-display {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .timer-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .timer-value {
        font-size: 1rem;
    }
    
    .balance-display {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .balance-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .balance-value {
        font-size: 1rem;
    }
    
    /* Team Color Legend Mobile */
    .team-color-legend {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .legend-item {
        font-size: 0.85rem;
    }
    
    /* Member IDs Mobile */
    .member-ids-list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .member-id-item {
        padding: 0.4rem 0.6rem;
    }
    
    .member-id {
        font-size: 0.85rem;
    }
    
    .member-direct-count {
        font-size: 0.7rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 0.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .social-link {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

/* Admin Controls Section */
.admin-controls-section {
    margin-top: 2rem;
}

.admin-card {
    background: linear-gradient(135deg, rgba(191, 154, 49, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid var(--alpine-gold);
    box-shadow: 0 0 20px rgba(191, 154, 49, 0.3);
}

.admin-card .card-title {
    color: var(--alpine-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-controls-grid {
    display: grid;
    gap: 1.5rem;
}

.admin-control-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(191, 154, 49, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.control-header h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--emerald-400);
    border: 1px solid var(--emerald-500);
}

.status-badge.paused {
    background: rgba(255, 68, 68, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff4444;
}

.control-description {
    color: #b0b0b0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.control-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-btn {
    flex: 1;
    min-width: 150px;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.pause-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4444 100%);
    color: white;
}

.pause-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4);
}

.unpause-btn {
    background: linear-gradient(135deg, var(--emerald-500) 0%, var(--emerald-600) 100%);
    color: white;
}

.unpause-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--emerald-400) 0%, var(--emerald-500) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .control-buttons {
        flex-direction: column;
    }
    
    .admin-btn {
        width: 100%;
    }
}

