/* =========================================
   l00t — Indicators Listing
   ========================================= */

.l00t-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.l00t-ind-row {
    display: grid;
    grid-template-columns: 100px 1fr 280px;
    gap: 1.75rem;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid rgba(200, 210, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.l00t-ind-row:hover {
    border-color: rgba(200, 210, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.l00t-ind-img {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(200, 210, 255, 0.15);
    background: #0a0a0a;
    flex-shrink: 0;
    align-self: center;
}

.l00t-ind-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.l00t-ind-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: rgba(200, 210, 255, 0.3);
    text-transform: lowercase;
}

.l00t-ind-center { min-width: 0; }

.l00t-ind-title {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 0.5rem;
    text-transform: lowercase;
    line-height: 1.3;
}

.l00t-ind-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.l00t-ind-title a:hover {
    color: #c8d2ff;
    text-shadow: 0 0 15px rgba(200, 210, 255, 0.5);
}

.l00t-ind-desc {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(200, 200, 210, 0.6);
    margin: 0;
}

.l00t-ind-meta {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding-left: 1.75rem;
    border-left: 1px solid rgba(200, 210, 255, 0.15);
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.85rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.l00t-ind-meta-line {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
    flex-wrap: wrap;
}

.l00t-meta-label { color: rgba(200, 200, 210, 0.45); min-width: 72px; }
.l00t-meta-sep   { color: rgba(200, 210, 255, 0.3); }
.l00t-meta-value { color: #c8d2ff; }

.l00t-ind-buy {
    display: inline-block;
    align-self: flex-start;
    margin-top: 0.5rem;
    padding-bottom: 2px;
    color: #c8d2ff;
    text-decoration: none;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(200, 210, 255, 0.4);
    transition: color 0.3s ease, border-color 0.3s ease, text-shadow 0.3s ease;
}
.l00t-ind-buy:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    text-shadow: 0 0 12px rgba(200, 210, 255, 0.9);
}

.l00t-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: rgba(200, 200, 210, 0.5);
    font-family: 'Rajdhani', system-ui, sans-serif;
}

/* =========================================
   Pagination
   ========================================= */

.l00t-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.9rem;
}

.l00t-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    color: rgba(200, 200, 210, 0.7);
    text-decoration: none;
    border: 1px solid rgba(200, 210, 255, 0.15);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
}
.l00t-pagination .page-numbers:hover {
    color: #ffffff;
    border-color: rgba(200, 210, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 10px rgba(200, 210, 255, 0.5);
}
.l00t-pagination .page-numbers.current {
    color: #050505;
    background: #c8d2ff;
    border-color: #c8d2ff;
    font-weight: 700;
}
.l00t-pagination .page-numbers.dots {
    border: none;
    color: rgba(200, 210, 255, 0.4);
}

/* =========================================
   Single Indicator
   ========================================= */

.l00t-single-indicator {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.l00t-single-header {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(200, 210, 255, 0.1);
}

/* Görsel */
.l00t-single-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(200, 210, 255, 0.15);
    background: #0a0a0a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.l00t-single-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.l00t-single-media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: rgba(200, 210, 255, 0.3);
    text-transform: lowercase;
}

/* Sağ taraf */
.l00t-single-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    min-width: 0;
    padding-top: 0.25rem;
}

.l00t-single-title {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 1px;
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

/* =========================================
   Meta — flex ile sağlam hizalama
   ========================================= */

.l00t-single-meta {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.95rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.l00t-single-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.l00t-single-meta-item .l00t-meta-label {
    flex: 0 0 84px;
    width: 84px;
    text-align: right;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.l00t-single-meta-item .l00t-meta-sep {
    flex: 0 0 auto;
    white-space: nowrap;
    color: rgba(200, 210, 255, 0.3);
}

.l00t-single-meta-item .l00t-meta-value {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
}

/* Chip (platform ve kategori) */
.l00t-platform-link,
.l00t-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    height: 34px;
    padding: 0 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;

    color: #c8d2ff;
    text-decoration: none;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: lowercase;

    border: 1px solid rgba(200, 210, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s ease;
    line-height: 1;
}

.l00t-platform-link span,
.l00t-category-link span {
    white-space: nowrap;
    line-height: 1;
    display: block;
}

.l00t-platform-link:hover,
.l00t-category-link:hover {
    color: #fff;
    border-color: rgba(200, 210, 255, 0.6);
    background: rgba(200, 210, 255, 0.06);
    text-shadow: 0 0 10px rgba(200, 210, 255, 0.6);
    transform: translateY(-1px);
}

.l00t-platform-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* =========================================
   CTA — Become Member
   ========================================= */

.l00t-single-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.l00t-access-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.75rem;
    align-self: flex-start;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #c8d2ff;

    background:
        linear-gradient(135deg,
            rgba(200, 210, 255, 0.08) 0%,
            rgba(120, 80, 200, 0.08) 100%);
    border: 1px solid rgba(200, 210, 255, 0.35);
    border-radius: 4px;
    overflow: hidden;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.l00t-access-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(200, 210, 255, 0.18) 0%,
            rgba(120, 80, 200, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.l00t-access-btn-label,
.l00t-access-arrow {
    position: relative;
    z-index: 1;
}

.l00t-access-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.l00t-access-btn:hover {
    color: #ffffff;
    border-color: rgba(200, 210, 255, 0.8);
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 24px rgba(200, 210, 255, 0.25),
        inset 0 0 20px rgba(200, 210, 255, 0.06);
}

.l00t-access-btn:hover::before { opacity: 1; }
.l00t-access-btn:hover .l00t-access-arrow { transform: translateX(5px); }

.l00t-access-hint {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    color: rgba(200, 200, 210, 0.4);
    margin: 0;
    text-transform: lowercase;
}

/* =========================================
   Solid header
   ========================================= */

body.l00t-solid-header .l00t-navbar {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: rgba(200, 210, 255, 0.15);
}

/* =========================================
   Post içeriği (indikatör açıklaması)
   ========================================= */

.l00t-single-indicator .wp-block-post-content {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(230, 230, 240, 0.85);
}

.l00t-single-indicator .wp-block-post-content h2,
.l00t-single-indicator .wp-block-post-content h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    margin: 2rem 0 1rem;
    color: #fff;
}

.l00t-single-indicator .wp-block-post-content p { margin: 0 0 1.25rem; }
.l00t-single-indicator .wp-block-post-content a { color: #c8d2ff; }

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

@media (max-width: 900px) {
    .l00t-ind-row {
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "img center"
            "meta meta";
        gap: 1rem;
    }
    .l00t-ind-img    { grid-area: img; width: 80px; height: 80px; }
    .l00t-ind-center { grid-area: center; }
    .l00t-ind-meta   {
        grid-area: meta;
        padding-left: 0;
        padding-top: 1rem;
        border-left: none;
        border-top: 1px solid rgba(200, 210, 255, 0.15);
    }
}

@media (max-width: 700px) {
    .l00t-single-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .l00t-single-media {
        max-width: 220px;
    }
    .l00t-single-meta-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .l00t-single-meta-item .l00t-meta-label {
        flex: 0 0 70px;
        width: 70px;
        font-size: 0.78rem;
    }
    .l00t-access-btn {
        font-size: 0.82rem;
        padding: 0.9rem 1.35rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 600px) {
    .l00t-indicators { padding: 0 1rem; margin: 2rem auto; }
    .l00t-ind-row    { padding: 1rem; }
    .l00t-ind-title  { font-size: 0.95rem; }
    .l00t-ind-desc   { font-size: 0.8rem; }
    .l00t-single-indicator { padding: 0 1rem; }
    .l00t-single-title { font-size: 1.5rem; }
    .l00t-access-btn { width: 100%; justify-content: center; }
}
/* =========================================
   Indicator link chips (v2)
   ========================================= */

.l00t-indicator-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.l00t-indicator-links--header {
    margin-top: 0.5rem;
}

.l00t-indicator-links--standalone {
    max-width: 1000px;
    margin: 1.5rem auto 2.5rem;
    padding: 0 2rem;
}

.l00t-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.l00t-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    height: 36px;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    color: rgba(200, 210, 255, 0.85);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(200, 210, 255, 0.18);
    border-radius: 5px;

    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.l00t-chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: rgba(200, 210, 255, 0.6);
    transition: color 0.25s ease, transform 0.25s ease;
}

.l00t-chip-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.l00t-chip-label {
    line-height: 1;
}

.l00t-chip-arrow {
    font-size: 0.8rem;
    color: rgba(200, 210, 255, 0.5);
    transition: transform 0.25s ease, color 0.25s ease;
    line-height: 1;
}

.l00t-chip:hover {
    color: #fff;
    border-color: rgba(200, 210, 255, 0.6);
    background: rgba(200, 210, 255, 0.06);
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 0 18px rgba(200, 210, 255, 0.15);
}

.l00t-chip:hover .l00t-chip-icon {
    color: #c8d2ff;
    transform: scale(1.1);
}

.l00t-chip:hover .l00t-chip-arrow {
    color: #c8d2ff;
    transform: translate(2px, -2px);
}

.l00t-chip-strategy:hover { border-color: rgba(110, 231, 160, 0.6); }
.l00t-chip-strategy:hover .l00t-chip-icon { color: #6ee7a0; }

.l00t-chip-video:hover { border-color: rgba(255, 100, 120, 0.6); }
.l00t-chip-video:hover .l00t-chip-icon { color: #ff6478; }

/* Version / updated tags */
.l00t-indicator-version {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.l00t-version-tag,
.l00t-updated-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: rgba(200, 200, 210, 0.55);
}

.l00t-version-tag {
    color: #c8d2ff;
    padding: 4px 10px;
    border: 1px solid rgba(200, 210, 255, 0.25);
    border-radius: 3px;
    background: rgba(200, 210, 255, 0.04);
}

.l00t-version-label {
    font-weight: 400;
    color: rgba(200, 210, 255, 0.5);
    font-size: 0.68rem;
}

.l00t-updated-tag time {
    color: rgba(230, 230, 240, 0.85);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
}

@media (max-width: 700px) {
    .l00t-indicator-links--standalone {
        padding: 0 1.25rem;
        margin: 1.25rem auto 2rem;
    }

    .l00t-chip {
        font-size: 0.72rem;
        padding: 0.4rem 0.7rem;
        height: 32px;
    }

    .l00t-chip-icon {
        width: 13px;
        height: 13px;
    }
}
/* =========================================
   Featured badge
   ========================================= */

.l00t-featured-badge {
    display: inline-block;
    margin-right: 0.4rem;
    font-size: 0.9em;
    color: #ffcb47;
    text-shadow:
        0 0 8px rgba(255, 203, 71, 0.7),
        0 0 16px rgba(255, 203, 71, 0.4);
    animation: l00t-star-twinkle 3s ease-in-out infinite;
    vertical-align: middle;
    line-height: 1;
}

@keyframes l00t-star-twinkle {
    0%, 100% { opacity: 1;    transform: scale(1); }
    50%      { opacity: 0.75; transform: scale(1.1); }
}

/* Featured row gets a subtle border accent */
.l00t-ind-row:has(.l00t-featured-badge) {
    border-color: rgba(255, 203, 71, 0.2);
}
.l00t-ind-row:has(.l00t-featured-badge):hover {
    border-color: rgba(255, 203, 71, 0.5);
}

/* =========================================
   Filter bar
   ========================================= */

.l00t-filter-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr auto;
    gap: 1rem;
    align-items: end;

    max-width: 1200px;
    margin: 2rem auto 1rem;
    padding: 1.25rem 1.5rem;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 210, 255, 0.12);
    border-radius: 8px;

    font-family: 'Rajdhani', system-ui, sans-serif;
}

.l00t-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.l00t-filter-group label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(200, 210, 255, 0.5);
}

/* Select wrapper */
.l00t-select-wrap {
    position: relative;
    display: block;
}

.l00t-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0 2.25rem 0 0.9rem;
    height: 42px;
    line-height: 42px;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;

    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(200, 210, 255, 0.15);
    border-radius: 6px;
    outline: none;
    cursor: pointer;

    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.l00t-select option {
    background: #0a0a0a;
    color: #fff;
}

.l00t-select:focus,
.l00t-select:hover {
    border-color: rgba(200, 210, 255, 0.5);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(200, 210, 255, 0.08);
}

.l00t-select-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(200, 210, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
}

.l00t-select-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Inline search */
.l00t-search-inline {
    position: relative;
    display: flex;
    align-items: center;
}

.l00t-search-inline-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    color: rgba(200, 210, 255, 0.4);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.l00t-search-inline-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.l00t-search-inline input {
    width: 100%;
    padding: 0.65rem 0.9rem 0.65rem 2.4rem;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #fff;

    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(200, 210, 255, 0.15);
    border-radius: 6px;
    outline: none;

    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.l00t-search-inline input::placeholder {
    color: rgba(200, 200, 210, 0.3);
}

.l00t-search-inline input:focus {
    border-color: rgba(200, 210, 255, 0.6);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(200, 210, 255, 0.08);
}

/* Actions */
.l00t-filter-actions {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    align-self: end;
}

/* Apply button — matches the "Become Member" CTA style */
.l00t-filter-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1.5rem;
    height: 42px;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8d2ff;

    background: linear-gradient(135deg,
        rgba(200, 210, 255, 0.1) 0%,
        rgba(120, 80, 200, 0.1) 100%);
    border: 1px solid rgba(200, 210, 255, 0.35);
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
    white-space: nowrap;
}

.l00t-filter-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(200, 210, 255, 0.2) 0%,
        rgba(120, 80, 200, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.l00t-filter-submit > * {
    position: relative;
    z-index: 1;
}

/* Arrow */
.l00t-filter-submit::after {
    content: '';
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8d2ff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.l00t-filter-submit:hover {
    color: #fff;
    border-color: rgba(200, 210, 255, 0.8);
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 0 22px rgba(200, 210, 255, 0.25);
}

.l00t-filter-submit:hover::before {
    opacity: 1;
}

.l00t-filter-submit:hover::after {
    transform: translateX(4px);
    filter: drop-shadow(0 0 6px rgba(200, 210, 255, 0.9));
}

.l00t-filter-submit:active {
    transform: translateY(0);
}

/* Reset button — subtle secondary */
.l00t-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1rem;
    height: 42px;

    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(200, 200, 210, 0.55);

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 210, 255, 0.12);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.l00t-filter-reset svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.l00t-filter-reset:hover {
    color: #ff8080;
    border-color: rgba(255, 128, 128, 0.4);
    background: rgba(255, 128, 128, 0.05);
    box-shadow: 0 0 15px rgba(255, 128, 128, 0.15);
}

.l00t-filter-reset:hover svg {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 900px) {
    .l00t-filter-bar {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
        gap: 0.85rem;
    }
    .l00t-filter-search-group {
        grid-column: 1 / -1;
    }
    .l00t-filter-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .l00t-filter-bar {
        grid-template-columns: 1fr;
        margin: 1.25rem auto 1rem;
        padding: 1rem;
    }
    .l00t-filter-search-group {
        grid-column: auto;
    }
    .l00t-filter-submit,
    .l00t-filter-reset {
        flex: 1;
        justify-content: center;
        text-align: center;
    }
}