/* ============================================
   KURD CINEMA - TRANSLATOR DETAIL PAGE
   ============================================ */

/* Main Content */
.main { min-height: 100vh; padding-top: 120px; padding-bottom: 60px; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
}
@media (max-width: 768px) {
    .profile-header { flex-direction: column; text-align: center; padding: 30px 20px; }
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 5px solid transparent;
    background: linear-gradient(var(--charcoal), var(--charcoal)) padding-box,
                linear-gradient(135deg, var(--ruby), var(--gold)) border-box;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info { flex: 1; }
.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pearl);
    margin-bottom: 8px;
}
.profile-role {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 768px) { .profile-role { justify-content: center; } }
.profile-role i { font-size: 1.2rem; }

.profile-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
@media (max-width: 768px) { .profile-stats { justify-content: center; } }

.profile-stat {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}
.profile-stat__value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}
.profile-stat__label {
    font-size: 0.85rem;
    color: var(--silver);
    margin-top: 4px;
}

/* Share Button */
.profile-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
@media (max-width: 768px) { .profile-actions { justify-content: center; } }

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--silver);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.share-btn:hover {
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 27, 84, 0.3);
}
.share-btn i { font-size: 1.1rem; }

/* Share Dropdown */
.share-dropdown {
    position: relative;
    display: inline-block;
}
.share-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(20, 16, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.share-dropdown.active .share-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.share-dropdown__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--silver);
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.share-dropdown__item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--pearl);
}
.share-dropdown__item i { font-size: 1.2rem; }
.share-dropdown__item--facebook:hover { color: #1877f2; }
.share-dropdown__item--twitter:hover { color: #1da1f2; }
.share-dropdown__item--telegram:hover { color: #0088cc; }
.share-dropdown__item--whatsapp:hover { color: #25d366; }
.share-dropdown__item--copy:hover { color: var(--gold); }

.share-dropdown__divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 8px 0;
}

/* Copy Success Toast */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9999;
}
.copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Tabs */
.tabs-container { margin-bottom: 40px; }
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 8px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}
.tab-btn {
    padding: 14px 28px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--silver);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tab-btn:hover { color: var(--pearl); background: rgba(255,255,255,0.05); }
.tab-btn.active {
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    color: white;
}
.tab-btn__count {
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}
.tab-btn.active .tab-btn__count { background: rgba(0,0,0,0.2); }

/* Tab Content */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Movies Grid */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .movies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .movie-card__info {
        padding: 10px;
    }
    
    .movie-card__title {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .movie-card__meta {
        font-size: 0.7rem;
        gap: 8px;
    }
    
    .movie-card__rating {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .movie-card__play {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Movie Card */
.movie-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}
.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: var(--ruby);
}

.movie-card__poster {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
}
.movie-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.movie-card:hover .movie-card__poster img { transform: scale(1.1); }

.movie-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.movie-card:hover .movie-card__overlay { opacity: 1; }

.movie-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}
.movie-card:hover .movie-card__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.movie-card__rating {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: var(--noir);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.movie-card__info { padding: 16px; }
.movie-card__title {
    font-size: 0.95rem;
    color: var(--pearl);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.movie-card__meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--silver);
}
.movie-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.movie-card__meta i { color: var(--gold); font-size: 0.75rem; }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--silver);
}
.empty-state i { font-size: 4rem; margin-bottom: 20px; opacity: 0.3; }
.empty-state p { font-size: 1.1rem; }
