/* Genel Stil Ayarları */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Ana arka plan rengi */
    color: #E0E0E0; /* Genel metin rengi */
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header (Başlık) */
header {
    background-color: #1E1E1E; /* Panel rengiyle uyumlu */
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

header h1 {
    margin: 0;
    font-size: 3em;
    font-weight: 700;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
    font-weight: 300;
    color: #B0B0B0;
}

/* Ana İçerik Bölümleri */
main section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #252525;
}

main section:last-child {
    border-bottom: none;
}

main h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

/* Hero (Ana Karşılama) Bölümü */
#hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.btn-download {
    display: inline-block;
    background-color: #0078D4; /* Uygulamadaki vurgu rengi */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #005a9e;
}

#hero small {
    display: block;
    margin-top: 15px;
    color: #888;
}

/* Neden Biz? Bölümü */
.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    text-align: left;
}

.feature-item {
    background-color: #1E1E1E;
    padding: 25px;
    border-radius: 8px;
    flex: 1;
}

.feature-item h3 {
    font-size: 1.5em;
    margin-top: 0;
    color: #0098ff;
}

/* Kullanım Kılavuzu Bölümü */
.controls-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.controls-list li {
    background-color: #1E1E1E;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 4px solid #0078D4;
}

.controls-list strong {
    font-family: 'Segoe UI Emoji', sans-serif; /* İkonların düzgün görünmesi için */
    margin-right: 10px;
    color: #0098ff;
}

/* Footer (Alt Bilgi) */
footer {
    background-color: #1E1E1E;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9em;
    color: #888;
}
