* {
    font-family: 'Wudoo Mono', monospace !important;
}

body {
    overflow: hidden;
}

.hero {
    top: -65px;
    height: 107vh;
}

.hero-bg {
    background: linear-gradient(135deg, 
        #1a0033 0%, 
        #2d1b4e 15%, 
        #4a1a5c 30%, 
        #5b2c6f 45%, 
        #2d1b4e 60%, 
        #1a0033 75%, 
        #0f001a 100%);
    background-size: 300% 300%;
    height: 100%;
    width: 100%;
    position: absolute;
    animation: gradientShift 25s ease infinite;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 199, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(155, 89, 208, 0.25) 0%, transparent 55%),
        radial-gradient(circle at 60% 40%, rgba(123, 31, 162, 0.2) 0%, transparent 50%);
    animation: floatingOrbs 40s ease-in-out infinite;
}

/* Dalgalı katmanlar */
.hero-bg .wave-layer {
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    opacity: 0.15;
    background: 
        linear-gradient(45deg, 
            transparent 20%, 
            rgba(139, 69, 199, 0.2) 30%, 
            rgba(155, 89, 208, 0.25) 50%, 
            rgba(139, 69, 199, 0.2) 70%, 
            transparent 80%
        );
    transform: skew(-15deg) rotate(2deg);
    animation: waveFlow1 30s linear infinite;
}

.hero-bg .wave-layer:nth-child(2) {
    opacity: 0.12;
    background: 
        linear-gradient(-45deg, 
            transparent 25%, 
            rgba(123, 31, 162, 0.18) 35%, 
            rgba(139, 69, 199, 0.22) 50%, 
            rgba(123, 31, 162, 0.18) 65%, 
            transparent 75%
        );
    transform: skew(12deg) rotate(-1deg);
    animation: waveFlow2 40s linear infinite reverse;
}

.hero-bg .wave-layer:nth-child(3) {
    opacity: 0.1;
    background: 
        linear-gradient(60deg, 
            transparent 30%, 
            rgba(155, 89, 208, 0.15) 40%, 
            rgba(139, 69, 199, 0.18) 50%, 
            rgba(155, 89, 208, 0.15) 60%, 
            transparent 70%
        );
    transform: skew(-8deg) rotate(1deg);
    animation: waveFlow3 50s linear infinite;
}

/* Blob şekilleri */
.hero-bg .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.15;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.hero-bg .blob:nth-child(4) {
    width: 200px;
    height: 180px;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, rgba(139, 69, 199, 0.4), rgba(123, 31, 162, 0.15));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blobFloat1 20s infinite, blobMorph1 15s infinite;
}

.hero-bg .blob:nth-child(5) {
    width: 150px;
    height: 200px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle, rgba(155, 89, 208, 0.35), rgba(139, 69, 199, 0.12));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobFloat2 25s infinite, blobMorph2 18s infinite;
}

.hero-bg .blob:nth-child(6) {
    width: 120px;
    height: 140px;
    top: 40%;
    left: 70%;
    background: radial-gradient(circle, rgba(123, 31, 162, 0.3), rgba(139, 69, 199, 0.1));
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    animation: blobFloat3 30s infinite, blobMorph3 22s infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 60px 120px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 300px 200px;
    animation: gentleSparkle 40s linear infinite;
    opacity: 0.7;
}

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

@keyframes floatingOrbs {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(10px, -10px) scale(1.05);
        opacity: 0.3;
    }
}

@keyframes gentleSparkle {
    0% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0.7;
    }
}

@keyframes waveFlow1 {
    0% {
        transform: translateX(-100%) skew(-15deg) rotate(2deg);
    }
    100% {
        transform: translateX(50%) skew(-15deg) rotate(2deg);
    }
}

@keyframes waveFlow2 {
    0% {
        transform: translateX(50%) skew(12deg) rotate(-1deg);
    }
    100% {
        transform: translateX(-100%) skew(12deg) rotate(-1deg);
    }
}

@keyframes waveFlow3 {
    0% {
        transform: translateX(-100%) skew(-8deg) rotate(1deg);
    }
    100% {
        transform: translateX(50%) skew(-8deg) rotate(1deg);
    }
}

/* Blob animasyonları */
@keyframes blobFloat1 {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes blobFloat2 {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    50% {
        transform: translate(-25px, -40px) scale(1.15);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes blobFloat3 {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    25% {
        transform: translate(20px, 30px) scale(0.8);
    }
    75% {
        transform: translate(-30px, -20px) scale(1.2);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes blobMorph1 {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes blobMorph2 {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    33% {
        border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%;
    }
    66% {
        border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes blobMorph3 {
    0% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    50% {
        border-radius: 60% 40% 30% 70% / 30% 70% 30% 70%;
    }
    100% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
}

.hero-content {
    position: absolute;
    z-index: 10;
    bottom: 66px;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: left;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
}

.hero-buttons button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-buttons button:hover::before {
    left: 100%;
}

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

.hero-buttons button, .hero-buttons span {
    color: white;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}


/* Animations letter-spacing: -63.5px; to 0px 1s ease-in-out */
.hero-content h1 {
    font-weight: 900;
    font-size: 106px;
    line-height: 100px;
    color: #fff;
    animation: letter-spacing 5s ease-in-out;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    position: relative;
}

.hero-content h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 8s ease-in-out infinite;
    z-index: -1;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
}

@keyframes letter-spacing {
    from {
        letter-spacing: -63.5px;
    }
    to {
        letter-spacing: 0px;
    }
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
        line-height: 48px;
    }

    .hero-buttons span {display: none;}
    
    .hero-buttons {flex-direction: column;}
    .hero-content p {
        font-size: 16px;
    }

    @keyframes letter-spacing {
        from {
            letter-spacing: -29.5px;
        }
        to {
            letter-spacing: 0px;
        }
    }
}