/* Split Text Animation Styles */
.split-text-container {
    margin-bottom: 2rem;
}

.split-text-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.split-text-title.left-align {
    justify-content: flex-start;
    text-align: left;
}

.split-word {
    display: inline-block;
    overflow: visible;
    position: relative;
    height: auto;
    min-height: 1.3em;
}

.split-word-inner {
    display: inline-block;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
    animation-delay: calc(var(--word-index) * 0.1s);
}

.split-word em .split-word-inner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 800;
}

/* Animasyon */
@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Farklı boyutlar */
.split-text-hero {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

.split-text-large {
    font-size: clamp(2rem, 6vw, 3.5rem);
}

.split-text-medium {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.split-text-small {
    font-size: clamp(1.2rem, 3vw, 2rem);
}

/* Hover efekti */
.split-word:hover .split-word-inner {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .split-text-title {
        gap: 0.3rem;
    }

    .split-word-inner {
        animation-delay: calc(var(--word-index) * 0.05s);
    }
}

/* Tema renkleri */
.split-text-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.split-text-dark {
    color: #1e293b;
}

.split-text-white {
    color: white;
}

/* Özel efektler */
.split-text-shadow {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.split-text-glow {
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}