.yt-promo-card {
    background: #1e2024;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.yt-promo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
}

.yt-promo-user {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.yt-promo-user:hover {
    color: #fbbf24;
}

.yt-promo-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.yt-promo-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.yt-promo-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.yt-promo-label svg {
    width: 14px;
    height: 14px;
}

.yt-promo-dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.yt-promo-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.yt-promo-delete,
.yt-promo-hide {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-left: 4px;
}

.yt-promo-delete svg,
.yt-promo-hide svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 2;
    fill: none;
}

.yt-promo-delete:hover {
    background: rgba(239, 68, 68, 0.15);
}

.yt-promo-delete:hover svg {
    stroke: #ef4444;
}

.yt-promo-hide:hover {
    background: rgba(255, 255, 255, 0.1);
}

.yt-promo-hide:hover svg {
    stroke: #fff;
}

.yt-promo-thumb-wrap {
    display: block;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    contain: layout style paint;
}

.yt-promo-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    will-change: transform;
    content-visibility: auto;
}

.yt-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yt-promo-thumb-wrap:hover .yt-promo-thumb {
    transform: scale(1.05);
    filter: brightness(0.85);
}

.yt-promo-thumb-wrap:hover .yt-promo-overlay {
    opacity: 1;
}

.yt-promo-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.yt-promo-thumb-wrap:hover .yt-promo-play {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.4);
}

.yt-promo-play svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.yt-promo-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.yt-promo-desc {
    padding: 10px 12px;
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.yt-promo-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.yt-promo-react {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s;
}

.yt-promo-react svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.2s ease;
}

.yt-promo-react:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.yt-promo-react:hover svg {
    transform: scale(1.1);
}

.yt-promo-react:active svg {
    transform: scale(0.9);
}

.yt-promo-react.active {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

.yt-promo-react.active svg {
    fill: #ff4444;
    stroke: #ff4444;
    animation: promo-like-pop 0.3s ease;
}

@keyframes promo-like-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.yt-promo-watch {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    padding: 7px 14px;
    background: #ff0000;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.yt-promo-watch:hover {
    background: #cc0000;
    transform: translateY(-1px);
}

.yt-promo-watch svg {
    width: 14px;
    height: 14px;
}

.yt-promo-card.hiding {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}
