.gradient-text-section {
    padding: 8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000000;
    position: relative;
    min-height: 100vh;
}

.gradient-heading {
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    line-height: 1.2;
    z-index: 1;
}

.gradient-heading .highlight {
    color: transparent;
    background-image: linear-gradient(90deg, 
        #00cc66, #6366f1, #00cc66, #6366f1
    );
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradientWave 8s linear infinite;
    position: relative;
}

.gradient-heading .highlight::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(99, 102, 241, 0.3) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    filter: blur(20px);
}

.gradient-heading .highlight:hover::after {
    opacity: 1;
}

.gradient-heading .and-more {
    display: block;
    color: transparent;
    background-image: linear-gradient(90deg, 
        #6366f1, #00cc66, #6366f1, #00cc66
    );
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 0.7em;
    margin-top: 1rem;
    animation: gradientWave 8s linear infinite reverse;
}

@keyframes gradientWave {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    animation: sparkleFloat 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .gradient-heading {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .gradient-heading {
        font-size: 2.5rem;
    }
}
