/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary: #0d0d0f;
    --bg-secondary: #16161a;
    --bg-card: #1c1c22;
    --bg-card-hover: #24242c;
    --bg-accent: #2a2a35;
    --text-primary: #e8e8ed;
    --text-secondary: #9898a6;
    --text-muted: #666678;
    --accent: #ff4d6a;
    --accent-hover: #ff3355;
    --accent-soft: rgba(255, 77, 106, 0.15);
    --green: #4ade80;
    --yellow: #facc15;
    --orange: #fb923c;
    --blue: #60a5fa;
    --border: #2a2a35;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* === HEADER === */
.site-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.site-header .container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo:hover { color: var(--text-primary); }
.logo-icon { color: var(--accent); font-size: 1.8rem; }

.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    gap: 0;
}

.search-bar input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-bar input:focus { border-color: var(--accent); }

.search-bar button {
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.search-bar button:hover { background: var(--accent-hover); }

.header-nav {
    display: flex;
    gap: 20px;
}

.header-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.header-nav a:hover, .header-nav a.active {
    color: var(--text-primary);
    border-bottom-color: var(--accent);
}

/* === MAIN CONTENT === */
main { padding: 32px 20px; min-height: 60vh; }

.loading {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* === HERO === */
.hero {
    text-align: center;
    padding: 48px 20px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === CATEGORIES GRID === */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title .accent { color: var(--accent); }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 40px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
    position: relative;
}

.category-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.category-card-overlay {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card:hover .category-card-overlay {
    background: rgba(0, 0, 0, 0.65);
}

.category-icon { font-size: 2rem; margin-bottom: 8px; }

.category-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.category-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* === SITE CARDS === */
.sites-list { display: flex; flex-direction: column; gap: 16px; }

.site-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.2s;
    cursor: pointer;
}

.site-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.site-rank {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-muted);
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-rank.top-3 { color: var(--accent); }

.site-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.site-info { flex: 1; }

.site-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.site-url {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.site-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.site-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.site-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.badge-free { background: rgba(74, 222, 128, 0.15); color: var(--green); }
.badge-premium { background: rgba(250, 204, 21, 0.15); color: var(--yellow); }
.badge-featured { background: var(--accent-soft); color: var(--accent); }

.site-rating-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.rating-excellent { color: var(--green); }
.rating-good { color: var(--yellow); }
.rating-average { color: var(--orange); }
.rating-poor { color: var(--accent); }

.rating-stars { color: var(--yellow); font-size: 0.85rem; margin-top: 4px; }
.rating-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; margin-top: 2px; }

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    align-self: center;
}

.visit-btn:hover { background: var(--accent-hover); color: #fff; }

/* === SITE DETAIL === */
.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.detail-title {
    font-size: 2rem;
    font-weight: 800;
}

.detail-url {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 4px;
}

.detail-rating {
    text-align: center;
    padding: 20px 30px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.detail-rating .rating-number { font-size: 3rem; }

.detail-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.detail-description {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}

.detail-description h3 { margin-bottom: 12px; font-size: 1.1rem; }
.detail-description p { color: var(--text-secondary); line-height: 1.8; }

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pros-cons {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
}

.pros-cons h4 { margin-bottom: 10px; font-size: 0.95rem; }
.pros-cons ul { list-style: none; }
.pros-cons li { padding: 5px 0; font-size: 0.9rem; color: var(--text-secondary); }
.pros-cons li::before { margin-right: 8px; font-weight: 700; }
.pros-list li::before { content: '+'; color: var(--green); }
.cons-list li::before { content: '-'; color: var(--accent); }

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    background: var(--bg-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* === REVIEWS === */
.reviews-section { margin-top: 40px; }

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 14px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-author { font-weight: 600; }
.review-date { font-size: 0.8rem; color: var(--text-muted); }
.review-comment { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

.review-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 20px;
}

.review-form h3 { margin-bottom: 16px; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--text-secondary); }

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }

.submit-btn {
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover { background: var(--accent-hover); }

/* === FILTER BAR === */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-bar select {
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb span { margin: 0 8px; }

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination button {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.pagination button:hover { border-color: var(--accent); color: var(--text-primary); }
.pagination button.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination button:disabled { opacity: 0.4; cursor: default; }

/* === MODAL === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.hidden { display: none; }

.modal {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--border);
}

.modal-close {
    float: right;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

/* === BACK LINK === */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.back-link:hover { color: var(--text-primary); }

/* === PORNSTAR CARDS === */
.pornstars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.star-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.star-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.star-photo-wrap-sm { position: relative; width: 100%; padding-top: 120%; overflow: hidden; }

.star-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.star-card-info { padding: 14px 16px; }
.star-card-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.star-card-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; display: flex; gap: 4px; }
.star-card-rating { display: flex; align-items: center; gap: 6px; }

/* Pornstar Detail */
.star-detail-header {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.star-photo-lg {
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.star-photo-placeholder-lg {
    width: 220px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
    flex-shrink: 0;
}

.star-gallery-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
    max-width: 220px;
}

.gallery-thumb-sm {
    width: 48px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid var(--border);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, border-color 0.2s;
}

.gallery-thumb-sm:hover,
.gallery-thumb-sm.active {
    opacity: 1;
    border-color: var(--accent);
}

.star-detail-info { flex: 1; }

.star-detail-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.star-detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.star-detail-stats div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label-sm {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* === BLOG === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.blog-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
}

.blog-card-body {
    padding: 16px;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.blog-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-content h2, .blog-content h3 {
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.blog-content p {
    margin-bottom: 16px;
}

.blog-content a {
    color: var(--accent);
    text-decoration: underline;
}

.blog-content ul, .blog-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 16px 0;
}

.blog-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 12px 20px;
    margin: 16px 0;
    background: var(--bg-card);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .site-header .container { flex-direction: column; align-items: stretch; gap: 12px; }
    .search-bar { max-width: 100%; }
    .header-nav { justify-content: center; }
    .hero h1 { font-size: 1.8rem; }
    .site-card { flex-direction: column; text-align: center; }
    .site-rank { min-width: auto; }
    .site-rating-box { flex-direction: row; gap: 10px; }
    .detail-body { grid-template-columns: 1fr; }
    .detail-header { flex-direction: column; }
    .categories-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .stats-bar { gap: 20px; }
}

/* === AGE GATE === */
.age-gate {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.age-gate-box {
    max-width: 440px;
    background: var(--bg-secondary);
    padding: 48px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.age-gate-box h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.age-gate-box p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.age-gate-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.age-gate-btns button {
    padding: 12px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-enter { background: var(--accent); color: #fff; }
.btn-enter:hover { background: var(--accent-hover); }
.btn-leave { background: var(--bg-accent); color: var(--text-secondary); }
.btn-leave:hover { background: var(--border); }

/* === SEARCH DROPDOWN === */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 4px;
}
.search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
}
.search-dropdown-item:hover {
    background: var(--bg-card-hover);
}
.search-dropdown-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.search-dropdown-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.search-dropdown-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.search-dropdown-empty {
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* === STATUS BADGES === */
.star-status {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}
.star-status-retired { background: #991b1b; color: #fca5a5; }
.star-status-hiatus { background: #92400e; color: #fcd34d; }
.star-status-deceased { background: #374151; color: #9ca3af; }

/* === SOCIAL LINKS === */
.star-social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.social-x { background: #1d1d1d; color: #fff; border: 1px solid #333; }
.social-x:hover { background: #333; }
.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-ig:hover { opacity: 0.85; }
.social-of { background: #00aeef; color: #fff; }
.social-of:hover { background: #0095cc; }
.social-wiki { background: #36363a; color: #e8e8ed; border: 1px solid #555; }
.social-wiki:hover { background: #4a4a50; }

/* === EXCLUSIVE BADGE === */
.exclusive-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 6px;
    vertical-align: middle;
}
