/* =========================================
   l00t — Taxonomy Archives
   Platform & Category headers
   ========================================= */

.l00t-archive-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;

    max-width: 900px;
    margin: 4rem auto 1rem;
    padding: 0 2rem;
    text-align: center;
}

/* ---------- Platform logo block ---------- */

.l00t-archive-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    margin-bottom: 1.25rem;
}

.l00t-archive-logo-glow {
    position: absolute;
    inset: -25%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(200, 210, 255, 0.28) 0%,
        rgba(120, 80, 200, 0.16) 45%,
        transparent 72%
    );
    filter: blur(24px);
    animation: l00t-glow-pulse 4s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes l00t-glow-pulse {
    0%   { opacity: 0.55; transform: scale(0.94); }
    100% { opacity: 1;    transform: scale(1.06); }
}

.l00t-archive-logo {
    position: relative;
    z-index: 1;
    width: 96px;
    height: 96px;
    object-fit: contain;
    padding: 16px;

    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(200, 210, 255, 0.2);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 12px 44px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 0 30px rgba(200, 210, 255, 0.1);
}

/* ---------- Category ornament (no logo) ---------- */

.l00t-archive-ornament {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
}

.l00t-archive-ornament span {
    display: block;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    background: rgba(200, 210, 255, 0.25);
    border: 1px solid rgba(200, 210, 255, 0.5);
    animation: l00t-ornament-pulse 2.4s ease-in-out infinite;
}

.l00t-archive-ornament span:nth-child(2) {
    animation-delay: 0.3s;
    background: rgba(200, 210, 255, 0.4);
}
.l00t-archive-ornament span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes l00t-ornament-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: rotate(45deg) scale(0.85);
        box-shadow: 0 0 0 rgba(200, 210, 255, 0);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
        box-shadow: 0 0 14px rgba(200, 210, 255, 0.6);
    }
}

/* ---------- Label ---------- */

.l00t-archive-label {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(200, 210, 255, 0.5);
    padding-left: 5px; /* optical balance for letter-spacing */
}

/* ---------- Title ---------- */

.l00t-archive-title {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 0;

    background: linear-gradient(180deg, #ffffff 0%, #c0c0d0 55%, #505060 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    filter:
        drop-shadow(0 0 20px rgba(200, 210, 255, 0.25))
        drop-shadow(0 0 40px rgba(120, 80, 200, 0.15));
}

/* ---------- Description ---------- */

.l00t-archive-desc {
    max-width: 620px;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(200, 200, 210, 0.65);
    margin: 0.5rem 0 0;
}

.l00t-archive-desc p { margin: 0 0 0.5rem; }
.l00t-archive-desc p:last-child { margin-bottom: 0; }

/* ---------- Meta (count) ---------- */

.l00t-archive-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 520px;
    margin-top: 1rem;
}

.l00t-archive-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(200, 210, 255, 0.25),
        transparent
    );
}

.l00t-archive-count {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(200, 210, 255, 0.7);
    white-space: nowrap;
}

/* ---------- Listing wrapper tweak ---------- */

.l00t-indicators-archive {
    margin-top: 3rem;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 600px) {
    .l00t-archive-header {
        margin-top: 3rem;
        padding: 0 1.25rem;
        gap: 0.6rem;
    }

    .l00t-archive-logo-wrap {
        width: 120px;
        height: 120px;
    }

    .l00t-archive-logo {
        width: 82px;
        height: 82px;
        padding: 12px;
    }

    .l00t-archive-label {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }

    .l00t-archive-desc {
        font-size: 0.92rem;
    }

    .l00t-archive-count {
        font-size: 0.72rem;
        letter-spacing: 2px;
    }
}
