.download-heading {
    color: #fff;
    font-size: 2.5rem;
    margin: 60px 0 50px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.download-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,77,77,0) 0%, #5A6DB3 50%, rgba(255,77,77,0) 100%);
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.download-info {
    background: rgba(24, 24, 24, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-game-description {
    margin-bottom: 30px;
}

.download-game-description h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 15px;
}

.download-game-description p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-game-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.download-feature i {
    color: #5A6DB3;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.download-option {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.download-option:hover {
    transform: translateY(-7px);
    box-shadow: 0 4px 15px rgba(77, 127, 255, 0.3);
    border-color: rgba(77, 127, 255, 0.5);
}

.download-option i {
    font-size: 2.2em;
    color: #5A6DB3;
    flex-shrink: 0;
}

.download-info-block {
    flex: 1;
}

.download-info-block h3 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.download-file-size,
.download-speed-info {
    display: block;
    color: #b3b3b3;
    font-size: 0.9em;
    margin-top: 2px;
}

.download-speed-info {
    color: #5A6DB3;
}

.download-button {
    background: #5A6DB3;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.download-button:hover {
    background: #596eb3;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .download-options {
        grid-template-columns: 1fr;
    }

    .download-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-option i {
        font-size: 1.8em;
    }

    .download-info-block h3 {
        font-size: 1.1em;
    }

    .download-file-size,
    .download-speed-info {
        font-size: 0.85em;
    }

    .download-button {
        font-size: 0.85em;
    }
}

.download-system-requirements {
    background: rgba(24, 24, 24, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-system-requirements h2 {
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-system-requirements h2 i {
    color: #5A6DB3;
}

.download-requirements-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.download-requirements-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-requirements-column h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(77, 127, 255, 0.3);
}

.download-requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.download-requirement {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-requirement i {
    font-size: 1.5em;
    color: #5A6DB3;
}

.download-req-info {
    display: flex;
    flex-direction: column;
}

.download-req-label {
    color: #b3b3b3;
    font-size: 0.9em;
}

.download-req-value {
    color: #fff;
    font-weight: bold;
}

.download-installation-guide {
    background: rgba(24, 24, 24, 0.8);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-installation-guide h2 {
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-installation-guide h2 i {
    color: #5A6DB3;
}

.download-install-steps {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.download-install-steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-install-steps li i {
    font-size: 2em;
    color: #5A6DB3;
}

.download-install-steps li span {
    color: #fff;
}

@media (max-width: 768px) {
    .download-options {
        grid-template-columns: 1fr;
    }

    .download-requirements-container {
        grid-template-columns: 1fr;
    }

    .download-install-steps {
        grid-template-columns: 1fr;
    }
}