:root {
    /* Pastel Color Palette */
    --pastel-blue: #A8DAFF;
    --pastel-lavender: #C7B8EA;
    --pastel-mint: #B5E8D3;
    --pastel-peach: #FFD4BA;
    --pastel-pink: #FFB6D9;
    --pastel-sky: #B8D8FF;
    
    --bg-light: #FAFBFF;
    --bg-gradient: linear-gradient(135deg, #F5F8FF 0%, #FFF5F9 50%, #F5FFFA 100%);
    --card-bg: rgba(255, 255, 255, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.5);
    
    --text-dark: #2D3748;
    --text-gray: #4A5568;
    --text-light: #718096;
    
    /* Soft Gradients */
    --gradient-primary: linear-gradient(135deg, var(--pastel-blue), var(--pastel-lavender));
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    --gradient-warm: linear-gradient(135deg, var(--pastel-peach), var(--pastel-pink));
    --gradient-cool: linear-gradient(135deg, var(--pastel-sky), var(--pastel-mint));
    --gradient-elegant: linear-gradient(135deg, #E8F4FF 0%, #F5E8FF 50%, #FFE8F5 100%);
    
    --shadow-soft: 0 10px 40px rgba(168, 218, 255, 0.2);
    --shadow-card: 0 8px 32px rgba(199, 184, 234, 0.15);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    z-index: -1;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0 30px;
}
.purchase-section-compact { 
	width: 60%;
	text-align: center;
	margin: auto;
}

.active-tier-spotlight { 
	width: 60%;
	text-align: center;
	margin: auto;
}

/* Glass Morphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Soft Glow Effect */
.soft-glow {
    animation: softPulse 3s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(168, 218, 255, 0.4)) 
                drop-shadow(0 0 20px rgba(168, 218, 255, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(168, 218, 255, 0.6)) 
                drop-shadow(0 0 30px rgba(168, 218, 255, 0.3));
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(168, 218, 255, 0.15);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(168, 218, 255, 0.25);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
}

.logo i {
    font-size: 32px;
    animation: rotate 3s linear infinite;
      background: linear-gradient(90deg, #FF006E 0%, #B026FF 50%, #00FFF0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

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

.logo-text {
  background: linear-gradient(90deg, #FF006E 0%, #B026FF 50%, #00FFF0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #9646fd;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: #9646fd;
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    padding: 12px 30px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(181, 232, 211, 0.4);
}

.btn-login i {
    padding: 0 2px 0 0;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 232, 211, 0.6);
}

.btn-wallet {
    padding: 12px 28px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(168, 218, 255, 0.4);
}

.btn-wallet:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 218, 255, 0.6);
}

.btn-wallet.wallet-connected {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.btn-wallet.wallet-connected:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.6);
}

.btn-wallet.wallet-connected i {
    color: #dcfce7;
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #FF006E 0%, #B026FF 50%, #00FFF0 100%);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 180px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1.0;
    filter: blur(0px);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
}

.hero-bg-fallback {
    display: none;
}

@supports not (object-fit: cover) {
    .hero-bg-video {
        display: none;
    }
    .hero-bg-fallback {
        display: block;
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 218, 255, 0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 217, 0.3) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(240, 244, 255, 0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}
.gradient-text {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: #000000e5;
	background-clip: text;
	position: relative;
	display: inline-block;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(15px);
    opacity: 0.7;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 600px;
}

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

.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 17px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 40px rgba(168, 218, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(168, 218, 255, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--pastel-lavender);
    border: 2px solid var(--pastel-lavender);
    box-shadow: 0 5px 20px rgba(199, 184, 234, 0.25);
}

.btn-secondary:hover {
    background: var(--pastel-lavender);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 19px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(168, 218, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 25px rgba(168, 218, 255, 0);
    }
}

/* Elegant Hero Stats Cards */
.hero-stats-cards {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 10;
}

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

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(199, 184, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(168, 218, 255, 0.15);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(168, 218, 255, 0.25);
    border-color: rgba(199, 184, 234, 0.4);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.stat-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    font-weight: 900;
    line-height: 1;
}

.stat-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* Section Styles */
section {
    padding: 70px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 45px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Delegation Rewards Section */
.presale {
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F4FF 100%);
}

/* FOMO Tiers Section */
.tiers-fomo-section {
    margin-bottom: 60px;
}

.fomo-alert {
background: linear-gradient(135deg, #f3e7ff 0%, #e0f0ff 100%);
    border: 3px dashed rgba(167, 139, 250, 0.4) !important;
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
}

.fomo-alert i {
    font-size: 24px;
    color: var(--pastel-pink);
    animation: fire 1s infinite;
}

.tiers-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.tier-card-fomo {
    background: white;
    border-radius: 25px;
    padding: 35px 25px;
    position: relative;
    border: 2px solid rgba(199, 184, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(168, 218, 255, 0.15);
}

.tier-card-fomo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(168, 218, 255, 0.25);
    border-color: var(--pastel-lavender);
}

.tier-card-fomo.active-tier {
    border: 3px solid #6a71d7;
    box-shadow: 0 20px 60px rgba(199, 184, 234, 0.35);
    transform: scale(1.05);
}

.live-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.upcoming-badge {
    background: rgba(199, 184, 234, 0.2);
    color: var(--pastel-lavender);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.tier-header {
    text-align: center;
    margin-bottom: 25px;
}
.tier-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tier-price-big {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #FF006E 0%, #B026FF 50%, #00FFF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.tier-price-big span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-gray);
}

.tier-details {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(199, 184, 234, 0.2);
    border-bottom: 1px solid rgba(199, 184, 234, 0.2);
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    color: var(--text-gray);
}

.detail-row i {
    width: 24px;
    color: var(--pastel-lavender);
    background: linear-gradient(90deg, #FF006E 0%, #B026FF 50%, #00FFF0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.tier-progress-mini {
    margin: 20px 0;
}

.progress-bar-mini {
    height: 8px;
    background: rgba(199, 184, 234, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill-mini {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

.tier-price-increase {
    background: rgba(255, 182, 217, 0.15);
    color: var(--pastel-pink);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin: 20px 0;
}

.tier-price-increase i {
    margin-right: 5px;
}
.tier-roi {
    background: var(--gradient-accent);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}

/* Coming Soon Tier 5 - Wide Mystery Design */
.tier-coming-soon-wide {
    position: relative;
    background: linear-gradient(135deg, #f3e7ff 0%, #e0f0ff 100%);
    border: 3px dashed rgba(167, 139, 250, 0.4) !important;
    grid-column: 1 / -1 !important;
    display: flex !important;
    align-items: center;
    gap: 30px;
    padding: 25px 35px !important;
    min-height: auto !important;
    margin-top: 70px;
}

.tier-coming-soon-wide:hover {
    transform: translateY(-5px);
    border-color: rgba(167, 139, 250, 0.6) !important;
}

.coming-soon-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 80px;
    color: rgba(199, 184, 234, 0.12);
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.tier5-left {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
}

.tier5-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 10px 0 5px 0;
}

.tier5-center {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.tier5-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tier5-stat i {
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.tier5-stat div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tier5-stat strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.tier5-stat span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.tier5-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(167, 139, 250, 0.3), transparent);
}

.tier5-right {
    flex: 0 0 auto;
    text-align: right;
    position: relative;
    z-index: 1;
}

.tier5-tagline {
    margin: 8px 0 0 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

.mystery-badge {
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(167, 139, 250, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(167, 139, 250, 0.6);
    }
}

.tier-price-mystery-wide {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(167, 139, 250, 0.8);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.tier-price-mystery-wide i {
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
        background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.price-tba {
    letter-spacing: 6px;
    text-shadow: 2px 2px 10px rgba(167, 139, 250, 0.3);
}

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

.mystery-roi-wide {
    background: var(--gradient-accent);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.mystery-roi-wide i {
    font-size: 1.2rem;
    animation: starRotate 3s linear infinite;
}

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

/* Purchase Section Compact */
.purchase-section-compact {
    background: white;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(168, 218, 255, 0.2);
}

.purchase-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    text-align: center;
    margin-bottom: 0;
    color: #6b7de4;
}
.purchase-tier-active {
    position: relative;
}

.tier-active {
    background: white;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 35px;
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 20px 60px rgba(168, 218, 255, 0.3);
}

.tier-active::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-elegant);
    border-radius: 40px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

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

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 8px 20px rgba(168, 218, 255, 0.4);
}

.tier-coming-soon-wide .tier-badge {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 8px 20px rgba(168, 218, 255, 0.4);
    width: 121%;
}


.tier-badge i {
    animation: fire 1s infinite;
}

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

.tier-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 25px;

    animation: gradientShift 5s 
linear infinite;
    background: linear-gradient(90deg, #FF006E, #00FFF0, #FF006E);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tier-price {
    text-align: center;
    margin-bottom: 18px;
}

.current-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.current-price::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.price-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 6px;
}

.tier-warning {
    background: linear-gradient(135deg, rgba(255, 182, 217, 0.1), rgba(168, 218, 255, 0.1));
    border: 2px solid var(--pastel-pink);
    border-radius: 15px;
    padding: 12px 16px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tier-warning i {
    color: var(--pastel-pink);
    font-size: 1.1rem;
    animation: pulse-warning 1.5s infinite;
}

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

.tier-warning strong {
    color: var(--pastel-pink);
    font-size: 0.95rem;
}

.tier-progress {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.progress-bar {
    height: 28px;
    background: linear-gradient(90deg, #E5E7EB, #F3F4F6);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--pastel-blue);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-elegant);
    transition: width 0.5s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    color: white;
    font-weight: 700;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-weight: 600;
}

.coins-remaining {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.urgency-text {
    color: var(--pastel-pink);
    font-weight: 700;
    font-size: 0.9rem;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.purchase-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 18px;
    background: white;
    border: 2px solid var(--pastel-blue);
    border-radius: 15px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.form-group input:focus {
    outline: none;
    border-color: var(--pastel-pink);
    box-shadow: 0 0 20px rgba(255, 182, 217, 0.3);
    transform: translateY(-2px);
}

.input-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.calculation-display {
    background: linear-gradient(135deg, rgba(168, 218, 255, 0.1), rgba(181, 232, 211, 0.1));
    border: 2px solid rgba(168, 218, 255, 0.3);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 2px solid rgba(168, 218, 255, 0.2);
    font-size: 0.95rem;
}

.calc-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.calc-value {
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
}

.calc-value.highlight {
    color: var(--pastel-blue);
    font-size: 1.1rem;
}

.calc-value.success {
color: #10b981;
}

/* Tiers Overview */
.tiers-overview {
    margin-top: 70px;
}

.tiers-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.tier-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    border: 2px solid rgba(168, 218, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.tier-card.active-tier {
    border-color: var(--pastel-pink);
    box-shadow: 0 15px 50px rgba(255, 182, 217, 0.3);
    transform: scale(1.05);
}

.tier-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(168, 218, 255, 0.3);
}

.tier-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.tier-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tier-status.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 5px 20px rgba(168, 218, 255, 0.4);
}

.tier-status.upcoming {
    background: linear-gradient(135deg, #E5E7EB, #F3F4F6);
    color: var(--text-gray);
}

.tier-supply {
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.tier-price-display {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ecosystem Section */
.ecosystem {
    background: white;
}

/* Network Introduction */
.network-intro {
    background: linear-gradient(135deg, rgba(168, 218, 255, 0.1), rgba(199, 184, 234, 0.1));
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 50px;
    border: 1px solid rgba(199, 184, 234, 0.2);
}

.intro-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
color: #6b7de4;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}
.network-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.network-stat {
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #f3e7ff 0%, #e0f0ff 100%);
    border: 3px dashed rgba(167, 139, 250, 0.4) !important;
}

.network-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 218, 255, 0.2);
}

.network-stat i {
    font-size: 2.5rem;
    color: var(--pastel-lavender);
    margin-bottom: 15px;
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.network-stat h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.network-stat p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Universal Acceptance Banner */
.acceptance-banner {
    background: var(--gradient-elegant);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    border: 2px solid rgba(199, 184, 234, 0.3);
}

.acceptance-banner i {
    font-size: 3rem;
    color: #6af3bb;
    margin-bottom: 20px;
}

.acceptance-banner h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.acceptance-banner p {
    font-size: 1.15rem;
    color: var(--text-gray);
}

/* Diversity Title */
.diversity-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin: 50px 0 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ecosystem Journey */
.ecosystem-journey {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .ecosystem-journey {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ecosystem-journey {
        grid-template-columns: 1fr;
    }
}

.journey-card {
    background: linear-gradient(135deg, #f3e7ff42 0%, #e0f0ff80 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 2px solid #6a71d7;
    transition: all 0.4s ease;
    overflow: hidden;
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(168, 218, 255, 0.25);
    border-color: var(--pastel-lavender);
}

.journey-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.journey-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.journey-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.journey-card h4 i {
    color: var(--pastel-lavender);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.journey-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.ecosystem-card {
    background: white;
    border-radius: 30px;
    padding: 0;
    transition: all 0.4s ease;
    border: 2px solid rgba(168, 218, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.ecosystem-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ecosystem-card:hover .ecosystem-card-image {
    transform: scale(1.1);
}

.ecosystem-card-content {
    padding: 30px;
}

.ecosystem-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--pastel-pink);
    box-shadow: 0 25px 60px rgba(168, 218, 255, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 25px;
    box-shadow: 0 10px 30px rgba(168, 218, 255, 0.4);
}

.card-icon i {
    font-size: 2.2rem;
    color: white;
}

.ecosystem-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ecosystem-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(180deg, #F0F4FF 0%, #FFEEF8 100%);
}

.benefits-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
    padding: 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(168, 218, 255, 0.2);
}

.highlight-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #f3e7ff 0%, #e0f0ff 100%);
    border: 3px dashed rgba(167, 139, 250, 0.4) !important;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--pastel-lavender);
    box-shadow: 0 15px 40px rgba(168, 218, 255, 0.25);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    background: var(--gradient-accent);
}

.highlight-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.highlight-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.benefit-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    transition: all 0.4s ease;
    border: 2px solid #6a71d7;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 218, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.benefit-card.major {
    grid-column: span 1;
}

.benefit-card:hover {
    transform: scale(1.08) rotateZ(2deg);
    border-color: var(--pastel-blue);
    box-shadow: 0 25px 60px rgba(168, 218, 255, 0.4);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(168, 218, 255, 0.4);
    background: var(--gradient-accent);
}

.benefit-icon i {
    font-size: 2.8rem;
    color: white;
}

.benefit-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: #6b7de4;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.benefit-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgb(181 232 211), rgb(168 218 255));
    color: #000000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid var(--pastel-mint);
}

/* Roadmap Section */
.roadmap {
    background: white;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #6a71d769;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    width: 30px;
    height: 30px;
    background: var(--gradient-accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 20px rgba(168, 218, 255, 0.6);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 218, 255, 0.6); }
    50% { box-shadow: 0 0 40px rgba(168, 218, 255, 0.9); }
}

.timeline-content {
    background: linear-gradient(135deg, #f3e7ff17 0%, #e0f0ff96 100%);
    border-radius: 25px;
    padding: 35px;
    width: calc(50% - 50px);
    border: 2px solid rgb(105 116 219 / 56%);
    box-shadow: 0 10px 30px rgba(168, 218, 255, 0.2);
    transition: all 0.3s ease;
}
.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(168, 218, 255, 0.3);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #6b7de4;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Dashboard Section */
.dashboard {
    background: linear-gradient(180deg, #F0F4FF 0%, #FFFFFF 100%);
}

.wallet-status {
    text-align: center;
    padding: 50px 0px;
    background: white;
    border-radius: 35px;
     background: linear-gradient(135deg, #f3e7ff 0%, #e0f0ff 100%);
    border: 3px dashed rgba(167, 139, 250, 0.4) !important;
}

.wallet-status i {
    font-size: 5rem;
    margin-bottom: 25px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.wallet-status button i {
    font-size: 24px;
    color: #fff;
    margin: 0;
        -webkit-text-fill-color: snow;
}

.wallet-status button  {
     background: var(--gradient-accent);
}

.wallet-status p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none !important;
}

.faq-item:hover {
    border-color: var(--pastel-pink);
    box-shadow: 0 10px 30px rgba(168, 218, 255, 0.2);
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f3e7ff17 0%, #e0f0ff96 100%);
    border-radius: 25px;
    padding: 25px;
    border: 2px solid rgb(105 116 219 / 56%);
    box-shadow: 0 10px 30px rgba(168, 218, 255, 0.2);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-question i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 35px 25px;
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 70px 0 30px;
    border-top: 3px solid var(--pastel-blue);
}

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

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 25px;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer-section .logo-text {
    color: white;
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-section ul li a:hover {
    color: var(--pastel-blue);
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(168, 218, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
    font-size: 1.05rem;
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 480px;
    background: var(--card-bg);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(168, 218, 255, 0.1);
    color: var(--pastel-lavender);
    transform: rotate(90deg);
}

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

.modal-header .logo {
    justify-content: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.auth-form {
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 8px;
    color: var(--pastel-lavender);
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(168, 218, 255, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--pastel-lavender);
    background: white;
    box-shadow: 0 0 0 3px rgba(199, 184, 234, 0.1);
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.modal-footer {
    text-align: center;
    margin-top: 25px;
}

.modal-footer p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.modal-footer a {
    color: var(--pastel-lavender);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-footer a:hover {
    color: var(--pastel-blue);
    text-decoration: underline;
}

.modal-divider {
    margin-top: 30px;
    text-align: center;
    position: relative;
}

.modal-divider span {
    background: var(--card-bg);
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.modal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 218, 255, 0.3), transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(168, 218, 255, 0.2);
        padding: 30px 0;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .current-price {
        font-size: 3.5rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 0;
    }

    .benefit-card.major {
        grid-column: span 1;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* ===== PRESALE PAGE STYLES ===== */
.presale-hero {
    padding: 88px 0 80px;
    min-height: 100vh;
}
.presale-header {
    text-align: center;
    margin-bottom: 20px;
}
.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 6px;
}
.page-subtitle {
    font-size: 16px;
    color: #000;
}

.active-tier-display {
    margin-bottom: 50px;
}

.tier-status-banner {
    background: linear-gradient(135deg, #f3e7ff 0%, #e0f0ff 100%);
    border: 3px dashed rgba(167, 139, 250, 0.4) !important;
    border-radius: 20px;
    padding: 20px 30px;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: 000;
    font-size: 1.1rem;
}
.spotlight-right .btn-large {
	padding: 18px 10px;
	font-size: 12px;
}
.stat-value {
	font-size: 1rem; 
 }
.urgency-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.tier-main-card {
    border-radius: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

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

.tier-main-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.tier-main-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 1.2rem;
    color: var(--text-light);
}

.tier-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.tier-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(168, 218, 255, 0.1);
    border-radius: 15px;
}

.tier-stat i {
    font-size: 2rem;
    color: var(--pastel-lavender);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.stat-value.success {
    color: #10b981;
}

.stat-value.warning {
    color: #f59e0b;
}

.tier-progress-section {
    margin-top: 30px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.progress-count {
    color: var(--pastel-lavender);
}

.progress-bar-large {
    height: 30px;
    background: rgba(168, 218, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill-animated {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 15px;
    transition: width 0.5s ease;
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.coins-remaining {
    color: var(--text-gray);
}

.urgency-text {
    color: #ef4444;
    font-weight: 600;
}

.purchase-form-section {
    margin-top: 50px;
}

.purchase-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(168, 218, 255, 0.2),
                0 0 0 1px rgba(168, 218, 255, 0.1);
    backdrop-filter: blur(20px);
}

.purchase-form-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
  /*  background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;*/
}

.purchase-form-title i {
    margin-right: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.purchase-form-layout {
    max-width: 600px;
    margin: 0 auto;
}

.form-group-inline {
    margin-bottom: 30px;
}

.form-group-inline label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a202c;
    font-size: 1.05rem;
}

.form-group-inline label i {
    margin-right: 8px;
    color: var(--pastel-lavender);
}

.input-wrapper {
    position: relative;
}

.amount-input {
    width: 100%;
    padding: 18px 80px 18px 24px;
    border: 2px solid rgba(168, 218, 255, 0.4);
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    background: #ffffff !important;
    color: #1a202c !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(168, 218, 255, 0.1);
}

.amount-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.amount-input:hover {
    border-color: rgba(168, 218, 255, 0.6);
    box-shadow: 0 6px 16px rgba(168, 218, 255, 0.15);
}

.amount-input:focus {
    outline: none;
    border-color: var(--pastel-lavender);
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(199, 184, 234, 0.15),
                0 8px 20px rgba(168, 218, 255, 0.2);
}

.network-select {
    width: 100%;
    padding: 18px 50px 18px 24px;
    border: 2px solid rgba(168, 218, 255, 0.4);
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    background: #ffffff !important;
    color: #1a202c !important;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C7B8EA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 22px;
    box-shadow: 0 4px 12px rgba(168, 218, 255, 0.1);
}

.network-select:hover {
    border-color: rgba(168, 218, 255, 0.6);
    box-shadow: 0 6px 16px rgba(168, 218, 255, 0.15);
}

.network-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.15),
                0 8px 20px rgba(168, 218, 255, 0.2);
}

.network-select option {
    padding: 15px;
    background: #ffffff;
    color: #1a202c;
    font-weight: 500;
}

.input-currency {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--pastel-lavender);
    background: rgba(199, 184, 234, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
}

.input-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 10px;
    font-weight: 500;
}

.input-hint i {
    color: var(--pastel-lavender);
    font-size: 0.85rem;
}

.calculation-panel {
    background: linear-gradient(135deg, rgba(199, 184, 234, 0.08) 0%, rgba(168, 218, 255, 0.08) 100%);
    border: 2px solid rgba(168, 218, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(168, 218, 255, 0.1);
}

.calculation-panel h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.4rem;
    color: #1a202c;
}

.calc-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    border: 1px solid rgba(168, 218, 255, 0.2);
    transition: all 0.3s ease;
}

.calc-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(168, 218, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 218, 255, 0.15);
}

.calc-item.highlight-item {
    background: linear-gradient(135deg, rgba(181, 232, 211, 0.2) 0%, rgba(168, 218, 255, 0.15) 100%);
    border: 2px solid var(--pastel-mint);
}

.calc-item.highlight-item:hover {
    background: linear-gradient(135deg, rgba(181, 232, 211, 0.3) 0%, rgba(168, 218, 255, 0.2) 100%);
}

.calc-label {
    font-weight: 600;
    color: #475569;
    font-size: 1rem;
}

.calc-value {
    font-weight: 700;
    font-size: 1.3rem;
}

.calc-value.primary {
    color: var(--pastel-lavender);
}

.calc-value.highlight {
    color: #f59e0b;
}

.calc-value.success {
    color: #10b981;
}

.btn-block {
	width: 100%;
	padding: 18px;
	font-size: 1.2rem;
	color: #000;
}

.purchase-note {
    display: flex;
    gap: 12px;
    align-items: start;
    margin-top: 20px;
    padding: 15px;
    background: rgba(168, 218, 255, 0.1);
    border-radius: 12px;
}

.purchase-note i {
    color: var(--pastel-lavender);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.purchase-note p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* User info and logout button */
.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(168, 218, 255, 0.1);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.user-info i {
    font-size: 1.2rem;
    color: var(--pastel-lavender);
}

.btn-logout {
    padding: 12px 24px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 2px solid #ef4444;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-logout:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
}

/* ===== DASHBOARD PAGE STYLES ===== */
.dashboard-section {
    padding: 86px 0 0px;
    min-height: 100vh;
}

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

.welcome-message h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.purchase-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 0;
    opacity: 1 !important;
    padding: 15px 0 0 0 !important;
}

.mini-milestone.locked {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    opacity: 1 !important;
}

.welcome-message p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.portfolio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}
.portfolio-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px !important;
}

.card-icon {
    width: 50px !important;
    height: 50px !important;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    color: white;
    flex-shrink: 0;
    margin: 0 !important;
}

.card-icon i {
    font-size: 20px;
    color: white;
}
.portfolio-card .card-body h3 {
    font-size: 10px !important;
    margin-bottom: 0 !important;
}

.portfolio-card .card-amount {
    font-size: 22px !important;
    margin-bottom: 0 !important;
}


.portfolio-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
}

.card-icon.success {
    background: var(--gradient-accent);
}

.card-icon.warning {
    background: var(--gradient-warm);
}

.card-icon.info {
    background: var(--gradient-cool);
}

.card-content h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.card-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.card-value.primary {
    color: var(--pastel-lavender);
}

.card-value.highlight {
    color: #f59e0b;
}

.card-value.success {
    color: #10b981;
}

.card-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

.unlock-section {
    margin-bottom: 50px;
}

.unlock-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
}

.unlock-header {
    text-align: center;
    margin-bottom: 40px;
}

.unlock-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.unlock-header p {
    color: var(--text-light);
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.countdown-item {
    text-align: center;
    padding: 20px;
    background: var(--gradient-elegant);
    border-radius: 15px;
    min-width: 100px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pastel-lavender);
}

.unlock-progress {
    margin-top: 30px;
}

.unlock-progress-bar {
    height: 25px;
    background: rgba(168, 218, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.unlock-progress-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 15px;
    transition: width 1s ease;
}

.unlock-status {
    text-align: center;
    color: var(--text-gray);
    font-weight: 600;
}

.withdrawal-schedule {
    margin-bottom: 50px;
}

.schedule-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
}

.schedule-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.schedule-description {
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.schedule-phase {
    display: flex;
    gap: 20px;
    align-items: start;
}

.phase-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.phase-marker.locked {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.phase-marker.partial {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.phase-marker.unlocked {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.phase-content {
    flex: 1;
    padding: 15px;
    background: var(--gradient-elegant);
    border-radius: 15px;
}

.phase-content h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 8px;
}

.phase-content p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.phase-percentage {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(168, 218, 255, 0.3);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.phase-percentage.success {
    background: rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.withdrawal-info {
    display: flex;
    gap: 12px;
    align-items: start;
    padding: 20px;
    background: rgba(168, 218, 255, 0.1);
    border-radius: 15px;
}

.withdrawal-info i {
    color: var(--pastel-lavender);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.withdrawal-info p {
    color: var(--text-gray);
    line-height: 1.6;
}

.purchase-history {
    margin-bottom: 50px;
}

.history-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
}

.history-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 25px;
}

.no-purchases {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.no-purchases i {
    font-size: 4rem;
    color: var(--pastel-lavender);
    margin-bottom: 20px;
}

.no-purchases p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.purchases-data-table {
    width: 100%;
    border-collapse: collapse;
}

.purchases-data-table thead {
    background: var(--gradient-elegant);
}

.purchases-data-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
}

.purchases-data-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(168, 218, 255, 0.2);
}

.purchases-data-table tr:hover {
    background: rgba(168, 218, 255, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.locked {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Responsive adjustments for new pages */
@media (max-width: 968px) {
    .tier-stats-row {
        grid-template-columns: 1fr;
    }
    
    .countdown-display {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tier-status-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .welcome-message h1 {
        font-size: 2rem;
    }
    
    .purchases-data-table {
        font-size: 0.9rem;
    }
    
    .purchases-data-table th,
    .purchases-data-table td {
        padding: 10px 8px;
    }
}
/* ============================================
   NEW HERO SECTION REDESIGN
   ============================================ */

/* FOMO Top Banner */
.fomo-banner {
    background: linear-gradient(90deg, #FF006E 0%, #B026FF 50%, #00FFF0 100%);
    padding: 12px 0;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 100;
    overflow: hidden;
    animation: gradientShift 10s ease infinite;
}

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

.fomo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}

.fomo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.fomo-item i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.fomo-item strong {
    font-weight: 700;
}

.fomo-divider {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

/* Luxury Overlay */
.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.50) 0%,
        rgba(26, 31, 58, 0.35) 50%,
        rgba(10, 14, 39, 0.50) 100%);
    z-index: 3;
}

/* Hero Main Layout */
.hero-main {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 60px;
    z-index: 10;
    width: 100%;
    float: left;
    position: relative;
    align-items: center;
}

.hero-text {
    max-width: none;
    text-align: left;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 240, 0.1);
    border: 1px solid rgba(0, 255, 240, 0.3);
    border-radius: 30px;
    color: #00FFF0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.pulse-dot {
    color: #00FFF0;
    animation: pulse 1.5s ease-in-out infinite;
    font-size: 8px;
}
/* New Hero Title */
.hero-title-new {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

.amount-highlight {
    background: linear-gradient(135deg, #00FFF0 0%, #B026FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5rem;
    font-weight: 800;
}

.neon-glow {
    text-shadow: 0 0 30px rgba(0, 255, 240, 0.6),
                 0 0 60px rgba(176, 38, 255, 0.4);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 30px rgba(0, 255, 240, 0.6),
                     0 0 60px rgba(176, 38, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 255, 240, 0.8),
                     0 0 80px rgba(176, 38, 255, 0.6);
    }
}

/* Hero Subtitle */
.hero-subtitle-new {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 400;
}

.hero-subtitle-new strong {
    color: #00FFF0;
    font-weight: 700;
}

/* Price Comparison */
.price-comparison {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.price-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-box.current {
    border-color: rgba(156, 163, 175, 0.3);
}

.price-box.future {
    border-color: rgba(0, 255, 240, 0.5);
    background: rgba(0, 255, 240, 0.05);
    box-shadow: 0 0 30px rgba(0, 255, 240, 0.2);
}

.price-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.price-box.future .price-value {
    background: linear-gradient(135deg, #00FFF0 0%, #B026FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-per {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -5px;
}

.price-arrow {
    font-size: 2rem;
    color: #00FFF0;
    animation: slideRight 2s ease-in-out infinite;
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.roi-badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

/* Hero Progress Bar */
.hero-progress {
    margin-bottom: 36px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.progress-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.progress-percentage {
    color: #FF006E;
    font-weight: 700;
}

.progress-bar-hero {
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: visible;
    position: relative;
}

.progress-fill-hero {
    height: 100%;
    background: linear-gradient(90deg, #00FFF0 0%, #B026FF 100%);
    border-radius: 30px;
    position: relative;
    transition: width 1s ease;
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.6);
}

.progress-glow {
    position: absolute;
    top: -4px;
    right: -24px;
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, #00FFF0 0%, transparent 100%);
    border-radius: 50%;
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.urgent-text {
    color: #FF006E;
    font-weight: 700;
}

.urgent-text i {
    animation: flash 1s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hero Buttons New */
.hero-buttons-new {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0px 30px;
    background: linear-gradient(135deg, #00FFF0 0%, #B026FF 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 255, 240, 0.4);
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 255, 240, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 15px 60px rgba(0, 255, 240, 0.6);
        transform: scale(1.02);
    }
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 60px rgba(0, 255, 240, 0.7);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 4s linear infinite;
}

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

.btn-icon {
    font-size: 16px;
    z-index: 1;
}

.btn-text {
    z-index: 1;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00FFF0;
    transform: translateY(-2px);
}

/* ROI Calculator Card */
.roi-calculator {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 255, 240, 0.2);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 100px;
    height: auto;
    max-height: max-content;
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
}

.calculator-header i {
    font-size: 1.5rem;
    color: #00FFF0;
}

.calculator-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.calc-input-group label, .calc-result label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}
.input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.input-prefix {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    font-weight: 600;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    transition: all 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #00FFF0;
    box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
}

.calc-arrow {
    text-align: center;
    font-size: 2rem;
    color: #00FFF0;
    margin: 20px 0;
    animation: bounce 2s ease-in-out infinite;
}

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

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00FFF0 0%, #B026FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3px;
}

.result-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.calc-roi {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
}

.roi-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.roi-value {
    font-size: 2rem;
    font-weight: 800;
    color: #10B981;
    font-family: 'Space Grotesk', sans-serif;
}

.calculator-note {
    margin-top: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    text-align: center;
}

/* Trust Badges */
.trust-badges {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    z-index: 10;
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 240, 0.3);
    transform: translateY(-3px);
}

.badge-item i {
    font-size: 1.5rem;
    color: #00FFF0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding-top: 140px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .roi-calculator {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-title-new {
        font-size: 3rem;
    }
    
    .amount-highlight {
        font-size: 3.5rem;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {





    
    .hero {
        padding-top: 160px;
    }
    
    .fomo-banner {
        font-size: 0.85rem;
    }
    
    .fomo-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .fomo-divider {
        display: none;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .amount-highlight {
        font-size: 3rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }
    
    .price-comparison {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 28px;
    }
    
    .price-arrow {
        transform: rotate(90deg);
    }
    
    .hero-progress {
        margin-bottom: 28px;
    }
    
    .hero-buttons-new {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        position: static;
        margin-top: 40px;
    }
}

/* ==========================================
   PRE-SALE TIERS SECTION
   ========================================== */

.presale-tiers {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

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

.tiers-header {
    text-align: center;
    margin-bottom: 80px;
}

.tiers-header .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.tiers-header .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Tiers Grid */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

/* Tier Card Base Styles */
.tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Active Tier Styling */
.tier-card.active {
    background: rgba(0, 255, 240, 0.08);
    border: 2px solid #00FFF0;
    box-shadow: 0 0 40px rgba(0, 255, 240, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
}

.tier-card.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, #00FFF0, #B24BF3);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: glow-pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.tier-card.active:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 60px rgba(0, 255, 240, 0.6), 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Locked Tier Styling */
.tier-card.locked {
    opacity: 0.6;
    cursor: not-allowed;
}

.tier-card.locked:hover {
    transform: none;
}

/* Tier Status Badge */
.tier-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.tier-status.live {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.tier-status.live i {
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.tier-status.locked {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.tier-status.sold-out {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
}

/* Tier Header */
.tier-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.tier-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.tier-card.active .tier-name {
    color: #00FFF0;
}

/* Tier Price */
.tier-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00FFF0;
    margin-bottom: 8px;
    line-height: 1;
}

.tier-price-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

/* Tier Details */
.tier-details {
    margin-bottom: 24px;
}

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

.tier-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.tier-detail-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.tier-card.active .tier-detail-value {
    color: #00FFF0;
}

/* ROI Badge */
.tier-roi-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #00FFF0, #B24BF3);
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Tier Progress */
.tier-progress {
    margin-bottom: 24px;
}

.tier-progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.tier-progress-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.tier-progress-percentage {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00FFF0;
}

.tier-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.tier-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00FFF0, #B24BF3);
    border-radius: 50px;
    transition: width 1s ease-out;
    position: relative;
}

.tier-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Tier CTA Button */
.tier-btn {
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tier-btn.active {
    background: linear-gradient(135deg, #00FFF0, #B24BF3);
    color: #ffffff;
}

.tier-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 240, 0.4);
}

.tier-btn.locked {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
}

.tier-btn.locked:hover {
    transform: none;
}

/* Price Progression Chart */
.price-progression {
    margin-bottom: 60px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progression-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.progression-chart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.progression-step {
    text-align: center;
    flex: 1;
}

.step-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00FFF0;
    margin-bottom: 8px;
}

.step-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.step-roi {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #B24BF3;
}

.progression-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #00FFF0, #B24BF3);
    position: relative;
}

.progression-line::after {
	content: '→';
	position: absolute;
	right: -2px;
	top: 39%;
	transform: translateY(-58%);
	color: #00FFF0;
	font-size: 1.5rem;
}

/* Tiers FAQ */
.tiers-faq {
    text-align: center;
    padding: 40px;
    background: rgba(0, 255, 240, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(0, 255, 240, 0.2);
}

.faq-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #00FFF0;
    margin-bottom: 16px;
}

.faq-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.faq-icon {
    font-size: 3rem;
    color: #00FFF0;
    margin-bottom: 16px;
}

/* ==========================================
   ACTIVE TIER SPOTLIGHT (SIMPLIFIED)
   ========================================== */

.active-tier-spotlight {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 255, 240, 0.3);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 240, 0.2);
}

.active-tier-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 240, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.spotlight-left h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #00FFF0;
    margin-bottom: 24px;
}

.spotlight-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 40px;
}

.current-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00FFF0, #B24BF3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.spotlight-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item i {
    font-size: 1.75rem;
    color: #00FFF0;
}

.stat-item > div {
    flex: 1;
}

.stat-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0 0 0 !important;
}
.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.stat-value.success {
    color: #10b981;
}

.stat-value.warning {
    color: #f59e0b;
}

.spotlight-right {
    padding: 24px;
    background: rgba(0, 255, 240, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 240, 0.2);
}

.spotlight-cta {
    text-align: center;
}

.urgency-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.urgency-message i {
    font-size: 1.25rem;
}

.urgency-message p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.spotlight-btn {
    width: 100%;
    margin-bottom: 16px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 240, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 240, 0.5);
    }
}

.cta-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cta-note i {
    color: #10b981;
}

.progression-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 32px;
    margin-top: -24px;
}

.progression-step.active .step-price {
	color: #10b981;
	font-size: 2.5rem;
}

.progression-step.active .step-label {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .tier-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .presale-tiers {
        padding: 80px 0;
    }
    
    .tiers-header .section-title {
        font-size: 2.5rem;
    }
    
    .tiers-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tier-card {
        padding: 28px;
    }
    
    .tier-price {
        font-size: 2.5rem;
    }
    
    .progression-chart {
        flex-direction: column;
        gap: 20px;
    }
    
    .progression-line {
        width: 2px;
        height: 40px;
        transform: rotate(90deg);
    }
    
    .progression-line::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(50%);
    }
    
    .price-progression {
        padding: 40px 20px;
    }
    
    .progression-title {
        font-size: 1.5rem;
    }
    
    .active-tier-spotlight {
        padding: 24px;
    }
    
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .spotlight-left h3 {
        font-size: 1.5rem;
    }
    
    .spotlight-btn {
        font-size: 0.95rem;
        padding: 14px 24px;
    }
}

/* Homepage CTA Section Styles */
.cta-section {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(168, 218, 255, 0.1), rgba(199, 184, 234, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(168, 218, 255, 0.3);
}

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

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(168, 218, 255, 0.3);
}

.value-item i {
    font-size: 28px;
    color: #6B46C1;
    min-width: 28px;
}

.value-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}
.cta-urgency {
    border: 2px dashed #FFE5B4;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative;
}

.cta-urgency i {
    color: #FF6B35;
    font-size: 22px;
    animation: fire-flicker 1.5s ease-in-out infinite;
}

.cta-urgency span {
    color: #7A3E00;
    font-size: 1rem;
}

.cta-urgency strong {
    color: #D84315;
    font-weight: 600;
}

@keyframes fire-flicker {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 152, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 152, 0, 0.6); }
}

.btn-cta {
    font-size: 1.3rem !important;
    padding: 20px 40px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.3s ease !important;
}

.btn-cta:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6) !important;
}

.btn-cta i {
    margin-right: 12px;
    font-size: 1.4rem;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(168, 218, 255, 0.3);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.trust-item i {
    color: #10B981;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .value-proposition {
        grid-template-columns: 1fr;
    }
    
    .btn-cta {
        font-size: 1.1rem !important;
        padding: 18px 30px !important;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================
   REFERRAL SYSTEM STYLES
   ========================================== */

.referral-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.referral-header {
    text-align: center;
    margin-bottom: 40px;
}

.referral-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.referral-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Referral Code Card */
.referral-code-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.code-label {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 600;
}

.code-label i {
    margin-right: 8px;
}

.code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.code-text {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    letter-spacing: 8px;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-copy {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-copy.success {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-share {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: white;
}

.btn-share i {
    margin-right: 8px;
}

.btn-share.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-share.telegram {
    background: linear-gradient(135deg, #0088cc, #0077b5);
}

.btn-share.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.btn-share.link {
    background: linear-gradient(135deg, #718096, #4a5568);
}

.btn-share:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Stats Grid */
.referral-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.stat-icon.success {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.stat-icon.info {
    background: linear-gradient(135deg, #4299e1, #3182ce);
}

.stat-icon.warning {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
}

.stat-details {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-value.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Withdrawal Card */
.withdrawal-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.withdrawal-header {
    margin-bottom: 30px;
}

.withdrawal-header h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.withdrawal-header h3 i {
    margin-right: 10px;
    color: #667eea;
}

.withdrawal-header p {
    color: #718096;
    font-size: 1rem;
}

.withdrawal-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-hint {
    display: block;
    font-size: 0.85rem;
    color: #718096;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Tabs */
.referral-tabs {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tab-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #718096;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn i {
    margin-right: 8px;
}

.tab-btn:hover {
    color: #667eea;
}

.tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Earnings Timeline */
.earnings-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.earning-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: white;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.earning-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.earning-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.earning-details {
    flex: 1;
}

.earning-user {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 8px;
}

.earning-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #718096;
}

.earning-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.earning-amount {
    text-align: right;
}

.amount-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #48bb78;
    margin-bottom: 5px;
}

.amount-date {
    font-size: 0.85rem;
    color: #718096;
}

/* Withdrawals List */
.withdrawals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.withdrawal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    background: white;
    border: 2px solid #e2e8f0;
}

.withdrawal-info {
    flex: 1;
}

.withdrawal-amount {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.withdrawal-details {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #718096;
}

.withdrawal-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.withdrawal-status {
    text-align: right;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.status-badge.status-pending {
    background: #fef5e7;
    color: #d68910;
}

.status-badge.status-approved {
    background: #d5f4e6;
    color: #1e8449;
}

.status-badge.status-rejected {
    background: #fadbd8;
    color: #c0392b;
}

.status-badge.status-completed {
    background: #d5f4e6;
    color: #1e8449;
}

.withdrawal-date {
    font-size: 0.85rem;
    color: #718096;
}

/* Referrals List */
.referrals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.referral-user-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: white;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.referral-user-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.user-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: #718096;
}

.user-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-date {
    font-size: 0.9rem;
    color: #718096;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 1.1rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 10000;
    transition: bottom 0.3s ease;
}

.toast.show {
    bottom: 30px;
}

.toast i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .referral-header h1 {
        font-size: 2rem;
    }
    
    .code-text {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .code-display {
        flex-direction: column;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .btn-share {
        width: 100%;
    }
    
    .referral-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
    }
    
    .earning-card {
        flex-direction: column;
        text-align: center;
    }
    
    .earning-amount {
        text-align: center;
    }
    
    .withdrawal-item {
        flex-direction: column;
        text-align: center;
    }
    
    .withdrawal-status {
        text-align: center;
    }
    
    .referral-user-card {
        flex-direction: column;
        text-align: center;
    }
}

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

/* Withdrawal Address & Transaction Widget Responsive Styles */
@media (max-width: 768px) {
    .withdrawal-widget-container .row {
        grid-template-columns: 1fr !important;
    }
    
    .withdrawal-widget-container .glass {
        padding: 20px !important;
    }
    
    .withdrawal-widget-container h3 {
        font-size: 16px !important;
    }
    
    .withdrawal-widget-container code {
        font-size: 10px !important;
        word-break: break-all;
    }
}

/* Transaction History Page Responsive */
@media (max-width: 1024px) {
    table {
        font-size: 13px;
    }
    
    table th, table td {
        padding: 12px 8px !important;
    }
}

@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    table thead {
        display: none;
    }
    
    table tbody tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 12px;
    }
    
    table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0 !important;
        border: none !important;
    }
    
    table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b7280;
        margin-right: 12px;
    }
}




h2.section-title {
  background: linear-gradient(90deg, #FF006E, #00FFF0, #FF006E);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s linear infinite;
}

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




.purchase-section-compact  .tier-badge {
    position: absolute;
    top: -81px;
    transform: translateX(-10%);
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 8px 20px rgba(168, 218, 255, 0.4);
    right: 0;
    width: auto !important;
    left: auto;
}


@media only screen and (max-width: 767px) {

.purchase-section-compact { 
	width: 100%;
	text-align: center;
	margin: auto;
}
.active-tier-spotlight { 
	width: 100%;
	text-align: center;
	margin: auto;
}

}