/* ============================================
   DEV CHRONICLES - UPDATE CARDS DESIGN
   Runecraft Studios — Nostra
   ============================================ */

/* ============================
   HERO SECTION
   ============================ */

.dl-hero {
    position: relative;
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dl-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.3) saturate(0.6);
}

.dl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(8, 9, 15, 0.3) 0%,
        rgba(8, 9, 15, 0.85) 80%,
        var(--bg-darker) 100%
    );
}

.dl-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 2rem 1.5rem;
}

.dl-hero-logo {
    width: 180px;
    height: auto;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.2));
    animation: dlLogoFloat 4s ease-in-out infinite;
}

@keyframes dlLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.dl-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
}

.dl-hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.dl-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gold);
    opacity: 0.4;
}

.dl-hero-divider .deco-line {
    width: 60px;
}

.dl-hero-divider .deco-diamond {
    color: var(--gold);
}

/* ============================
   FILTER BAR
   ============================ */

.dl-filter-bar {
    position: sticky;
    top: 70px;
    z-index: 50;
    background: rgba(8, 9, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 0.75rem 0;
}

.dl-filter-inner {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    flex-wrap: wrap;
}

.dl-filter-btn {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 30px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dl-filter-btn:hover {
    border-color: rgba(201, 168, 76, 0.35);
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.05);
}

.dl-filter-btn.dl-filter-active {
    border-color: rgba(201, 168, 76, 0.5);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.1);
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
}

/* ============================
   MAIN CONTENT
   ============================ */

.dl-main {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 1.5rem 2rem 4rem;
}

/* ============================
   FEATURED / PINNED ANNOUNCEMENT
   ============================ */

.dl-featured {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid rgba(201, 168, 76, 0.25);
    transition: border-color 0.4s, box-shadow 0.4s;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s, box-shadow 0.4s;
}

.dl-featured.dl-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.dl-featured:hover {
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow:
        0 12px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(201, 168, 76, 0.08);
}

.dl-featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    transition: transform 8s ease;
}

.dl-featured:hover .dl-featured-bg {
    transform: scale(1.05);
}

.dl-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 9, 15, 0.95) 0%,
        rgba(8, 9, 15, 0.7) 40%,
        rgba(8, 9, 15, 0.3) 100%
    );
}

.dl-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    animation: dlBadgePulse 3s ease-in-out infinite;
}

@keyframes dlBadgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.1); }
    50% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.2); }
}

.dl-featured-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
}

.dl-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.dl-featured-date {
    font-family: var(--font-display);
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.dl-featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}

.dl-featured-excerpt {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* ============================
   TAGS (shared)
   ============================ */

.dl-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 3px 10px;
    border-radius: 3px;
}

.dl-tag-announcement {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.dl-tag-nostra {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.dl-tag-engine {
    background: rgba(34, 211, 238, 0.12);
    color: #22d3ee;
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.dl-tag-ai {
    background: rgba(244, 114, 182, 0.12);
    color: #f472b6;
    border: 1px solid rgba(244, 114, 182, 0.3);
}

.dl-tag-issue {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ============================
   UPDATE CARDS CONTAINER
   ============================ */

.dl-updates {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ============================
   UPDATE CARD
   ============================ */

.dl-update-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    padding: 1.8rem;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s, opacity 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}

.dl-update-card.dl-card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.dl-update-card:nth-child(1).dl-card-visible { transition-delay: 0s; }
.dl-update-card:nth-child(2).dl-card-visible { transition-delay: 0.08s; }
.dl-update-card:nth-child(3).dl-card-visible { transition-delay: 0.16s; }
.dl-update-card:nth-child(4).dl-card-visible { transition-delay: 0.24s; }

@keyframes dlCardFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.dl-update-card:hover {
    border-color: rgba(201, 168, 76, 0.22);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 12px rgba(201, 168, 76, 0.04);
    transform: translateY(-2px);
}

/* Card with "latest" badge gets a highlight border */
.dl-update-card:has(.dl-badge-latest) {
    border-color: rgba(74, 158, 255, 0.25);
}

.dl-update-card:has(.dl-badge-latest):hover {
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(74, 158, 255, 0.06);
}

/* Announcement cards get gold left border accent */
.dl-card-announcement {
    border-left: 3px solid rgba(201, 168, 76, 0.4);
}

.dl-card-announcement:hover {
    border-left-color: rgba(201, 168, 76, 0.6);
}

/* ============================
   MILESTONE CARD - Gold Shimmer
   ============================ */

.dl-card-milestone {
    border-color: rgba(201, 168, 76, 0.45);
    border-width: 2px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 25px rgba(201, 168, 76, 0.15),
        0 0 50px rgba(201, 168, 76, 0.08),
        0 0 80px rgba(201, 168, 76, 0.04),
        inset 0 0 40px rgba(201, 168, 76, 0.04);
}

.dl-card-milestone:hover {
    border-color: rgba(201, 168, 76, 0.65);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(201, 168, 76, 0.2),
        0 0 80px rgba(201, 168, 76, 0.1),
        0 0 120px rgba(201, 168, 76, 0.05);
    transform: translateY(-3px);
}

/* Gold shimmer sweep animation */
.dl-card-milestone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 168, 76, 0.04) 30%,
        rgba(201, 168, 76, 0.08) 50%,
        rgba(201, 168, 76, 0.04) 70%,
        transparent 100%
    );
    animation: dlMilestoneShimmer 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes dlMilestoneShimmer {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

/* Gold corner glow accents */
.dl-card-milestone::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.12) 0%,
        transparent 25%,
        transparent 75%,
        rgba(201, 168, 76, 0.08) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Ensure card content sits above shimmer */
.dl-card-milestone > * {
    position: relative;
    z-index: 1;
}

/* Milestone tag (same as roadmap) */
.dl-tag-milestone {
    background: rgba(201, 168, 76, 0.15);
    color: #e8d48b;
    border: 1px solid rgba(201, 168, 76, 0.35);
    text-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
}

/* ============================
   UPDATE CARD - HEADER
   ============================ */

.dl-update-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 8px;
}

.dl-update-version-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dl-update-version {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.06em;
}

.dl-update-badge {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.dl-badge-latest {
    color: #4a9eff;
    border: 1px solid rgba(74, 158, 255, 0.4);
    background: rgba(74, 158, 255, 0.1);
    box-shadow: 0 0 12px rgba(74, 158, 255, 0.12);
    text-shadow: 0 0 8px rgba(74, 158, 255, 0.3);
    animation: dlLatestPulse 3s ease-in-out infinite;
}

@keyframes dlLatestPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(74, 158, 255, 0.12); }
    50% { box-shadow: 0 0 20px rgba(74, 158, 255, 0.22); }
}

