/* Genel Stil Ayarları */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #1e1e1e, #121212);
    color: #E0E0E0;
    line-height: 1.6;
}

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

/* Header (Başlık) */
header {
    background-color: transparent;
    padding: 60px 0;
    text-align: center;
}

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: 20px 0;
    text-align: center;
}

#hero {
    padding-bottom: 10px;
}

#macos-guide {
    padding-top: 10px;
}



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;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.2);
}

.btn-download:hover {
    background-color: #005a9e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.3);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

#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: 30px;
    border-radius: 12px;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2d2d2d;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.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;
}

/* macOS Guide */
#macos-guide .steps {
    list-style-position: inside;
    text-align: left;
    max-width: 700px;
    margin: 30px auto 0;
    padding-left: 20px;
}

#macos-guide .steps li {
    margin-bottom: 15px;
}

#macos-guide .steps ul {
    list-style-type: disc;
    margin-top: 10px;
    padding-left: 40px;
}

/* Footer (Alt Bilgi) */
footer {
    background-color: #121212;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    font-size: 0.9em;
    color: #888;
    border-top: 1px solid #252525;
}
