/* ===================================
   DOWNLOAD PAGE STYLES
   =================================== */

/* Download Background */
.download-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/main_bg_download.png') top center no-repeat;
    background-size: cover;
    z-index: -1;
}

/* Download Hero Section */
.download-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    position: relative;
}

/* Logo artık hero-logo class'ı kullanıyor (style.css) */

/* Download Grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

/* Download Box */
.download-box {
    position: relative;
    min-height: 180px;
    padding: 30px 35px;
    transition: all 0.3s ease;
}

.download-box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
    transition: all 0.3s ease;
}

.download-box:hover {
    transform: translateY(-5px);
}

.download-box:hover .download-box-bg {
    filter: brightness(1.15);
}

.download-box-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 140px;
    padding: 20px 25px;
}

/* Download Title */
.download-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 20px;
    font-weight: 700;
    color: #c9a86c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 50, 50, 0.6), 0 0 30px rgba(200, 30, 30, 0.4);
}

.download-desc {
    font-size: 12px;
    color: #8a8078;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

/* Download Button */
.download-btn {
    display: inline-block;
    width: fit-content;
    padding: 12px 40px;
    background: url('../images/button_free.png') center center no-repeat;
    background-size: 100% 100%;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e8dcc8;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.download-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(232, 220, 200, 0.8);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5);
}

/* ===================================
   SYSTEM REQUIREMENTS SECTION
   =================================== */
.requirements-section {
    padding: 60px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.requirements-wrapper {
    position: relative;
}

.requirements-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.requirement-item {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.requirement-item:hover {
    transform: translateY(-8px);
}

.requirement-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.requirement-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(1.2);
}

.requirement-item:hover .requirement-icon img {
    opacity: 1;
    transform: scale(1.15);
    filter: grayscale(0%) drop-shadow(0 0 20px rgba(201, 168, 108, 0.6));
}

.requirement-marker {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid rgba(180, 170, 160, 0.4);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.requirement-item:hover .requirement-marker {
    border-top-color: rgba(201, 168, 108, 0.9);
    filter: drop-shadow(0 0 5px rgba(201, 168, 108, 0.5));
}

.requirement-label {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: #6a6058;
    text-transform: capitalize;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.requirement-item:hover .requirement-label {
    color: #c9a86c;
    text-shadow: 0 0 10px rgba(201, 168, 108, 0.5);
}

.requirements-line {
    display: flex;
    justify-content: center;
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.requirements-line img {
    width: 100%;
    max-width: 900px;
    height: auto;
    opacity: 0.6;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .download-hero {
        padding-top: 100px;
    }

    .requirements-grid {
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .download-box {
        min-height: 160px;
    }

    .download-box-content {
        padding: 15px 20px;
    }

    .download-title {
        font-size: 18px;
    }

    .download-desc {
        font-size: 11px;
    }

    .download-desc br {
        display: none;
    }

    .requirements-grid {
        gap: 40px;
    }

    .requirements-section {
        padding: 40px 15px 60px;
    }
}

@media (max-width: 480px) {
    .download-hero {
        padding-top: 80px;
    }

    .download-grid {
        max-width: 290px;
        gap: 20px;
    }

    .download-box {
        min-height: 140px;
    }

    .download-title {
        font-size: 16px;
    }

    .download-btn {
        padding: 10px 30px;
        font-size: 11px;
    }

    .requirements-grid {
        gap: 25px;
        justify-content: space-around;
    }

    .requirement-item {
        flex: 0 0 calc(50% - 15px);
    }

    .requirement-icon {
        width: 40px;
        height: 40px;
    }

    .requirement-label {
        font-size: 9px;
    }
}