/* Model Gallery Hub - New Design */
.profile-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cover-section {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
}

.avatar-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid rgba(255,255,255,0.9);
}

.creator-details {
    color: white;
}

.creator-title {
    font-size: 2.2em;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.verified-mark {
    background: #1da1f2;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    margin-left: 10px;
}

.username-info {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 20px;
}

.metrics-grid {
    display: flex;
    gap: 30px;
}

.metric-box {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
}

.metric-title {
    font-size: 0.9em;
    opacity: 0.8;
}

.gallery-section {
    margin-bottom: 40px;
}

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

.gallery-header h2 {
    font-size: 1.8em;
    margin: 0;
}

.items-counter {
    background: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

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

.media-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.media-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.media-card:hover .hover-overlay {
    opacity: 1;
}

.engagement-count {
    color: white;
    font-weight: 600;
}

.more-content {
    text-align: center;
    margin: 40px 0;
}

.access-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.access-button {
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

.related-section {
    margin-top: 50px;
}

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

.creator-card {
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    transition: transform 0.3s;
}

.creator-card:hover {
    transform: translateY(-5px);
}

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

.creator-meta {
    padding: 15px;
}

.creator-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.creator-stats {
    color: #666;
    font-size: 0.9em;
}

/* Photo Viewer */
.photo-viewer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.return-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.photo-counter {
    background: #f1f3f4;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.image-container {
    text-align: center;
    margin-bottom: 20px;
}

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

.photo-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

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

.nav-button {
    background: #667eea;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

/* Models Catalog */
.models-catalog {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.spotlight-section {
    margin-bottom: 40px;
}

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

.spotlight-card {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

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

.spotlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
}

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

.profiles-count {
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
}

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

.profile-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
}

.profile-info {
    padding: 15px;
}

.profile-title {
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.profile-metrics {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 0.9em;
}

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

.load-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .metrics-grid {
        justify-content: center;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}