body{background:var(--gradient-bg, linear-gradient(135deg, #0a0a0a, #1a1a1a));min-height:100vh;font-family:Inter,sans-serif;color:#fff;overflow-x:hidden;margin:0;padding:0;perspective:1000px}.journey-choice-section{min-height:100vh;display:flex;align-items:center;justify-content:center;background:transparent;position:relative}.journey-choice-glass{background:rgba(255,255,255,.08);border-radius:2rem;box-shadow:0 8px 32px #1f26875e;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.18);padding:3.5rem 4rem;text-align:center;max-width:500px;transform-style:preserve-3d;transform:translateZ(0);transition:all .6s cubic-bezier(.16,1,.3,1)}.journey-choice-glass:hover{transform:translateZ(20px);box-shadow:0 15px 35px #0000004d}.journey-choice-glass h1{font-size:2.8rem;font-weight:800;margin-bottom:1.5rem;background:var(--gradient-primary);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;text-transform:uppercase;letter-spacing:-.03em}.journey-choice-glass p{font-size:1.25rem;margin-bottom:2.5rem;color:#fffc;font-weight:400;line-height:1.6}.journey-choice-btns{display:flex;gap:2rem;justify-content:center;margin-top:2.5rem}.journey-btn{background:rgba(0,0,0,.2);color:#fff;border:1px solid rgba(255,255,255,.1);border-radius:1.5rem;padding:1.2rem 2.8rem;font-size:1.2rem;font-weight:600;cursor:pointer;box-shadow:0 2px 12px #0000001f;transition:all .3s cubic-bezier(.16,1,.3,1);position:relative;overflow:hidden;z-index:1}.journey-btn:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:var(--gradient-primary);z-index:-1;transform:scaleX(0);transform-origin:right;transition:transform .6s cubic-bezier(.16,1,.3,1)}.journey-btn:hover{transform:translateY(-5px) scale(1.03);box-shadow:0 10px 25px #00d4ff33;border:1px solid rgba(255,255,255,.3)}.journey-btn:hover:before{transform:scaleX(1);transform-origin:left}.journey-timeline-section{position:relative;min-height:100vh;width:100%;background:transparent;overflow-x:hidden;overflow-y:auto}#journey-canvas{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1;opacity:.7}.timeline-controls{position:fixed;bottom:40px;left:50%;transform:translate(-50%);display:flex;gap:20px;z-index:10}.timeline-controls button{background:rgba(255,255,255,.1);border:none;width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s ease;color:#fff;font-size:1.5rem;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}.timeline-controls button:hover{background:rgba(0,212,255,.2);transform:scale(1.1)}.timeline-controls button.back-btn{background:rgba(255,255,255,.15)}#timeline-container{position:relative;z-index:2;width:100%;min-height:100vh;padding:80px 20px;display:flex;flex-direction:column;align-items:center}.timeline-progress{position:fixed;top:0;left:0;height:4px;background:var(--gradient-primary);z-index:100;transition:width .3s ease}.timeline-dot{position:absolute;width:24px;height:24px;border-radius:50%;background:var(--gradient-primary);left:50%;transform:translate(-50%);box-shadow:0 0 15px #00d4ff80;cursor:pointer;z-index:10;transition:all .3s cubic-bezier(.16,1,.3,1)}.timeline-dot.active{width:32px;height:32px;box-shadow:0 0 25px #00d4ffcc}.timeline-vertical-line{position:absolute;top:0;left:50%;transform:translate(-50%);height:100%;width:4px;background:rgba(255,255,255,.1);z-index:1}.timeline-card-wrapper{display:flex;width:100%;max-width:1200px;min-height:300px;align-items:center;justify-content:center;margin:100px 0;perspective:1000px}.timeline-card{background:rgba(255,255,255,.1);border-radius:24px;box-shadow:0 10px 30px #0003;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.1);padding:0;width:500px;min-height:300px;transform-style:preserve-3d;transform:translateZ(0) rotateY(0);transition:all .8s cubic-bezier(.16,1,.3,1);overflow:hidden;display:flex;flex-direction:column}.timeline-card:hover{transform:translateZ(40px) rotateY(5deg);box-shadow:0 20px 40px #0006;border:1px solid rgba(255,255,255,.25)}.timeline-card-img{width:100%;height:280px;overflow:hidden}.timeline-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.16,1,.3,1)}.timeline-card:hover .timeline-card-img img{transform:scale(1.05)}.timeline-card-content{padding:2rem 2.5rem;position:relative}.timeline-year-badge{position:absolute;top:-30px;right:20px;background:var(--gradient-primary);color:#fff;font-weight:700;font-size:1.8rem;padding:.5rem 1.5rem;border-radius:16px;box-shadow:0 8px 20px #0003}.timeline-card-content h3{font-size:2rem;margin:0 0 1rem;color:#fff}.timeline-card-content p{font-size:1.1rem;line-height:1.6;color:#fffc;margin:0}.particle{position:absolute;border-radius:50%;background:rgba(0,212,255,.2);pointer-events:none}@media (max-width: 768px){.journey-choice-glass{padding:2rem 1.5rem;max-width:90%;margin:0 15px}.journey-choice-glass h1{font-size:2rem}.journey-choice-btns{flex-direction:column;gap:1rem}.timeline-card-wrapper{margin:60px 0}.timeline-card{width:90%;min-height:auto}.timeline-card-img{height:200px}.timeline-card-content{padding:1.5rem}.timeline-controls{bottom:20px}.timeline-year-badge{font-size:1.5rem;padding:.4rem 1.2rem;top:-25px}}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes timelineEntrance{0%{opacity:0;transform:translateY(100px) scale(.8)}to{opacity:1;transform:translateY(0) scale(1)}}.timeline-fade-in{animation:fadeIn .8s cubic-bezier(.16,1,.3,1) forwards}.timeline-entrance{animation:timelineEntrance 1s cubic-bezier(.16,1,.3,1) forwards}
