/* Creator Profile Styles */
.creator-profile {
    padding: 2rem 0;
}

/* Custom styling for the subtitle on creator pages - EXACT match from creator.css */
.creator-subtitle {
    margin-bottom: 10px !important;
    padding-top: 10px;
    font-size: 1.6rem;
}

/* Dark input fields for better visibility on dark backgrounds */
.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="url"],
.profile-form input[type="password"],
.profile-form textarea {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px 15px;
    width: 100%;
}

.profile-form input[type="text"]:focus,
.profile-form input[type="email"]:focus,
.profile-form input[type="url"]:focus,
.profile-form input[type="password"]:focus,
.profile-form textarea:focus {
    background-color: #333;
    border-color: #666;
    outline: none;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Profile Card */
.profile-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    overflow: hidden;
}

.profile-avatar i {
    font-size: 50px;
    color: #eee;
}

.profile-info {
    flex: 1;
}

.creator-name {
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
    color: #fff;
}

.creator-since {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
}

.profile-bio {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.profile-bio h3 {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 1rem;
}

.profile-bio p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: transform 0.2s, background-color 0.2s;
}

.social-link:hover {
    transform: scale(1.1);
}

.twitter {
    background-color: #1DA1F2;
}

.linkedin {
    background-color: #0077B5;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.youtube {
    background-color: #FF0000;
}

.tiktok {
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.tiktok::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #25F4EE, #FE2C55);
    z-index: -1;
    opacity: 0.7;
}

.social-link i {
    font-size: 1.2rem;
}

/* Movie Grid - COMMENTED OUT TO USE STYLES FROM INDEX.CSS */
.creator-movies {
    margin-top: 1rem;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

/* 
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.movie-card {
    transition: transform 0.2s;
    border-radius: 6px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.movie-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.movie-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 3px;
}

.movie-info {
    padding: 1rem;
}

.movie-title {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-genre {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
}
*/

.empty-state {
    text-align: center;
    padding: 3rem 0;
    color: #aaa;
}

/* Profile Photo */
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Profile Photo Upload */
.profile-photo-group {
    margin-bottom: 2rem;
}

.profile-photo-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.current-photo {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.current-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-photo {
    font-size: 60px;
    color: #eee;
}

.photo-upload {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-card {
        padding: 1.5rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
} 