.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, rgba(255, 171, 57, 0.15) 0%, rgba(10, 10, 11, 0.9) 50%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,171,57,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Particle canvas for hero background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 4rem 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 171, 57, 0.5);
    animation: fadeInUp 1s ease-out, textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 171, 57, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(255, 171, 57, 0.8));
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 3rem;
    animation: floatAnimation 8s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
}

.hero-image:hover {
    transform: scale(1.05) rotateY(5deg);
    filter: drop-shadow(0 30px 60px rgba(255, 171, 57, 0.4)) drop-shadow(0 0 50px rgba(255, 171, 57, 0.6));
    animation-play-state: paused;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    25% {
        transform: translateY(-20px) rotateZ(1deg);
    }
    50% {
        transform: translateY(-10px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-30px) rotateZ(-1deg);
    }
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-down svg {
    filter: drop-shadow(0 0 10px var(--primary-color));
    transition: all 0.3s ease;
}

.scroll-down:hover svg {
    filter: drop-shadow(0 0 20px var(--primary-color));
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-image {
        max-width: 90%;
        margin-bottom: 2rem;
    }
}