/* index.css - Styles specifically for the landing page */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.orb-1 { width: 600px; height: 600px; background: var(--orange); top: -10%; left: -10%; animation-delay: 0s; }
.orb-2 { width: 800px; height: 800px; background: var(--accent); bottom: -20%; right: -15%; animation-delay: 7s; }
.orb-3 { width: 500px; height: 500px; background: #8250df; top: 30%; right: 10%; animation-delay: 14s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-100px) translateX(100px); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(247, 147, 26, 0.4);
        filter: drop-shadow(0 0 10px rgba(247, 147, 26, 0.3));
    }
    50% {
        text-shadow: 0 0 40px rgba(247, 147, 26, 0.8),
                     0 0 60px rgba(247, 147, 26, 0.6);
        filter: drop-shadow(0 0 20px rgba(247, 147, 26, 0.7));
    }
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.8rem;
    color: var(--text);
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 600;
}

.btn-primary {
    background: var(--orange);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(247, 147, 26, 0.5);
    display: inline-block;
}

.btn-primary:hover {
    background: #e6820e;
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 0 50px rgba(247, 147, 26, 0.8);
    color: white;
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 6rem auto;
    max-width: 1400px;
    padding: 0 2rem;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value, .hodl-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange);
    margin: 0.5rem 0 1rem;
    letter-spacing: 2px;
}

.stat-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .orb { opacity: 0.15; filter: blur(100px); }
    .orb-1 { width: 300px; height: 300px; top: 0%; left: -15%; }
    .orb-2 { width: 350px; height: 350px; bottom: -25%; right: -20%; }
    .orb-3 { width: 250px; height: 250px; top: 40%; right: -15%; }
    
    .hero { padding: 1.5rem; min-height: 80vh; }
    .hero h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); margin-bottom: 1rem; }
    .hero p { font-size: 1.3rem; margin: 0 auto 2rem; }
    
    .btn-primary { padding: 0.9rem 1.8rem; font-size: 1rem; box-shadow: 0 0 20px rgba(247, 147, 26, 0.6); }
    .btn-primary:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 0 35px rgba(247, 147, 26, 0.7); }
    
    .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; margin: 3rem auto; padding: 0 1rem; max-width: 100%; }
    .stat-card { padding: 1.8rem; min-height: 220px; border: 1.5px solid var(--border); background: rgba(13, 17, 23, 0.8); }
    .stat-icon { font-size: 3rem; margin-bottom: 0.8rem; }
    .stat-label { font-size: 0.8rem; letter-spacing: 0.5px; }
    .stat-value, .hodl-value { font-size: 2.5rem; margin: 0.5rem 0 0.8rem; letter-spacing: 1px; }
    .stat-subtext { font-size: 0.9rem; color: #8b949e; }
    
    .gradient-text { animation: glowPulseMobile 4s ease-in-out infinite; }
    @keyframes glowPulseMobile {
        0%, 100% { text-shadow: 0 0 15px rgba(247, 147, 26, 0.4); filter: drop-shadow(0 0 8px rgba(247, 147, 26, 0.3)); }
        50% { text-shadow: 0 0 25px rgba(247, 147, 26, 0.6); filter: drop-shadow(0 0 12px rgba(247, 147, 26, 0.4)); }
    }
}

@media (max-width: 480px) {
    .hero { padding: 1rem; min-height: 70vh; }
    .hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); line-height: 1; margin-bottom: 0.8rem; }
    .hero p { font-size: 1rem; margin: 0 auto 1.5rem; font-weight: 500; }
    
    .btn-primary { padding: 0.75rem 1.5rem; font-size: 0.9rem; box-shadow: 0 0 15px rgba(247, 147, 26, 0.5); }
    .btn-primary:hover { transform: scale(1.02) translateY(-1px); box-shadow: 0 0 25px rgba(247, 147, 26, 0.6); }
    
    .stat-card { padding: 1.2rem; min-height: 160px; }
    .stat-icon { font-size: 2.2rem; margin-bottom: 0.6rem; }
    .stat-label { font-size: 0.7rem; margin-bottom: 0.3rem; letter-spacing: 0.3px; }
    .stat-value, .hodl-value { font-size: 1.8rem; margin: 0.3rem 0 0.6rem; letter-spacing: 0.5px; }
    .stat-subtext { font-size: 0.8rem; }
    
    .stats-grid { margin: 2rem auto; padding: 0 0.5rem; }
    .orb { display: none; }
}