.chaturbate-display {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Top Performer Styles */
.top-performer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    margin-bottom: 2px;
    text-align: center;
    color: white;
    position: relative;
}

.top-performer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.performer-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    background: #000;
}

.performer-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.performer-info {
    position: relative;
    z-index: 2;
}

.performer-info h3 {
    font-size: 2em;
    margin: 15px 0 8px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats {
    font-size: 1.2em;
    opacity: 0.9;
    margin: 5px 0 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff5252, #ff7979);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    color: white;
    text-decoration: none;
}

/* Grid Styles */
.performers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2px;
    background: #e0e6ff;
    padding: 2px;
    margin-bottom: 20px;
}

.performer-card {
    background: white;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.performer-card:hover {
    transform: translateY(-4px) scale(1.02);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.performer-thumbnail {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.performer-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.performer-card:hover .performer-thumbnail img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 12px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.overlay .stats {
    font-size: 0.85em;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.new-badge {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7em;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.performer-details {
    padding: 12px;
    text-align: center;
    background: linear-gradient(to bottom, #f8f9ff, white);
}

.performer-details h4 {
    margin: 0 0 10px;
    font-size: 1em;
    color: #333;
    font-weight: 600;
}

.performer-details a {
    display: inline-block;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.performer-details a:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4c93);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Load More Button */
.load-more-btn {
    display: block;
    width: 200px;
    margin: 30px auto;
    padding: 12px 25px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.load-more-btn:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4c93);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-performer {
        padding: 20px 15px;
    }
    
    .performer-info h3 {
        font-size: 1.6em;
    }
    
    .stats {
        font-size: 1em;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .performers-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1px;
    }
    
    .performer-thumbnail {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .top-performer {
        padding: 15px 10px;
    }
    
    .performer-info h3 {
        font-size: 1.4em;
    }
    
    .performers-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .performer-thumbnail {
        height: 100px;
    }
    
    .overlay {
        padding: 8px;
    }
    
    .performer-details {
        padding: 8px;
    }
}

/* Loading Animation */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Smooth scroll for better UX */
html {
    scroll-behavior: smooth;
}