/* ===========================
   download - Clean CSS v1.0
   =========================== */
#td-outer-wrap {
  background-color: #1c1c1c;
}
.dl-container {
    max-width: 700px;
    margin: 25px auto;
    padding: 0 15px;
}

.dl-box {
    background: #111;
    border: 1px solid #2a2a3e;
    border-radius: 10px;
    overflow: hidden;
}

.dl-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: #0f3460;
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 600;
}

.dl-icon {
    width: 18px;
    height: 18px;
    fill: #4ade80;
    flex-shrink: 0;
}

.dl-content {
    padding: 15px 20px;
}

/* Host headers (h3 từ addlinks format) */
.dl-content h3 {
    color: #4a7cf7;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 18px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #1a1a2e;
}

.dl-content h3:first-child {
    margin-top: 0;
}

/* Download links */
.dl-content a {
    display: block;
    padding: 8px 12px;
    margin: 4px 0;
    color: #85b7eb;
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
    word-break: break-all;
}

.dl-content a:hover {
    background: #1a1a2e;
    color: #e2e8f0;
}

/* Separators (hr từ addlinks format) */
.dl-content hr {
    border: none;
    border-top: 1px solid #1a1a2e;
    margin: 12px 0;
}

/* Paragraphs inside links */
.dl-content p {
    margin: 0;
}

/* Back link */
.dl-back {
    padding: 12px 20px;
    border-top: 1px solid #1a1a2e;
    text-align: center;
}

.dl-back a {
    color: #8b8fa3;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
}

.dl-back a:hover {
    color: #e2e8f0;
}

/* Mobile */
@media (max-width: 480px) {
    .dl-container {
        margin: 15px auto;
    }

    .dl-content a {
        font-size: 12px;
        padding: 6px 10px;
    }
}
