body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    margin: 0;
    padding: 0;
    color: #fff;
    min-height: 100vh;
    transition: all 0.3s ease;
}

header {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.banner {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.baslik {
    font-size: 2.5rem;
    margin: 20px 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 2s ease-in-out infinite;
}

.arama-konteyner {
    position: relative;
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

main {
    padding-bottom: 50px;
}

/* Rest of the existing CSS remains the same */
.kelime-konteyner {
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}



.banner:hover {
    transform: scale(1.01);
}



@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 217, 61, 0.5); }
}


.arama-konteyner:focus-within {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.arama-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 16px;
    background: transparent;
    color: #fff;
}

.arama-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.arama-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arama-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}


.kelime {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kelime:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.kelime h2 {
    color: #ffd93d;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.kelime p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .baslik {
        font-size: 2rem;
    }
    
    .kelime-konteyner {
        grid-template-columns: 1fr;
    }
    
    .arama-konteyner {
        width: 95%;
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.loading::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}