﻿/* 4 Column Download Card Layout - GÜNCEL HALİ */
.download-card-horizontal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* 4 sütun düzeni */
    gap: 2rem;
    align-items: center;
}

/* Download Column Base */
.download-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* App Column (1. sütun) */
.app-column {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    flex-shrink: 0;
}

.app-details .app-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: white;
}

.app-details .app-version {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Stats Columns (2. ve 3. sütunlar) */
.stats-column {
    gap: 1rem;
}

    .stats-column .stat-item {
        text-align: center;
        padding: 0.75rem 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }

        .stats-column .stat-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .stats-column .stat-item i {
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
            display: block;
            color: rgba(255, 255, 255, 0.9);
        }

    .stats-column .stat-label {
        display: block;
        font-size: 0.7rem;
        opacity: 0.7;
        margin-bottom: 0.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .stats-column .stat-value {
        display: block;
        font-weight: 600;
        font-size: 0.85rem;
    }

/* Download Section (4. sütun) - Mevcut stillerle uyumlu */
.download-section-horizontal {
    text-align: center;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .download-card-horizontal {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .download-card-horizontal {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 1.5rem;
        text-align: center;
    }

    .app-column {
        grid-column: 1 / -1;
        justify-content: center;
        text-align: center;
    }

    .download-section-horizontal {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .download-card-horizontal {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        text-align: center;
        gap: 1rem;
    }

    .app-column {
        flex-direction: column;
        gap: 1rem;
    }

    .stats-column {
        flex-direction: row;
        gap: 0.5rem;
    }

        .stats-column .stat-item {
            flex: 1;
            padding: 0.75rem 0.5rem;
        }
}

/* Mevcut tüm button stillerini koruyoruz - DEĞİŞMEZ */
/* DOWNLOAD BUTTON - GÜÇLÜ CSS SPECİFİCİTY İLE ÇÖZÜM */
.download-card-horizontal .download-section-horizontal a.download-btn.button.primary.large {
    font-size: 1.1rem !important;
    border-radius: 50px !important;
    background: #ffffff !important;
    color: #667eea !important; /* MOR METIN RENGİ */
    font-weight: 700 !important;
    text-decoration: none !important;
    border: 2px solid #ffffff !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    margin-bottom: 0.5rem !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
}

    .download-card-horizontal .download-section-horizontal a.download-btn.button.primary.large:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4) !important;
        background: #f8f9fa !important;
        color: #5a67d8 !important;
        border-color: #f8f9fa !important;
    }

    .download-card-horizontal .download-section-horizontal a.download-btn.button.primary.large:visited {
        color: #667eea !important;
    }

    .download-card-horizontal .download-section-horizontal a.download-btn.button.primary.large:focus {
        color: #667eea !important;
        background: #ffffff !important;
    }

    .download-card-horizontal .download-section-horizontal a.download-btn.button.primary.large i {
        margin-right: 0.5rem;
        color: inherit !important;
    }

a[href*="setup"]:is(.download-btn, .button) {
    background: #ffffff !important;
    color: #667eea !important;
    border: 2px solid #ffffff !important;
}

    a[href*="setup"]:is(.download-btn, .button):hover {
        background: #f8f9fa !important;
        color: #5a67d8 !important;
        border-color: #f8f9fa !important;
    }

/* KESİN ÇÖZÜM - TÜM BUTTON.PRIMARY STİLLERİNİ EZMEK İÇİN */
#main .download-card-horizontal .button.primary,
#main .download-card-horizontal .button.primary:hover,
#main .download-card-horizontal .button.primary:focus,
#main .download-card-horizontal .button.primary:visited {
    background: #ffffff !important;
    color: #667eea !important;
    border: 2px solid #ffffff !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-radius: 50px !important;
}

    #main .download-card-horizontal .button.primary:hover {
        background: #f8f9fa !important;
        color: #5a67d8 !important;
        border-color: #f8f9fa !important;
        transform: translateY(-2px) !important;
    }

    #main .download-card-horizontal .button.primary i {
        color: inherit !important;
    }

.download-note {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0.5rem 0 0 0;
}

/* Sistem Gereksinimleri - DEĞİŞMEZ KALACAK */
.requirements-card-horizontal {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.requirements-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .requirements-header h4 {
        color: #495057;
        margin-bottom: 0.5rem;
        font-weight: 600;
        font-size: 1.5rem;
    }

.requirements-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
    font-style: italic;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

    .requirement-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .requirement-item i {
        font-size: 1.5rem;
        color: #667eea;
        flex-shrink: 0;
        width: 30px;
        text-align: center;
    }

.requirement-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.requirement-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.requirement-value {
    font-size: 1rem;
    color: #495057;
    font-weight: 600;
}
