/* Legacy inline download list (dl-section / dl-card-v3) */

/* ── Download Section — Simplified Clean ───────────────── */
.dl-section {
    margin: 0 0 28px;
}

/* Section Header — centered, styled "Download Links" only */
.dl-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    gap: 10px;
}

/* decorative lines either side of title */
.dl-section-header::before,
.dl-section-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.dl-section-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.08em;
    white-space: nowrap;
    text-align: center;
    background: linear-gradient(135deg, #34d399, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* hide these — not needed */
.dl-section-count,
.dl-section-icon,
.dl-section-badge {
    display: none;
}

/* ── Each download item — NO box, separator only ─────── */
.dl-card-v3 {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
    overflow: visible;
    padding: 16px 0;
    position: relative;
}

.dl-card-v3:first-child {
    border-top: none;
}

.dl-card-v3::after {
    display: none;
}

/* remove hover accent */

/* ── Row 1: Quality badge + Size badge (centered) ──── */
.dl-r1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 0 10px;
    text-align: center;
    flex-wrap: wrap;
}

/* Quality badge — bigger for highlight */
.dl-res {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 8px;
    line-height: 1.4;
    color: #fff;
    white-space: nowrap;
}

/* All quality levels — one shared gradient */
.dl-c-4k,
.dl-c-1080,
.dl-c-720,
.dl-c-480,
.dl-c-def {
    background: linear-gradient(135deg, #6366f1, #a855f7);
}

/* hide sub-text (Full HD etc.) */
.dl-res-sub {
    display: none;
}

/* separator pipe */
.dl-dot {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    line-height: 1;
}

/* Size badge — orange → amber gradient */
.dl-size {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 5px 14px;
    border-radius: 8px;
    line-height: 1.4;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: #fff;
    white-space: nowrap;
}

/* Language row — plain comma-separated highlighted text, no badges */
.dl-r2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 14px;
}

.dl-lang-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #34d399;
    text-shadow: 0 0 14px rgba(52, 211, 153, 0.45);
    text-align: center;
}

/* ── Row 3: Gradient button, centered ───────────────── */
.dl-r3 {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-btn-v3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 32px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.dl-btn-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: dlv3Shine 3s ease-in-out infinite;
}

@keyframes dlv3Shine {
    0% {
        left: -100%;
    }

    55%,
    100% {
        left: 150%;
    }
}

.dl-btn-v3:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.55);
}

.dl-btn-v3:active {
    transform: scale(0.97);
}

.dl-btn-v3 .dl-icon {
    animation: dlBounce 1.6s ease-in-out infinite;
    display: inline-flex;
}

@keyframes dlBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* internal divider — remove (not needed without boxes) */
.dl-card-divider {
    display: none;
}

@media (max-width: 480px) {
    .dl-res {
        font-size: 14px;
        padding: 4px 12px;
    }

    .dl-size {
        font-size: 13px;
        padding: 4px 12px;
    }

    .dl-lang-text {
        font-size: 18px;
    }

    .dl-btn-v3 {
        padding: 10px 24px;
        font-size: 13px;
    }

    .dl-section-title {
        font-size: 18px;
    }
}\n