/* Home Page Styles */

.hero-section {
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.7) 100%),
        url('/images/hero-celebration.png') center/cover no-repeat,
        radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 255, 136, 0.8), transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 215, 0, 0.6), transparent),
        linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(26, 26, 46, 0.3) 100%);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 3s linear infinite;
    z-index: 1;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.balance-display {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1rem 2rem;
    margin: 1rem 0;
}

.balance-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.balance-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-actions .btn {
    margin: 0.5rem;
}

.hero-actions .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        min-width: auto;
    }
    
    .balance-display {
        margin: 1rem 0;
        padding: 0.75rem 1.5rem;
    }
    
    .balance-amount {
        font-size: 1.2rem;
    }
}
