/* Download.aspx Page Specific Styles */

.requirement-card-modern {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.requirement-card-modern:hover {
    transform: translateY(-5px);
}

.requirement-card-body-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.requirement-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(76, 174, 80, 0.1);
    margin: 0 auto;
}

.requirement-icon-secondary {
    background: rgba(244, 110, 244, 0.1);
}

.requirement-icon-info {
    background: rgba(40, 200, 235, 0.1);
}

.requirement-icon-warning {
    background: rgba(250, 182, 50, 0.1);
}

.requirement-text-modern {
    line-height: 1.6;
}

.changelog-scrollable {
    height: 500px;
    overflow-y: auto;
}

.changelog-version-item {
    background: rgb(112 190 115 / 10%);
    border-left: 4px solid rgba(76, 174, 80, 0.8);
}

.changelog-version-title {
    font-size: 1.25rem;
}

.changelog-version-content {
    line-height: 1.8;
}

.changelog-new-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.sub-versions {
    transition: all 0.3s ease;
}

.version-group button.active {
    background: linear-gradient(135deg, rgba(76, 174, 80, 1) 0%, rgba(56, 142, 60, 1) 100%) !important;
    color: white !important;
    border-color: transparent !important;
}

.changelog-scrollable::-webkit-scrollbar {
    width: 8px;
}

.changelog-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.changelog-scrollable::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(76, 174, 80, 0.8) 0%, rgba(56, 142, 60, 0.8) 100%);
    border-radius: 10px;
}

.changelog-scrollable::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(76, 174, 80, 1) 0%, rgba(56, 142, 60, 1) 100%);
}

.changelog-date {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6dbd70;
    margin-left: auto;
    white-space: nowrap;
}

.requirement-card-modern:hover {
    transform: translateY(-5px);
}

