/* Premium Content Hub v6.0 - Card Layout */
.creator-hub {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

.creator-banner {
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    padding: 60px 30px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.creator-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 6px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.creator-info {
    color: white;
    flex: 1;
}

.creator-name {
    font-size: 2.8em;
    margin: 0 0 15px 0;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

.premium-badge {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.6em;
    margin-left: 15px;
    font-weight: 800;
}

.creator-handle {
    font-size: 1.3em;
    opacity: 0.95;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.creator-stats {
    display: flex;
    gap: 40px;
}

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

.stat-count {
    display: block;
    font-size: 2.2em;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
}

.stat-text {
    font-size: 1em;
    opacity: 0.9;
}

.premium-content {
    margin-bottom: 50px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 2.2em;
    margin: 0;
    color: #2c3e50;
}

.items-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 800;
}

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

.content-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

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

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.heart-count {
    color: white;
    font-weight: 800;
    font-size: 1.2em;
}

.card-footer {
    padding: 20px;
    text-align: center;
}

.card-type {
    background: #f8f9fa;
    color: #495057;
    padding: 8px 16px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9em;
}

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

.unlock-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.unlock-btn {
    background: white;
    color: #667eea;
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    margin-top: 25px;
    transition: transform 0.3s ease;
}

.unlock-btn:hover {
    transform: scale(1.08);
}

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

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

.creator-card {
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.creator-meta {
    padding: 20px;
}

.creator-title {
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.creator-count {
    color: #666;
    font-size: 1em;
}

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

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

.return-btn {
    color: #667eea;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2em;
}

.content-counter {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
}

.image-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.main-content-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.content-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

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

.nav-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.nav-button:hover {
    transform: scale(1.08);
}

/* Creators Hub */
.creators-hub {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.hero-card {
    height: 250px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

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

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

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

.creators-count {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 800;
}

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

.creator-tile {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.creator-tile:hover {
    transform: translateY(-10px);
}

.tile-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.premium-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 800;
}

.tile-content {
    padding: 25px;
}

.tile-name {
    margin: 0 0 15px 0;
    font-size: 1.3em;
    font-weight: 800;
}

.tile-stats {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 1em;
}

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

.load-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 35px;
    font-size: 1.2em;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.load-button:hover {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .creator-stats {
        justify-content: center;
    }
    
    .content-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-title {
        flex-direction: column;
        gap: 20px;
    }
}