/**
 * Feed view styles
 * Immersive full-screen content display
 */

.feed-view {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.content-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Text content */
.content-text {
    max-width: 800px;
    max-height: 100%;
    padding: 2rem;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    overflow-y: auto;
}

.content-text::-webkit-scrollbar {
    width: 8px;
}

.content-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.content-text::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

/* Image content */
.content-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.content-image img {
    cursor: default;
}

.content-image.zoomed {
    object-fit: cover;
}

/* Video content */
.content-video {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-video video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: default;
}

/* Video progress bar (fixed at top) */
.video-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.video-progress-fill {
    height: 100%;
    background: #fff;
    width: 0%;
}

/* Video control zones (invisible tap areas) */
.video-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 100;
    pointer-events: none;
}

.video-control-zone {
    flex: 1;
    pointer-events: all;
    cursor: pointer;
    touch-action: manipulation;
}

/* Optional: Add visual feedback on hover (desktop only) */
@media (hover: hover) {
    .video-control-zone:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Menu button (top-right) */
.menu-button {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.menu-button svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}
