/* Profile Specific Styles */

.cover-photo {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e6f3eb 0%, #c2e5d3 100%);
    border-bottom: 1px solid var(--color-border);
}

.profile-container {
    padding-top: 0;
}

.profile-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -60px;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.profile-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 10px;
}

.follow-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
}

.follow-btn:hover {
    background-color: #165235;
    color: white;
}

.share-btn {
    padding: 0.8rem 1.5rem;
}

.profile-info h1 {
    text-align: left;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3b82f6;
    color: white;
    font-size: 0.9rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 0.8rem;
}

.profile-info .handle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.mt-2 {
    margin-top: 1rem;
}

.profile-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.profile-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 1rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-box strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-box span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Links Section */
.links-section h2, .content-section h2 {
    margin-bottom: 1.5rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.social-link .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Content Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.play-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.video-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.bg-purple-light { background: linear-gradient(135deg, #f3e8ff 0%, #d8b4fe 100%); }
.bg-teal-light { background: linear-gradient(135deg, #e0f2fe 0%, #7dd3fc 100%); }
.bg-pink-light { background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 100%); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .links-grid {
        grid-template-columns: 1fr;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
