/* Creator layout refresh */
.creator-hub {
    max-width: 1320px;
    margin: 0 auto;
    padding: 32px 24px 60px;
}

.creator-hub--shift {
    background: linear-gradient(180deg, rgba(248, 248, 246, 0.9) 0%, #ffffff 45%);
    border-radius: 28px;
}

.creator-banner {
    background-size: cover;
    background-position: center;
    border-radius: 26px;
    padding: 46px;
    box-shadow: 0 16px 40px rgba(12, 18, 30, 0.28);
}

.creator-banner--alt {
    overflow: hidden;
}

.banner-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
}

.creator-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.creator-avatar {
    width: 140px;
    height: 140px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.creator-info {
    color: #f8f9fb;
}

.creator-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.creator-name {
    font-size: 2.4em;
    margin: 0 0 8px 0;
    font-weight: 800;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.45);
}

.premium-badge {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.creator-handle {
    font-size: 1.05em;
    opacity: 0.92;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
}

.creator-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.stat-chip {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #f8fafc;
    padding: 12px 16px;
    border-radius: 16px;
    min-width: 96px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.stat-count {
    display: block;
    font-size: 1.6em;
    font-weight: 800;
}

.stat-text {
    font-size: 0.75em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

.premium-content {
    margin: 50px 0 20px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 26px;
}

.section-heading h2 {
    font-size: 2.1em;
    margin: 0;
    color: #1e2633;
}

.section-subtitle {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 1em;
}

.items-badge {
    background: #1f2937;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.content-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.content-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e6e8ec;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.content-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(15, 25, 40, 0.18);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.media-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.72em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.likes-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2937;
    padding: 6px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.78em;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #fbfbfc;
}

.card-type {
    font-size: 0.78em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #374151;
}

.card-index {
    font-size: 0.85em;
    color: #6b7280;
}

.unlock-section {
    text-align: center;
    margin: 60px 0;
}

.unlock-banner {
    background: linear-gradient(135deg, #13293d 0%, #1f4b4f 100%);
    color: #ffffff;
    padding: 44px;
    border-radius: 24px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 18px 35px rgba(10, 20, 32, 0.25);
}

.unlock-btn {
    background: #ffffff;
    color: #13293d;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    margin-top: 22px;
    transition: transform 0.3s ease;
}

.unlock-btn:hover {
    transform: translateY(-2px) scale(1.03);
}

.related-creators {
    margin-top: 70px;
}

.creators-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.creator-card {
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e6e8ec;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.creator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 26px rgba(15, 25, 40, 0.16);
}

.creator-thumb {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.creator-card-meta {
    padding: 16px;
}

.creator-card-title {
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.creator-count {
    color: #6b7280;
    font-size: 0.95em;
}

.content-viewer {
    max-width: 1080px;
    margin: 0 auto;
    padding: 32px 22px 60px;
}

.viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.return-btn {
    background: #eef2f6;
    color: #1f2937;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.content-counter {
    background: #111827;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.viewer-main {
    display: grid;
    gap: 22px;
}

.viewer-frame {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 18px 34px rgba(12, 18, 30, 0.18);
}

.image-wrapper {
    text-align: center;
    margin: 0;
}

.main-content-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(12, 18, 30, 0.2);
}

.content-info {
    margin-top: 20px;
    background: #f6f7f9;
    border-radius: 16px;
    padding: 16px 18px;
}

.engagement-stats {
    font-weight: 700;
    margin-bottom: 8px;
}

.content-description {
    color: #374151;
    line-height: 1.5;
}

.content-navigation {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.nav-button {
    background: #1f2937;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
}

.creators-hub {
    max-width: 1320px;
    margin: 0 auto;
    padding: 36px 24px 70px;
}

.creators-hub--alt {
    background: linear-gradient(180deg, #faf8f3 0%, #ffffff 45%);
    border-radius: 28px;
}

.spotlight-creators {
    margin-bottom: 60px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 22px;
}

.spotlight-card {
    position: relative;
    display: block;
    height: 240px;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 35px rgba(12, 18, 30, 0.2);
}

.spotlight-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.spotlight-info h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.35em;
}

.spotlight-metrics {
    display: flex;
    gap: 14px;
    color: #e5e7eb;
    font-size: 0.95em;
}

.catalog-section {
    margin-top: 20px;
}

.catalog-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.catalog-heading h2 {
    margin: 0;
    font-size: 2em;
    color: #1f2937;
}

.catalog-subtitle {
    margin: 6px 0 0;
    color: #6b7280;
}

.creators-count {
    background: #1f2937;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
}

.catalog-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e6e8ec;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 26px rgba(15, 25, 40, 0.16);
}

.catalog-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.catalog-media {
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge-premium {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #111827;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 0.72em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.catalog-body {
    padding: 16px;
}

.catalog-name {
    margin: 0 0 10px;
    font-size: 1.15em;
    font-weight: 800;
}

.catalog-stats {
    display: flex;
    gap: 14px;
    color: #6b7280;
    font-size: 0.95em;
}

.pagination-section {
    text-align: center;
    margin-top: 50px;
}

.load-button {
    background: #13293d;
    color: #ffffff;
    border: none;
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 1.05em;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.load-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .banner-content {
        grid-template-columns: 1fr;
    }

    .creator-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .creator-avatar {
        width: 120px;
        height: 120px;
    }

    .content-cards {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }

    .section-title,
    .catalog-title {
        align-items: flex-start;
    }

    .spotlight-card {
        height: 220px;
    }
}
.random-posts-section {
    margin: 50px 0;
}

.random-posts-section h2 {
    font-size: 2.1em;
    margin: 0 0 26px;
    color: #1e2633;
}

.random-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.random-post-card {
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e6e8ec;
    transition: transform 0.25s ease;
}

.random-post-card:hover {
    transform: translateY(-4px);
}

.random-post-thumb {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.random-post-title {
    padding: 12px;
    font-size: 0.9em;
    font-weight: 600;
    color: #374151;
}
.seo-links-section {
    margin: 40px 0;
}

.seo-links-section h2 {
    font-size: 2.1em;
    margin: 0 0 26px;
    color: #1e2633;
}

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.seo-link-card {
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border: 1px solid #e6e8ec;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seo-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 25, 40, 0.12);
}

.seo-link-card h3 {
    margin: 0 0 8px;
    font-size: 1.1em;
    font-weight: 700;
    color: #1f2937;
}

.seo-link-card p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9em;
}