.seo-directory-page,
.seo-landing-page {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 20px 110px;
    color: #fff;
}

.seo-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: #8f92a0;
    font-size: .86rem;
}

.seo-breadcrumbs a {
    color: #c8cad3;
    text-decoration: none;
}

.seo-breadcrumbs a:hover {
    color: #fff;
}

.seo-directory-hero,
.seo-landing-hero,
.seo-directory-section,
.seo-creators-section,
.seo-related-section,
.seo-faq,
.seo-explainer {
    border: 1px solid rgba(255,255,255,.09);
    background: linear-gradient(180deg, rgba(24,24,34,.98), rgba(15,15,22,.98));
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.seo-directory-hero,
.seo-landing-hero {
    padding: clamp(24px, 5vw, 48px);
    margin-bottom: 20px;
}

.seo-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #ff4fb8;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.seo-directory-hero h1,
.seo-landing-hero h1 {
    margin: 0;
    font-size: clamp(2.1rem, 7vw, 4rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.seo-directory-hero > p,
.seo-landing-hero > p {
    max-width: 800px;
    margin: 16px 0 0;
    color: #b7bac5;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.62;
}

.seo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.seo-primary-button,
.seo-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 17px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 800;
}

.seo-primary-button {
    color: #0b0b10;
    background: linear-gradient(135deg, #5ce1e6, #62f7a7);
}

.seo-secondary-button {
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.045);
}

.seo-category-count {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(255,213,74,.25);
    border-radius: 14px;
    background: rgba(255,213,74,.06);
}

.seo-category-count strong {
    color: #ffd54a;
    font-size: 1.35rem;
}

.seo-category-count span {
    color: #d8d3b2;
    font-size: .88rem;
}

.seo-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.seo-directory-section,
.seo-creators-section,
.seo-related-section,
.seo-faq,
.seo-explainer {
    padding: 22px;
    margin-bottom: 18px;
}

.seo-section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.seo-section-heading h2,
.seo-faq h2,
.seo-explainer h2 {
    margin: 0;
    font-size: 1.18rem;
    letter-spacing: -.02em;
}

.seo-section-heading > span {
    color: #7f8290;
    font-size: .78rem;
}

.seo-link-grid,
.seo-related-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.seo-directory-link,
.seo-related-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
    padding: 12px 13px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;
    background: #0f0f16;
    color: #f4f4f7;
    text-decoration: none;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.seo-directory-link:hover,
.seo-related-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(92,225,230,.32);
    background: #15151e;
}

.seo-directory-link span,
.seo-related-links a span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.seo-directory-link strong,
.seo-related-links a strong {
    flex: 0 0 auto;
    color: #8d91a1;
    font-size: .76rem;
    font-weight: 750;
}

.seo-creator-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.seo-creator-card {
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: #0e0e14;
}

.seo-creator-image-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a26, #101017);
}

.seo-creator-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: rgba(255,255,255,.22);
    font-size: 2rem;
    font-weight: 900;
}

.seo-creator-card-body {
    padding: 12px;
}

.seo-creator-name {
    display: block;
    overflow: hidden;
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.seo-creator-username {
    display: block;
    overflow: hidden;
    margin-top: 2px;
    color: #858896;
    font-size: .78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.seo-creator-badges,
.seo-creator-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}

.seo-creator-badges span {
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(92,225,230,.09);
    color: #8ff6f9;
    font-size: .68rem;
    font-weight: 800;
}

.seo-creator-stats span {
    color: #a7aab5;
    font-size: .70rem;
}

.seo-explainer p {
    margin: 12px 0 0;
    color: #a9abb6;
    line-height: 1.65;
}

.seo-explainer a {
    color: #7ee8eb;
}

.seo-directory-empty {
    text-align: center;
}


.seo-faq {
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,255,255,.09);
    background: linear-gradient(180deg, rgba(24,24,34,.98), rgba(15,15,22,.98));
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.seo-faq details {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 13px 0;
}

.seo-faq details:first-of-type {
    margin-top: 12px;
}

.seo-faq summary {
    cursor: pointer;
    color: #f3f4f7;
    font-weight: 780;
}

.seo-faq details p {
    margin: 9px 0 0;
    color: #a9abb6;
    line-height: 1.6;
}

@media (max-width: 920px) {
    .seo-section-grid {
        grid-template-columns: 1fr;
    }

    .seo-creator-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 660px) {
    .seo-directory-page,
    .seo-landing-page {
        padding: 16px 12px 92px;
    }

    .seo-directory-hero,
    .seo-landing-hero,
    .seo-directory-section,
    .seo-creators-section,
    .seo-related-section,
    .seo-faq,
    .seo-explainer {
        border-radius: 18px;
    }

    .seo-directory-hero,
    .seo-landing-hero {
        padding: 22px 17px;
    }

    .seo-directory-section,
    .seo-creators-section,
    .seo-related-section,
    .seo-faq,
    .seo-explainer {
        padding: 16px;
    }

    .seo-link-grid,
    .seo-related-links {
        grid-template-columns: 1fr;
    }

    .seo-creator-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .seo-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}
