.profile-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-image-container:hover {
    transform: scale(1.05);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.1);
}

.back-nav {
    margin-bottom: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateX(-5px);
    background-color: var(--primary-color);
}

.back-button i {
    font-size: 1.1em;
}

.star-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: white;
    position: relative;
    overflow: hidden;
}

.star-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.star-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.star-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-value {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

.videos-section {
    margin-top: 40px;
}

.videos-section h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.videos-section h2 i {
    color: var(--primary-color);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Video Card Overrides */
.video-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .star-info {
        flex-direction: column;
        text-align: center;
    }

    .star-stats {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .back-button {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for stats */
@keyframes countUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.stat-item {
    animation: countUp 0.5s ease-out forwards;
}

/* Show More Button */
.show-more-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.show-more-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.show-more-btn i {
    margin-right: 0.5rem;
    color: #ffffff;
}

.star-bio {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.star-bio p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.star-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
}

.detail-item i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: var(--secondary-color);
}

.social-link i {
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .star-bio {
        padding: 15px;
    }

    .star-details {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }
} 