

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    text-align: center;
    padding: 4rem 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(100, 120, 140, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(90, 110, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(100, 120, 140, 0.05) 0%, transparent 50%),
        url('/static/assets/wallpaper.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    border-radius: 0.5rem 0.5rem 0 0;
    margin-bottom: 0;
    overflow: hidden;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(45, 55, 72, 0.7) 100%);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(100, 120, 140, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(90, 110, 130, 0.04) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #48bb78;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.status-widget {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.status-indicator:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(72, 187, 120, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.status-indicator:active {
    transform: translateY(0);
}

.status-orb {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #48bb78, #38a169);
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
    box-shadow: 
        0 0 0 0 rgba(72, 187, 120, 0.8),
        0 0 4px rgba(72, 187, 120, 0.6);
    position: relative;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 
            0 0 0 0 rgba(72, 187, 120, 0.8),
            0 0 4px rgba(72, 187, 120, 0.6);
    }
    
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 0 0 8px rgba(72, 187, 120, 0),
            0 0 8px rgba(72, 187, 120, 0.4);
    }
    
    100% {
        transform: scale(0.9);
        box-shadow: 
            0 0 0 0 rgba(72, 187, 120, 0),
            0 0 4px rgba(72, 187, 120, 0.6);
    }
}

.status-text {
    font-size: 0.85rem;
    color: #e2e8f0;
    font-weight: 500;
    white-space: nowrap;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn {
    height: 48px;
    padding: 0 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    min-width: 180px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: #1a202c;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.5);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
} 