﻿.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shine-wrapper {
    position: relative;
    isolation: isolate;
}

.animated-logo {
    opacity: 0;
    height: 100px;
    height: auto;
    animation: logoAnimationBounce 2s ease-in-out forwards;
    position: relative;
}


@keyframes shine {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes logoAnimationBounce {
    0% {
        opacity: 0;
        transform: scale(0.1) rotate(-360deg);
    }

    80% {
        opacity: 0.9;
        transform: scale(1.1) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

div.room-number-qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.room-number {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

div.event-display-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    place-content: center;
    width: 100%;
    height: 100vh;
    padding: 10px;
    opacity: 1;
    z-index: 1;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-sizing: border-box;
    overflow: hidden;
}

    div.event-display-container div.full-height {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    div.event-display-container div.full-height.in-center {
        place-content: center;
        align-items: center;
    }

    div.event-display-container div.current-time {
        font-size: 36px;
        font-weight: bold;
    }

    div.event-display-container h1 {
        font-size: 72px;
    }

div.event-display-header {
    height: 110px;
    overflow: hidden;
}

div.event-display-top-title {
    padding: 10px;
}

    div.event-display-top-title h1 {
        text-align: center;
        font-size: 42px;
    }

div.event-display-container h2 {
    font-size: 48px;
}

div.event-display-top-title h2 {
    text-align: center;
    font-size: 36px;
}

div.event-display-container h3 {
    font-size: 28px;
}

div.event-display-info-part {
    flex: 1 1;
}

div.event-display-time {
    font-size: 28px;
    font-weight: bold;
}

div.event-display-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10%;
    place-content: space-between;
    height: 90px;
    padding: 0 20px;
}

div.event-display-message-block {
    width: 100%;
    padding: 50px;
    overflow: hidden;
    flex: 1 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    place-content: center;
    position: relative;
    line-height: normal;
}

div.event-display-message {
    font-size: 46px;
    line-height: normal;
    text-align: center;
}

div.in-center {
    display: flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    place-content: center;
}

div.event-display-timer-message {
    font-size: 36px;
}

div.event-display-timer-message {
    font-size: 36px;
    line-height: normal;
}

div.event-display-timer-time-left {
    font-size: 72px;
    line-height: normal;
}

div.event-display-schedule-item {
    padding: 20px;
    border-left: solid 10px #0c9100;
    margin-bottom: 30px;
    line-height: normal;
    border-radius: 16px;
    width: 80%;
}

div.event-display-schedule-item-eyebrow {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
}

div.event-display-schedule-item-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

div.event-display-schedule-item-time {
    font-size: 2.3em;
    font-weight: bold;
    text-transform: uppercase;
    width: 200px;
    min-width: 200px;
}

div.event-display-schedule-item-title {
    font-size: 2.3em;
}

div.event-display-schedule-item-desc {
    font-size: 1.5em;
    font-weight: normal;
}

div.event-display-image {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

div.event-display-image.active {
    opacity: 1;
}



div.rsvp-stat-items {
    display: flex;
    flex-direction: row;
    align-items: center;
}

div.rsvp-stat-item {
    width: 250px;
    text-align: center;
    font-size: 48px;
    line-height: normal;
}

div.rsvp-stat-value {
    font-size: 72px;
    font-weight: bold;
}

div.guest-record {
    margin-bottom: 30px;
    text-align: center;
    line-height: normal;
}

    div.guest-record.left {
        text-align: left;
    }

    div.guest-record-name {
        font-size: 36px;
    }

div.guest-record-group-name {
    font-size: 28px;
}

div.guest-record-company {
    font-size: 28px;
}

div.guest-record-job-title {
    font-size: 28px;
}

div.guest-record-job-bio {
    font-size: 26px;
}

/* ---- POLLS ---- */

.answers-container {
    flex-grow: 1;
    overflow-y: auto;
    /* Hide scrollbar for clean look */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Auto-scrolling animation */
    animation: autoscroll 20s linear infinite;
    animation-play-state: paused;
    width: 100%;
}

    /* Only apply autoscroll when content overflows */
    .answers-container.overflowing {
        animation-play-state: running;
    }

    .answers-container::-webkit-scrollbar {
        display: none;
    }

@keyframes autoscroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(calc(-100% - 100vh));
    }
}

.question {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.answers-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.answer-item {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.answer-item:last-of-type {
    margin-bottom: 0;
}

.answer-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.answer-text {
    font-weight: 500;
    font-size: 28px;
}

.vote-info {
    font-size: 28px;
}

.poll-progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.poll-progress-fill {
    height: 100%;
    background: #4299e1;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.total-votes {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}