/* Genel Sayfa Stilleri */
body {
    background-color: #121212; /* Koyu arkaplan */
    color: #e0e0e0; /* Açık renk metin */
    font-family: 'Inter', sans-serif; /* Okunabilir modern font */
    margin: 0;
    line-height: 1.6;
}

/* Kaldırılan RGB Animasyonu */
/* @keyframes rgb-text-animation ... */

/* Başlıklar için yeni yumuşak font stili */
.minecraft-font {
    font-family: 'Inter', sans-serif; /* Pikselli font yerine modern bir font */
    color: #ffffff;                  /* Beyaz renk */
    font-weight: 700;                 /* Kalın yazı tipi */
    text-shadow: none;                /* Gölgeyi kaldır */
}

/* Link Stilleri */
a {
    color: #58a6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #88c0ff;
}

/* Navigasyon Menüsü Stilleri */
.navbar {
    background-color: rgba(20, 20, 20, 0.8); /* Hafif şeffaf arkaplan */
    backdrop-filter: blur(10px); /* Arkaplanı bulanıklaştır */
    border-bottom: 1px solid #333;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #e0e0e0;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Navigasyon linki hover animasyonu kaldırıldı, artık normal link gibi renk değiştirecek */
.nav-link:hover {
    color: #88c0ff;
}

/* Ana İçerik Stilleri */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.main-header {
    text-align: center;
    margin-bottom: 4rem;
}

.main-header h1 {
    font-size: 3.5rem;
    letter-spacing: 4px;
}

/* Özellikler Bölümü (Çapraz Yerleşim) */
.feature-section {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 5rem;
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2c2c2c;
}

/* Çift sıradaki elemanların yönünü ters çevirerek çapraz görünüm oluşturma */
.feature-section:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image, .feature-text {
    flex: 1; /* Eşit genişlikte alan kaplamalarını sağlar */
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.feature-text h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* Son özellik bölümündeki metni ortala */
.feature-section:last-child .feature-text {
    text-align: center;
}

/* Alt Bilgi Stilleri */
.footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    color: #777;
}

.footer p a {
    color: #999;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer p a:hover {
    color: #fff;
}

/* Logo Konteyneri Stilleri */
.logo-container {
    width: 200px;
    margin: 20px auto 10px auto; /* üst 20px, sağ-sol auto, alt 10px */
    text-align: center;
    padding-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 200px; /* Maksimum genişliği sınırla */
}

/* İçerik Konteyneri Stilleri */
.content-container {
    min-height: 100vh;
    padding: 20px;
}

/* İndirme Butonları için Grid Sistemi */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.download-button.drive {
    background-color: #1FA463;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.download-button.drive:hover {
    background-color: #168751;
}

.download-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Mobil Cihazlar için Responsive Tasarım */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-header h1 {
        font-size: 2.5rem;
    }
    
    .feature-section, .feature-section:nth-child(even) {
        flex-direction: column; /* Küçük ekranlarda alt alta sırala */
        text-align: center;
    }
}