.dl-update-info-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dl-update-date {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* ============================
   UPDATE CARD - SUMMARY
   ============================ */

.dl-update-summary {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* Announcement title (for non-versioned cards) */
.dl-announcement-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

/* ============================
   HIGHLIGHT CHIPS
   ============================ */

.dl-update-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.dl-chip {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.dl-chip-nostra {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.dl-chip-engine {
    background: rgba(34, 211, 238, 0.08);
    color: rgba(34, 211, 238, 0.85);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.dl-chip-ai {
    background: rgba(244, 114, 182, 0.08);
    color: rgba(244, 114, 182, 0.85);
    border: 1px solid rgba(244, 114, 182, 0.2);
}

.dl-chip-event {
    background: rgba(251, 191, 36, 0.08);
    color: rgba(251, 191, 36, 0.85);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

/* ============================
   EXPANDABLE RELEASE NOTES
   ============================ */

.dl-release-notes {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dl-release-notes-inner {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Release Note Section (per project/tag) */
.dl-rn-section {
    background: rgba(255, 255, 255, 0.015);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.dl-rn-section-issues {
    border-color: rgba(239, 68, 68, 0.1);
    background: rgba(239, 68, 68, 0.02);
}

.dl-rn-section-header {
    margin-bottom: 0.8rem;
}

/* Group (Implemented / On-Going / Fixed) */
.dl-rn-group {
    margin-bottom: 0.8rem;
}

.dl-rn-group:last-child {
    margin-bottom: 0;
}

.dl-rn-group-title {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    padding-left: 12px;
    position: relative;
}

.dl-rn-group-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.dl-rn-implemented {
    color: #3dd68c;
}

.dl-rn-implemented::before {
    background: #3dd68c;
    box-shadow: 0 0 6px rgba(61, 214, 140, 0.4);
}

.dl-rn-ongoing {
    color: #4a9eff;
}

.dl-rn-ongoing::before {
    background: #4a9eff;
    box-shadow: 0 0 6px rgba(74, 158, 255, 0.4);
}

.dl-rn-fixed {
    color: #a78bfa;
}

.dl-rn-fixed::before {
    background: #a78bfa;
    box-shadow: 0 0 6px rgba(167, 139, 250, 0.4);
}

/* Release Note List */
.dl-rn-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dl-rn-list li {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(234, 228, 216, 0.65);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.dl-rn-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    border-radius: 1px;
    transform: rotate(45deg);
    opacity: 0.6;
}

/* Bullet colors per group */
.dl-rn-implemented + .dl-rn-list li::before,
.dl-rn-group:has(.dl-rn-implemented) .dl-rn-list li::before {
    background: #3dd68c;
    box-shadow: 0 0 3px rgba(61, 214, 140, 0.3);
}

.dl-rn-ongoing + .dl-rn-list li::before,
.dl-rn-group:has(.dl-rn-ongoing) .dl-rn-list li::before {
    background: #4a9eff;
    box-shadow: 0 0 3px rgba(74, 158, 255, 0.3);
}

.dl-rn-fixed + .dl-rn-list li::before,
.dl-rn-group:has(.dl-rn-fixed) .dl-rn-list li::before {
    background: #a78bfa;
    box-shadow: 0 0 3px rgba(167, 139, 250, 0.3);
}

/* Open bug — orange indicator */
.dl-rn-list li.dl-rn-bug-open {
    opacity: 0.7;
}

.dl-rn-list li.dl-rn-bug-open::before {
    background: #f59e0b !important;
    box-shadow: 0 0 4px rgba(245, 158, 11, 0.4) !important;
}

.dl-rn-list li.dl-rn-bug-open::after {
    content: "offen";
    display: inline-block;
    margin-left: 8px;
    font-size: 0.65em;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    vertical-align: middle;
    line-height: 1.4;
}

[data-lang="en"] .dl-rn-list li.dl-rn-bug-open::after {
    content: "open";
}

/* "Vorgezogen" / "Ahead of schedule" badge */
.dl-rn-list li.dl-rn-early::after {
    content: attr(data-early-de);
    display: inline-block;
    margin-left: 10px;
    font-size: 0.75em;
    padding: 3px 10px;
    border-radius: 5px;
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
    vertical-align: middle;
    text-decoration: none;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.02em;
}

[data-lang="en"] .dl-rn-list li.dl-rn-early::after {
    content: attr(data-early-en);
}

/* Known Issues section bullets */
.dl-rn-section-issues > .dl-rn-list li::before {
    background: #f87171;
    box-shadow: 0 0 3px rgba(248, 113, 113, 0.3);
}

/* ============================
   MEDIA GALLERY
   ============================ */

.dl-media-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0 8px;
    padding: 0 4px;
}

.dl-media-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.dl-media-item:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* Span full width for video / wide items */
.dl-media-item.dl-media-wide {
    grid-column: 1 / -1;
}

.dl-media-item img,
.dl-media-item video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.dl-media-item video {
    max-height: 400px;
    object-fit: contain;
    background: #000;
}

/* Caption overlay at the bottom */
.dl-media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 14px 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    display: flex;
    align-items: center;
    gap: 8px;
}

.dl-media-caption-tag {
    font-family: var(--dl-font-display, 'Cinzel', serif);
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.dl-media-caption-tag.dl-cap-nostra {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.dl-media-caption-tag.dl-cap-engine {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.dl-media-caption-tag.dl-cap-ai {
    background: rgba(192, 132, 252, 0.15);
    color: #c084fc;
    border: 1px solid rgba(192, 132, 252, 0.3);
}

.dl-media-caption-text {
    font-size: 0.72rem;
    color: rgba(234, 228, 216, 0.85);
    line-height: 1.3;
}

/* Responsive: single column on small screens */
@media (max-width: 600px) {
    .dl-media-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================
   EXPAND BUTTON
   ============================ */

.dl-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.dl-expand-btn:hover {
    opacity: 1;
}

.dl-expand-icon {
    transition: transform 0.35s ease;
}

.dl-expand-btn[aria-expanded="true"] .dl-expand-icon {
    transform: rotate(180deg);
}

/* ============================
   LOAD MORE BUTTON
   ============================ */

.dl-load-more-wrap {
    text-align: center;
    margin-top: 2.5rem;
    padding-bottom: 2rem;
}

.dl-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 30px;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dl-load-more-btn:hover {
    border-color: rgba(201, 168, 76, 0.35);
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.05);
}

.dl-load-more-btn svg {
    transition: transform 0.3s ease;
}

.dl-load-more-btn:hover svg {
    transform: translateY(3px);
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 768px) {
    .dl-hero {
        min-height: 35vh;
    }

    .dl-hero-title {
        font-size: 2rem;
    }

    .dl-hero-logo {
        width: 120px;
    }

    .dl-main {
        padding: 2rem 1rem 3rem;
    }

    .dl-featured {
        min-height: 240px;
    }

    .dl-featured-content {
        padding: 1.5rem;
    }

    .dl-featured-title {
        font-size: 1.4rem;
    }

    .dl-featured-excerpt {
        font-size: 0.92rem;
    }

    .dl-update-card {
        padding: 1.3rem;
    }

    .dl-update-version {
        font-size: 1.1rem;
    }

    .dl-update-summary {
        font-size: 0.92rem;
    }

    .dl-chip {
        font-size: 0.58rem;
        padding: 4px 10px;
    }

    .dl-rn-section {
        padding: 0.8rem;
    }

    .dl-rn-list li {
        font-size: 0.78rem;
    }

    .dl-filter-btn {
        font-size: 0.65rem;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .dl-hero {
        min-height: 28vh;
    }

    .dl-featured {
        min-height: 200px;
        margin-bottom: 2rem;
    }

    .dl-featured-content {
        padding: 1rem;
    }

    .dl-featured-title {
        font-size: 1.2rem;
    }

    .dl-update-card {
        padding: 1rem;
    }

    .dl-update-version {
        font-size: 1rem;
    }

    .dl-update-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dl-announcement-title {
        font-size: 1rem;
    }

    .dl-chip {
        font-size: 0.55rem;
        padding: 3px 8px;
    }
}
