.horizontal-scroll-container {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none;
}

.vertical-column {
    min-width: 100vw;
    width: 100vw;
    min-height: 100vh;
    flex-shrink: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-align: start;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch
}

.vertical-column::-webkit-scrollbar {
    display: none;
}

.content {
    max-width: 600px;
    width: 100%;
}

.scroll-hints-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: calc(2rem + env(safe-area-inset-bottom));
}

.scroll-hint {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.scroll-hint:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.scroll-hint:active {
    transform: translateY(0);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid;
  border-radius: 9999px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-text {
  font-size: 0.875rem;
  font-weight: 500;
}


@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-dot {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
