/* Premium Hub Styles */
.premium-hub {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
}

.hero-banner {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 3rem;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.model-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(255,255,255,0.9);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.model-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.vip-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.model-handle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.collection-count {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.masonry-grid {
    columns: 4;
    column-gap: 1rem;
    margin-bottom: 3rem;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-4px);
}

.item-link {
    display: block;
    text-decoration: none;
    position: relative;
    height: 100%;
    min-height: 200px;
}

.item-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.video-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.grid-item:hover .item-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
}

.like-count {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.unlock-section {
    text-align: center;
    margin: 4rem 0;
}

.unlock-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.unlock-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

.unlock-card p {
    font-size: 1.1rem;
    margin: 0 0 2rem;
    opacity: 0.9;
}

.vip-btn {
    background: #fff;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.vip-btn:hover {
    transform: translateY(-2px);
}

.similar-section {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.similar-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.similar-card {
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.similar-card:hover {
    transform: translateY(-6px);
}

.similar-image {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
}

.similar-info {
    padding: 1rem;
}

.similar-name {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.similar-stats {
    color: #666;
    font-size: 0.9rem;
}

/* Directory Styles */
.directory-hub {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.featured-section {
    margin-bottom: 4rem;
}

.featured-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
}

.featured-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.featured-card {
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.featured-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.featured-info h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
}

.featured-stats {
    display: flex;
    gap: 1rem;
}

.featured-stats span {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.directory-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.directory-count {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.directory-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.directory-card:hover {
    transform: translateY(-6px);
}

.card-image {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vip-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.card-content {
    padding: 1rem;
}

.card-name {
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
}

.card-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    color: #666;
    font-size: 0.85rem;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Content Viewer */
.content-viewer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.back-btn {
    background: #f8f9fa;
    color: #495057;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.viewer-counter {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.main-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.content-meta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.meta-likes {
    font-weight: 600;
    color: #667eea;
    margin-bottom: 1rem;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.nav-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    .masonry-grid { columns: 2; }
    .similar-grid { grid-template-columns: repeat(2, 1fr); }
    .directory-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-carousel { grid-template-columns: 1fr; }
    .stats-row { gap: 1rem; }
    .model-name { font-size: 2rem; }
}

@media (max-width: 480px) {
    .masonry-grid { columns: 1; }
    .similar-grid { grid-template-columns: 1fr; }
    .directory-grid { grid-template-columns: 1fr; }
}