/* Genel Sayfa Stilleri */

@media (max-width: 600px) {
  body {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
}


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    background-color: #fff;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero (Giriş) Alanı */
.hero {
    background-color: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}
.hero h1 {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.1em;
    max-width: 1000px;
    margin: 0 auto;
}

/* İndirme Listesi Alanı */
.downloads-header {
    background-color: #e9e9e9;
    text-align: center;
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
}
.downloads-list .download-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.download-item a {
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}
.download-item a:hover {
    text-decoration: underline;
}
.download-item .file-format,
.download-item .file-size {
    color: #555;
    font-size: 0.9em;
}

/* Derleme Talimatları Alanı */
.instructions {
    padding: 30px 20px;
}
.instructions h2 {
    font-size: 1.5em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.instructions .command {
    background-color: #f9f9f9;
    font-family: "Courier New", Courier, monospace;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-left: 4px solid #007bff;
    white-space: pre-wrap;
    word-break: break-all;
}
.instructions p {
    margin-top: 20px;
}

/* İletişim Alanı */
.contact {
    text-align: center;
    background-color: #f4f4f4;
    font-size: 0.9em;
    border-top: 1px solid #ddd;
    padding: 20px;
}
