.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0));
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.news-card {
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

a:focus, button:focus {
    outline: 2px solid #4F46E5;
    outline-offset: 2px;
}

.loading {
    position: relative;
    opacity: 0.1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {transform: rotate(360deg);}
}

.lazy-image {
    filter: blur(10px);
    transition: filter 0.3s;
}

.lazy-image.loaded {
    filter: blur(0);
}

.protected-image {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.social-media {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 10px;
    z-index: 1000;
}

.footer {
    background-color: rgba(0, 0, 0, 0.5); /* Üstteki şeffaf alanla aynı stil */
    height: 60px; /* Yüksekliği azalttım */
    text-align: center;
    position: fixed; /* Sayfanın altında sabit kalması için */
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Gölge efekti */
}



/* Mobil uyumluluk için medya sorguları */
@media (max-width: 768px) {
    .transparent-navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-content {
        padding: 1rem;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.5rem;
    }
    .flex {
        flex-direction: column;
        align-items: center;
    }
    .bg-indigo-600 {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.25rem;
    }
}
