/* ====== VIDEO FEED STYLES ====== */

.video-card {
    position: relative;
}

.video-overlay-tap {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: pointer;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 6;
    backdrop-filter: blur(10px);
    animation: scaleIn 0.3s ease;
}

.video-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.video-progress-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s linear;
}

.video-caption .hashtag {
    color: var(--pastel-blue);
    font-weight: 700;
}

.video-caption .mention {
    color: var(--primary-light);
    font-weight: 700;
}

/* Feed Loader */
.feed-loader {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Empty Feed */
.empty-feed {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: var(--bg-gradient);
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 16px;
    animation: mascotBounce 1.5s ease-in-out infinite;
}

.empty-feed h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.empty-feed p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.empty-feed .btn-primary {
    width: auto;
    padding: 12px 32px;
    background: white;
    color: var(--primary);
}
