/* === GENEL AYARLAR === */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: url('../img/background/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f7f7f7;
}

main {
    display: flex;
    justify-content: center;
    padding: 140px 15px 60px;
    min-height: 100vh;
}

.download-section {
    width: 100%;
    max-width: 1000px;
    background: rgba(10, 10, 10, 0.95);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.section-header h1 {
    color: #cc0000;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header p { color: #888; font-size: 1.1em; margin-bottom: 40px; }

/* === İNDİRME KARTLARI (YENİ ESTETİK) === */
.download-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.download-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    padding: 25px;
    border-radius: 15px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    border-color: #ffcc00;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.2);
}

.card-icon {
    background: rgba(0,0,0,0.5);
    padding: 15px;
    border-radius: 12px;
    margin-right: 20px;
}

.card-icon img { width: 45px; height: 45px; object-fit: contain; }

.card-info { flex-grow: 1; text-align: left; }
.card-title { display: block; color: #fff; font-size: 1.1em; font-weight: bold; font-family: 'Orbitron'; margin-bottom: 5px; }
.card-meta { color: #ffcc00; font-size: 0.85em; opacity: 0.8; }

.card-arrow { color: rgba(255,255,255,0.2); font-size: 1.4em; }
.download-card:hover .card-arrow { color: #ffcc00; transform: translateX(5px); }

/* === TABLO VE DİĞERLERİ === */
.specs-wrapper { margin-top: 40px; }
.specs-title { color: #ffcc00; font-family: 'Orbitron'; font-size: 1.4em; margin-bottom: 20px; }
.specs-table { width: 100%; border-collapse: collapse; background: rgba(0,0,0,0.3); border-radius: 10px; overflow: hidden; }
.specs-table th { background: #cc0000; padding: 15px; text-align: left; font-size: 0.9em; text-transform: uppercase; }
.specs-table td { padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); color: #ccc; text-align: left;}

.instruction-box {
    margin-top: 40px;
    background: rgba(204, 0, 0, 0.05);
    border-left: 5px solid #ffcc00;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    color: #bbb;
}

@media (max-width: 800px) {
    .download-links { grid-template-columns: 1fr; }
    .download-section { padding: 30px 20px; }
}