.t10t-profile {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
    font-family: sans-serif;
}

.profile-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.profile-header-info {
    flex: 1;
}

.profile-name {
    font-size: 20px;
    margin: 0;
    color: #333;
}

.profile-bio {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.profile-header-action {
    margin-top: 10px;
}

.follow-btn, .edit-profile-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
}

.follow-btn.unfollow {
    background: #d9534f;
}

.follow-btn:hover, .edit-profile-btn:hover {
    background: #005f87;
}

/* الإحصائيات */
.user-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    text-align: center;
}

.stat-item {
    flex: 1;
}

.stat-count {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.stat-label {
    font-size: 12px;
    color: #777;
}

/* الفيديوهات */
.user-videos .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.video-grid-item {
    background: #fafafa;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.video-grid-item img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.video-info {
    padding: 4px;
}

.video-title {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

.video-meta {
    font-size: 11px;
    color: #777;
}
