.main-download-box {
    border-radius: 16px;
    border: 1px solid #1F2028;
    background: #13141A;
    padding: 32px;
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main-download-box .download-section h3 {
    color: #FFF;
    font-family: Lexend, sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 32px 0 32px;
    border-top: 2px solid #1F2028;
    padding-top: 32px;
    line-height: 1;
}

.main-download-box .download-section:first-child h3{
    margin: 0px 0 16px;
    border: none;
    padding-top: 0;
}
.main-download-box .download-section h3:before {
    content: '';
    display: inline-block;
    background: #C04AFD;
    width: 8px;
    height: 8px;
    border-radius: 2px; 
    margin-right: 6px;
}
.platform-row {
    display: flex;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
    width: 100%;
    justify-content: flex-start;
}

.platform-row {
    border-bottom: 1px dashed #1F2028;
}

.platform-row.last {
    border-bottom: none;
    padding-bottom: 0;
}

.platform-label {
    min-width: 120px;
    display: flex;
    align-items: center;
    font-family: Lexend, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(174, 177, 199, 0.75);
    gap: 6px;
}

.platform-label svg {
    width: 20px;
    height: 20px;
    fill: rgba(174, 177, 199, 0.75);
    transition: fill 0.3s ease;
}

.download-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 15px;
    border-radius: 6px;
    border: 1px solid rgba(174, 177, 199, 0.10);
    background: #1F2028;
    color: #AEB1C7 !important;
    font-family: Lexend, sans-serif;
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.download-link:hover {
    color: #FFFFFF !important;
    border: 1px solid rgba(174, 177, 199, 0.25);
}

.download-link svg {
    width: 16px;
    height: 16px;
    fill: rgba(174, 177, 199, 0.75);
    transition: fill 0.3s ease;
}

.download-link:hover svg {
    fill: #fff;
}

.download-link[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2e2f38;
    color: #AEB1C7;
    border: 1px solid #aeb1c61a;
    font-size: 12px;
    padding: 6px 8px;
    margin-bottom: 4px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10;
    line-height: 1;
    pointer-events: none;
}

.download-link[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}