/* Promo Scroller Custom Styles */

/* Video Player Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

/* Video Element */
.promo-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Rating Overlay */
.rating-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.rating-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Rating Container */
.rating-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

/* Emoji Rating */
.emoji-rating {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
}

.emoji-option {
    cursor: pointer;
    transition: transform 0.2s ease;
    font-size: 2rem;
}

.emoji-option:hover {
    transform: scale(1.2);
}

.emoji-option.selected {
    transform: scale(1.3);
}

/* Feedback Textarea */
.feedback-container {
    margin-top: 1.5rem;
}

/* Loading Indicator */
.loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Infinite Scroll Container */
.infinite-scroll {
    position: relative;
    height: 100vh;
    overflow-y: hidden;
    scroll-snap-type: y mandatory;
}

.promo-item {
    height: 100vh;
    scroll-snap-align: start;
    position: relative;
}
