:root {
    --bg-color: #0b1026;
    --text-color: #ffffff;
    --accent-gold: #ffd700;
    --accent-red: #d42426;
    --sbb-red: #eb0000;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    overflow: hidden; /* Prevent scrolling */
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Snow Effect */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    color: white;
    font-size: 1em;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    0% { transform: translateY(-10vh) translateX(0); }
    100% { transform: translateY(110vh) translateX(20px); }
}

/* Main App Container */
#app {
    width: 100%;
    max-width: 450px; /* Mobile size */
    height: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.scene.active {
    opacity: 1;
    pointer-events: all;
}

.content-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

h1, h2 {
    font-family: 'Mountains of Christmas', cursive;
    margin-bottom: 15px;
}

.festive-title {
    font-size: 3rem;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Ticket Style */
.ticket-wrapper {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ticket-wrapper:hover {
    transform: scale(1.05);
}

.ticket {
    display: flex;
    background: #f4f4f4;
    color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    position: relative;
}

.ticket::before, .ticket::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--bg-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.ticket::before { left: -10px; }
.ticket::after { right: -10px; }

.ticket-left {
    background: var(--accent-red);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 2px dashed rgba(255,255,255,0.5);
}

.advent-number {
    font-size: 2.5rem;
    font-weight: bold;
}

.ticket-right {
    padding: 20px;
    flex-grow: 1;
    text-align: left;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.ticket-title {
    font-weight: bold;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-instruction {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Packing Game */
.packing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.pack-item {
    font-size: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.pack-item.selected {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.pack-item.wrong {
    animation: shake 0.5s;
    border-color: var(--accent-red);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.feedback-text {
    height: 24px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.action-btn {
    background: var(--accent-gold);
    color: #0b1026;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:disabled {
    background: #555;
    color: #888;
    cursor: not-allowed;
}

/* Journey / Train - COMPLETELY REDESIGNED */
.journey-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #0a0a1a 0%, #1a1a3a 30%, #2a3a5a 100%);
}

/* Sky Layer */
.sky-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
}

.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.journey-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s infinite ease-in-out;
}

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

.moon {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #fffde7, #fdd835);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(253, 216, 53, 0.4), 0 0 60px rgba(253, 216, 53, 0.2);
}

/* Landscape Wrapper */
.landscape-wrapper {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 60%;
}

/* Parallax Layers */
.parallax-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 200%;
}

.parallax-layer svg {
    width: 50%;
    height: auto;
    flex-shrink: 0;
}

/* Far Mountains - slowest */
.mountains-far {
    height: 40%;
    animation: scrollSlow 30s linear infinite;
}

/* Near Mountains - medium */
.mountains-near {
    height: 50%;
    animation: scrollMedium 20s linear infinite;
}

@keyframes scrollSlow {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollMedium {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Trees Layer */
.trees-layer {
    height: 80px;
    bottom: 50px;
    animation: scrollFast 12s linear infinite;
    display: flex;
}

@keyframes scrollFast {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.tree-group {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    align-items: flex-end;
    flex-shrink: 0;
}

.pine-tree {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 55px solid #1b5e20;
    position: relative;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.4));
}

.pine-tree::before {
    content: '';
    position: absolute;
    bottom: -55px;
    left: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 40px solid #2e7d32;
}

.pine-tree::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -4px;
    width: 8px;
    height: 15px;
    background: #5d4037;
    border-radius: 0 0 2px 2px;
}

.pine-tree.tall {
    border-left-width: 18px;
    border-right-width: 18px;
    border-bottom-width: 75px;
}

.pine-tree.tall::before {
    bottom: -75px;
    left: -12px;
    border-left-width: 12px;
    border-right-width: 12px;
    border-bottom-width: 55px;
}

.pine-tree.tall::after {
    bottom: -82px;
}

/* Ground Layer */
.ground-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 4;
}

.snow-ground {
    position: absolute;
    bottom: 45px;
    left: 0;
    width: 100%;
    height: 55px;
    background: linear-gradient(to bottom, #f5f5f5 0%, #e0e0e0 50%, #bdbdbd 100%);
}

/* Railway Track */
.railway-track {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 25px;
    z-index: 5;
    background: linear-gradient(to bottom, #8d6e63 0%, #6d4c41 100%);
    border-top: 2px solid #5d4037;
}

.track-ties {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 200%;
    animation: moveTies 0.4s linear infinite;
}

@keyframes moveTies {
    from { transform: translateX(0); }
    to { transform: translateX(-24px); }
}

.track-tie {
    width: 10px;
    height: 25px;
    background: linear-gradient(to bottom, #4e342e, #3e2723);
    margin-right: 14px;
    flex-shrink: 0;
    border-radius: 1px;
}

.track-rail {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #78909c 0%, #90a4ae 50%, #78909c 100%);
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.top-rail { top: 3px; }
.bottom-rail { bottom: 3px; }

/* Train Wrapper */
.train-wrapper {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: left 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.train-wrapper.entering {
    left: -400px;
    transform: translateX(0);
    transition: left 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.train-wrapper.centered {
    left: 50%;
    transform: translateX(-50%);
    transition: left 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.train-wrapper.exiting {
    left: calc(100% + 400px);
    transform: translateX(0);
    transition: left 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.train-wrapper.reset-position {
    left: -400px;
    transform: translateX(0);
    transition: none;
}

/* Modern SBB Train */
.sbb-train-modern {
    display: flex;
    align-items: flex-end;
    animation: trainShake 0.2s ease-in-out infinite;
}

.journey-container.stopped .sbb-train-modern {
    animation: none;
}

@keyframes trainShake {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
}

/* ==================== */
/* LOCOMOTIVE (Re 460)  */
/* ==================== */
.locomotive {
    position: relative;
    width: 110px;
    height: 75px;
    margin-left: -3px;
}

.loco-connector {
    position: absolute;
    left: -5px;
    top: 30px;
    width: 8px;
    height: 20px;
    background: #424242;
    border-radius: 2px;
    z-index: 5;
}

.loco-roof {
    position: absolute;
    top: 0;
    left: 5px;
    width: 100px;
    height: 8px;
    background: linear-gradient(to bottom, #b71c1c, #c62828);
    border-radius: 4px 4px 0 0;
    border: 1px solid #8b0000;
    border-bottom: none;
}

/* Pantograph */
.pantograph {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.panto-base {
    width: 16px;
    height: 4px;
    background: #424242;
    margin: 0 auto;
}

.panto-arm {
    width: 2px;
    height: 10px;
    background: #616161;
    margin: 0 auto;
    position: relative;
}

.panto-arm::before,
.panto-arm::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 8px;
    background: #616161;
}

.panto-arm::before {
    left: -4px;
    transform: rotate(-20deg);
}

.panto-arm::after {
    right: -4px;
    transform: rotate(20deg);
}

.panto-head {
    width: 20px;
    height: 3px;
    background: #212121;
    margin: 0 auto;
    border-radius: 1px;
}

.loco-body-re460 {
    position: absolute;
    top: 8px;
    left: 5px;
    width: 100px;
    height: 50px;
    display: flex;
    background: linear-gradient(to bottom, #d32f2f 0%, #c62828 50%, #b71c1c 100%);
    border: 1px solid #8b0000;
    border-radius: 3px 8px 4px 4px;
    overflow: hidden;
}

.loco-side-panel {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.loco-cab-window {
    position: absolute;
    top: 5px;
    left: 8px;
    width: 25px;
    height: 14px;
    background: linear-gradient(to bottom, #0d47a1, #1565c0);
    border-radius: 3px 3px 2px 2px;
    border: 2px solid #b71c1c;
}

.loco-side-windows {
    position: absolute;
    top: 8px;
    right: 12px;
    display: flex;
    gap: 5px;
}

.loco-side-windows span {
    width: 10px;
    height: 10px;
    background: linear-gradient(to bottom, #0d47a1, #1565c0);
    border-radius: 2px;
    border: 1px solid #8b0000;
}

.sbb-logo-re460 {
    position: absolute;
    bottom: 6px;
    left: 8px;
}

.sbb-logo-img {
    width: 38px;
    height: auto;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}

.loco-vents-re460 {
    position: absolute;
    bottom: 10px;
    right: 8px;
    display: flex;
    gap: 2px;
}

.loco-vents-re460 span {
    width: 3px;
    height: 14px;
    background: linear-gradient(to bottom, #8b0000, #5d0000);
    border-radius: 1px;
}

.loco-front-re460 {
    width: 22px;
    height: 50px;
    background: linear-gradient(to right, #c62828, #b71c1c);
    border-radius: 0 8px 6px 0;
    position: relative;
    border-left: 1px solid #8b0000;
}

.front-window {
    position: absolute;
    top: 6px;
    left: 4px;
    width: 14px;
    height: 12px;
    background: linear-gradient(to bottom, #0d47a1, #1565c0);
    border-radius: 2px 5px 3px 2px;
    border: 2px solid #8b0000;
}

.headlights-re460 {
    position: absolute;
    top: 22px;
    right: 3px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-end;
}

.hl {
    width: 5px;
    height: 5px;
    background: radial-gradient(circle at 30% 30%, #fffde7, #ffeb3b);
    border-radius: 50%;
    box-shadow: 0 0 6px #ffeb3b, 0 0 12px rgba(255, 235, 59, 0.5);
}

.hl.bottom {
    width: 6px;
    height: 6px;
    margin-top: 2px;
}

.front-detail {
    position: absolute;
    bottom: 8px;
    right: 4px;
    width: 10px;
    height: 6px;
    background: #8b0000;
    border-radius: 2px;
}

.loco-undercarriage-re460 {
    position: absolute;
    bottom: 12px;
    left: 8px;
    width: 94px;
    height: 8px;
    background: #212121;
    border-radius: 2px;
}

/* ==================== */
/* WHEEL BOGIES         */
/* ==================== */
.wheel-bogie {
    position: absolute;
    bottom: 0;
    display: flex;
    gap: 8px;
    padding: 0 3px;
    background: #424242;
    border-radius: 2px;
    height: 14px;
    align-items: center;
}

.locomotive .front-bogie {
    left: 10px;
}

.locomotive .rear-bogie {
    right: 10px;
}

.wheel {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 35% 35%, #616161, #212121);
    border-radius: 50%;
    border: 2px solid #424242;
    position: relative;
    animation: wheelSpin 0.15s linear infinite;
}

.journey-container.stopped .wheel {
    animation: none;
}

@keyframes wheelSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #9e9e9e;
    border-radius: 50%;
}

/* ==================== */
/* PASSENGER CARS       */
/* ==================== */
.passenger-car {
    position: relative;
    width: 130px;
    height: 75px;
    margin-left: -3px;
}

.car-connector {
    position: absolute;
    left: -5px;
    top: 25px;
    width: 8px;
    height: 20px;
    background: #424242;
    border-radius: 2px;
    z-index: 5;
}

.car-roof {
    position: absolute;
    top: 0;
    left: 5px;
    width: 120px;
    height: 6px;
    background: linear-gradient(to bottom, #e0e0e0, #bdbdbd);
    border-radius: 3px 3px 0 0;
}

.passenger-car .car-body {
    position: absolute;
    top: 6px;
    left: 5px;
    width: 120px;
    height: 52px;
    background: linear-gradient(to bottom, #fafafa, #eeeeee);
    border: 1px solid #bdbdbd;
    border-radius: 0 0 3px 3px;
    overflow: hidden;
}

.car-red-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to bottom, #d32f2f, #c62828);
}

.car-upper-deck {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 18px;
}

.car-lower-deck {
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: 18px;
}

.window-row {
    display: flex;
    gap: 4px;
    padding: 0 10px;
    justify-content: flex-start;
}

.window-row.upper {
    padding-left: 26px;
}

.window-row span {
    width: 16px;
    height: 14px;
    background: linear-gradient(to bottom, #1565c0, #1976d2);
    border-radius: 2px;
    border: 1px solid #0d47a1;
}

.window-row.lower {
    padding-left: 30px;
}

.passenger-car .car-door {
    position: absolute;
    left: 8px;
    top: 10px;
    width: 14px;
    height: 36px;
    background: linear-gradient(to bottom, #e0e0e0, #bdbdbd);
    border: 1px solid #9e9e9e;
    border-radius: 2px;
}

.door-window {
    position: absolute;
    top: 4px;
    left: 2px;
    width: 8px;
    height: 12px;
    background: linear-gradient(to bottom, #1565c0, #1976d2);
    border-radius: 1px;
}

.class-number {
    position: absolute;
    right: 10px;
    bottom: 6px;
    font-size: 10px;
    font-weight: bold;
    color: #616161;
    font-family: Arial, sans-serif;
}

.car-undercarriage {
    position: absolute;
    bottom: 12px;
    left: 10px;
    width: 110px;
    height: 6px;
    background: #212121;
    border-radius: 2px;
}

.passenger-car .front-bogie {
    left: 12px;
}

.passenger-car .rear-bogie {
    right: 12px;
}

/* ==================== */
/* STATION / BAHNHOF    */
/* ==================== */
.station {
    position: absolute;
    bottom: 32px;
    right: 0;
    left: 0;
    z-index: 8;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
    pointer-events: none;
}

.station.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Platform / Perron */
.platform {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 200px;
    height: 12px;
    background: linear-gradient(to bottom, #9e9e9e, #757575);
    border-radius: 2px 2px 0 0;
}

.platform-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffd600;
    border-radius: 0 0 2px 2px;
}

/* Station Shelter / Unterstand */
.station-shelter {
    position: absolute;
    bottom: 12px;
    right: 40px;
    width: 120px;
}

.shelter-roof {
    width: 130px;
    height: 8px;
    background: linear-gradient(to bottom, #424242, #616161);
    border-radius: 2px;
    margin-left: -5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.shelter-posts {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.shelter-post {
    width: 4px;
    height: 50px;
    background: linear-gradient(to right, #616161, #9e9e9e, #616161);
    border-radius: 1px;
}

/* Station Name Sign */
.station-name-sign {
    position: absolute;
    bottom: 12px;
    right: 170px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    z-index: 15;
}

.station-name-sign .sign-post {
    width: 6px;
    height: 120px;
    background: linear-gradient(to right, #37474f, #546e7a);
    border-radius: 2px;
}

.sign-board {
    background: linear-gradient(to bottom, #1976d2, #1565c0);
    color: white;
    padding: 6px 16px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
    border: 2px solid #0d47a1;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: -2px;
}

/* Platform Bench */
.platform-bench {
    position: absolute;
    bottom: 14px;
    right: 75px;
}

.bench-seat {
    width: 30px;
    height: 6px;
    background: linear-gradient(to bottom, #8d6e63, #6d4c41);
    border-radius: 2px;
}

.bench-legs {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
}

.bench-leg {
    width: 3px;
    height: 8px;
    background: #5d4037;
}

/* Station Clock (SBB style) */
.station-clock {
    position: absolute;
    bottom: 12px;
    right: 95px;
    z-index: 15;
}

.clock-face {
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid #333;
    border-radius: 50%;
    position: relative;
}

.clock-post {
    width: 4px;
    height: 100px;
    background: #333;
    margin: 0 auto;
}

.clock-hand {
    position: absolute;
    background: #333;
    transform-origin: bottom center;
    left: 50%;
    bottom: 50%;
}

.clock-hand.hour {
    width: 2px;
    height: 5px;
    margin-left: -1px;
    transform: rotate(-30deg);
}

.clock-hand.minute {
    width: 1.5px;
    height: 7px;
    margin-left: -0.75px;
    transform: rotate(90deg);
}

.clock-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #d32f2f;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Journey Dialog */
.journey-dialog {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.journey-dialog.visible {
    opacity: 1;
    pointer-events: all;
}

.dialog-content {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    text-align: center;
    border: 3px solid var(--sbb-red);
}

.dialog-content h2 {
    font-family: 'Mountains of Christmas', cursive;
    color: #d32f2f;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.dialog-content p {
    margin-bottom: 15px;
    color: #555;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.choice-btn {
    background: linear-gradient(to bottom, #ef5350, #d32f2f);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.choice-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.choice-btn:active {
    transform: translateY(0);
}

.dialog-content.wrong {
    animation: dialogShake 0.5s ease;
    border-color: #ff5722;
}

@keyframes dialogShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    60% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
}

/* Reveal Scene */
.reveal-content {
    text-align: center;
    width: 100%;
}

.matterhorn-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
}

.trip-details {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    font-size: 1.1rem;
}

.trip-details li {
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 3px solid var(--accent-gold);
}

.love-msg {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 2rem;
    color: var(--accent-red);
    margin-top: 20px;
}

/* Utility */
.hidden {
    display: none !important;
}

.blink {
    animation: blink 2s infinite;
}

.blink-slow {
    animation: blink 4s infinite;
}

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

/* ==================== NEW GAME STYLES ==================== */

/* Quiz Button Styling */
.choice-btn.quiz-btn {
    font-size: 0.95rem;
    padding: 12px 18px;
    margin: 6px;
}

/* Correct Answer Animation */
.dialog-content.correct {
    animation: correctPulse 0.5s ease;
    border-color: #4caf50;
}

@keyframes correctPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px rgba(76, 175, 80, 0.5); }
}

/* Luggage Display */
.luggage-display {
    margin: 15px 0;
}

.packed-items-show {
    font-size: 2.5rem;
    letter-spacing: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
}

.luggage-result {
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 10px;
    margin: 10px 0;
}

.luggage-result.success {
    background: rgba(76, 175, 80, 0.2);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.luggage-result.warning {
    background: rgba(255, 193, 7, 0.2);
    color: #ffd54f;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

/* Ticket Control Animation */
.ticket-check-animation {
    padding: 20px;
}

.ticket-visual {
    margin: 15px 0;
}

.ticket-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 20px 30px;
    border-radius: 12px;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.ticket-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sbb-red);
}

.ticket-from {
    color: #666;
}

.ticket-arrow {
    color: var(--sbb-red);
    font-size: 1.5rem;
}

.ticket-to {
    color: #333;
    transition: all 0.5s ease;
}

.ticket-to.revealed {
    color: var(--sbb-red);
    font-weight: 700;
    font-size: 1.4rem;
    animation: revealPulse 0.5s ease;
}

@keyframes revealPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.checking-text {
    margin-top: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.checking-text.success {
    color: #81c784;
    font-size: 1.1rem;
}

/* Continue Button */
.choice-btn.continue-btn {
    margin-top: 15px;
    animation: fadeIn 0.5s ease;
}

.choice-btn.destination-btn {
    background: linear-gradient(135deg, #4caf50, #388e3c);
    font-size: 1.1rem;
    padding: 15px 30px;
}

.choice-btn.destination-btn:hover {
    background: linear-gradient(135deg, #66bb6a, #43a047);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Final Button */
.choice-btn.final-btn {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #333;
    font-size: 1.2rem;
    padding: 18px 35px;
    animation: finalPulse 2s infinite;
}

.choice-btn.final-btn:hover {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

@keyframes finalPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(255, 215, 0, 0.6); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
