:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --light-color: #ecf0f1;
    --background-color: #f4f7f6;
    --dark-text: #333;
    --light-text: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--dark-text);
}

header {
    background: linear-gradient(135deg, #4c669f, #3b5998);
    color: var(--light-text);
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    text-align: left;
    overflow: hidden; /* Animasyonların taşmasını engeller */
}

.header-content {
    max-width: 500px;
    margin-right: 2rem;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin: 0 0 1rem 0;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.header-image img {
    max-width: 300px;
    animation: float 4s ease-in-out infinite;
}

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

main {
    max-width: 960px;
    margin: 4rem auto;
    padding: 0 1rem;
}

section {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Animasyon geçişi */
}

/* --- YENİ EKLENEN İKON VE ÖZELLİKLER BÖLÜMÜ STİLLERİ --- */
#features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-item .feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}
/* --- --- --- --- --- --- --- --- --- --- --- --- --- */

.download-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* --- YENİ EKLENEN ANİMASYON STİLLERİ --- */
.hidden {
    opacity: 0;
    transform: translateY(30px);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

#screenshots {
    text-align: center;
}

#screenshots h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
}

.gallery {
    display: flex; /* Resimleri yan yana dizmek için en modern ve kolay yöntem! */
    justify-content: center; /* Resimleri yatayda ortalar */
    align-items: center; /* Resimleri dikeyde ortalar */
    flex-wrap: wrap; /* Ekrana sığmazlarsa alt satıra geçmelerini sağlar (mobil için önemli) */
    gap: 25px; /* Resimler arasına boşluk bırakır */
}

.gallery img {
    width: 100%; /* Genişliği esnek tutar */
    max-width: 280px; /* Bir resmin alabileceği en büyük genişliği belirler (küçültme işlemi burada olur) */
    border-radius: 12px; /* Kenarları yumuşatır */
    box-shadow: 0 5px 20px rgba(0,0,0,0.15); /* Gölgelendirme ile derinlik hissi verir */
    transition: transform 0.3s ease-in-out; /* Üzerine gelince olacak animasyon için hazırlık */
}

.gallery img:hover {
    transform: scale(1.05) translateY(-5px); /* Fare üzerine gelince resim hafifçe büyür ve yukarı kalkar */
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
/* --- --- --- --- --- --- --- --- --- --- */