/* Ana Container */
.download-dashboard {
    background: linear-gradient(145deg, #1A1716 0%, #0F1013 100%);
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

/* Başlık Stili */
.download-dashboard-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #3D3223;
    position: relative;
}

.download-dashboard-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #FFA626 0%, rgba(255, 166, 38, 0) 100%);
}

.download-dashboard-title img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 166, 38, 0.3));
}

.download-dashboard-title h1 {
    color: #FFA626;
    font-size: 24px !important;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 166, 38, 0.3);
}

/* İndirme Container */
.download-container {
    background: rgba(15, 16, 19, 0.5);
    border: 1px solid #3D3223;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

/* Üst Bilgi Alanı */
.download-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(61, 50, 35, 0.3);
}

.download-header img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 8px rgba(255, 166, 38, 0.3));
}

.download-header h4 {
    color: #FFA626;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* İndirme Kartları Grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* İndirme Kartı */
.download-card {
    background: linear-gradient(145deg, rgba(87, 13, 13, 0.3) 0%, rgba(61, 8, 8, 0.3) 100%);
    border: 1px solid #3D3223;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: #FFA626;
    box-shadow: 0 4px 20px rgba(255, 166, 38, 0.1);
    text-decoration: none;
}

.download-card img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 8px rgba(255, 166, 38, 0.3));
    transition: all 0.3s ease;
}

.download-card:hover img {
    transform: scale(1.1);
}

.download-card h2 {
    color: #FFA626;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
}

.download-card:hover h2 {
    text-shadow: 0 0 10px rgba(255, 166, 38, 0.3);
}

/* Alt Bilgi */
.download-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(61, 50, 35, 0.3);
}

.download-footer h4 {
    color: #E0B16D;
    font-size: 16px;
    margin: 0;
}

.download-footer span {
    color: #FFA626;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-footer span:hover {
    text-shadow: 0 0 10px rgba(255, 166, 38, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .download-container {
        padding: 20px;
    }

    .download-header {
        flex-direction: column;
        text-align: center;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        padding: 20px;
    }
}
