/* Tailwind + Custom minimal styles */

/* Import fonts */
@import url('https://fonts.cdnfonts.com/css/nexa');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base styles */
body {
    background: #000000;
    font-family: 'Inter', sans-serif;
}

/* Only keep essential custom styles that Tailwind doesn't cover */
.iclosed-widget {
    border: none !important;
    border-radius: 0 !important;
}

/* Video container styles (keep existing functionality) */
.video-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-thumbnail:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Profile card styles */
.profile-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    color: #333;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.profile-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.rating-number {
    font-weight: 600;
    font-size: 1.1rem;
}

.reviews {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3px;
}

.experience {
    font-size: 0.85rem;
    color: #999;
}

/* Responsive utilities that complement Tailwind */
@media (max-width: 768px) {
    .video-container {
        margin: 20px 0;
    }
}