/* LCC Chaturbate API - Default Theme */

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

/* Header */
.lcc-header {
    text-align: center;
    margin-bottom: 30px;
}

.lcc-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
}

.lcc-subtitle {
    font-size: 1.2em;
    color: #666;
}

/* Cams Grid */
:has(.lcc-cams-grid){
	display: block !important;
}
.lcc-cams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 20px;
}

/* Model Card */
.lcc-model-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lcc-model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.lcc-model-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.lcc-model-thumb-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    background: #eee;
}

.lcc-model-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lcc-live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.lcc-hd-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #27ae60;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
}

.lcc-model-header-row {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-weight: bold;
}

.lcc-model-name {
    font-size: 14px;
}

.lcc-gender-icon {
    font-size: 14px;
    color: #666;
}

.lcc-model-subject {
    padding: 0 10px;
    font-size: 12px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lcc-model-footer-row {
    padding: 10px;
    font-size: 12px;
    color: #888;
}

/* Pagination */
.lcc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.lcc-btn {
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}

.lcc-btn:hover {
    background: #2980b9;
}

.lcc-page-info {
    color: #666;
}

/* Model Profile Page */
.lcc-model-profile {
    margin-bottom: 40px;
}

.lcc-model-content {
    display: flex;
    gap: 30px;
}

.lcc-model-video {
    flex: 0 0 65%;
}

.lcc-model-video iframe {
    width: 100%;
    height: 600px;
    border-radius: 8px;
}

.lcc-model-data {
    flex: 1;
}

.lcc-model-username {
    font-size: 2em;
    margin-bottom: 10px;
}

.lcc-model-subject {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 20px;
}

.lcc-cta-button {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.lcc-cta-button:hover {
    background: #c0392b;
}

.lcc-model-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.lcc-stat-value {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
}

.lcc-stat-label {
    font-size: 0.9em;
    color: #666;
}

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

.lcc-tag {
    background: #ecf0f1;
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
}

.lcc-tag:hover {
    background: #bdc3c7;
}

/* Related Models */
.lcc-related-models {
    margin-top: 40px;
}

.lcc-related-title {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.lcc-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

/* Error & No Results */
.lcc-error,
.lcc-no-results {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .lcc-model-content {
        flex-direction: column;
    }
    
    .lcc-model-video {
        flex: none;
    }
    
    .lcc-model-video iframe {
        height: 300px;
    }
    
    .lcc-cams-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
