/* ─── VARIABLES ─────────────────────────────────────── */ :root { --primary-gold: #D4AF37; --accent-orange: #F59E0B; --accent-purple: #8B5CF6; --accent-blue: #4fc3f7; --accent-green: #10b981; --dark-bg: #0F0F23; --glass-bg: rgba(255, 255, 255, 0.05); --glass-border: rgba(255, 255, 255, 0.1); --text-primary: #FFFFFF; --text-secondary: rgba(255, 255, 255, 0.8); --text-muted: rgba(255, 255, 255, 0.6); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background: linear-gradient(135deg, #0a0a1e 0%, #1a1a2e 50%, #0f3460 100%); color: var(--text-primary); min-height: 100vh; overflow-x: hidden; } body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%); pointer-events: none; z-index: -1; } .container { max-width: 1100px; margin: 0 auto; padding: 2rem; } /* ─── NAV ───────────────────────────────────────────── */ .nav-buttons { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; } .nav-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.25rem; background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 12px; color: white; cursor: pointer; font-weight: 600; text-decoration: none; transition: all .25s ease; } .nav-btn:hover { background: rgba(255,255,255,.1); transform: translateX(-3px); } .nav-btn.danger { background: #ef4444; border-color: #ef4444; } .nav-btn.danger:hover { background: #dc2626; } /* ─── PREMIUM NAV BAR ───────────────────────────────── */ .premium-nav-bar { background: linear-gradient(90deg, rgba(212,175,55,.12), rgba(139,92,246,.12)); border: 1.5px solid var(--accent-orange); border-radius: 18px; padding: 1.25rem; margin-bottom: 2rem; backdrop-filter: blur(20px); } .premium-nav-title { font-size: .85rem; font-weight: 700; color: var(--accent-orange); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: 1px; } .premium-nav-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem; } .premium-nav-link { display: flex; align-items: center; gap: .6rem; padding: .75rem; background: rgba(255,255,255,.04); border: 1px solid rgba(212,175,55,.25); border-radius: 10px; color: var(--text-primary); text-decoration: none; font-weight: 600; font-size: .9rem; transition: all .25s ease; } .premium-nav-link:hover { background: rgba(212,175,55,.15); border-color: var(--accent-orange); transform: translateY(-2px); } .premium-nav-link.active { background: var(--accent-orange); border-color: var(--accent-orange); color: white; } /* ─── HEADER ────────────────────────────────────────── */ .page-header { text-align: center; margin-bottom: 2.5rem; padding: 2.5rem 2rem; background: linear-gradient(135deg, rgba(245,158,11,.08), rgba(212,175,55,.08)); backdrop-filter: blur(20px); border: 1.5px solid var(--accent-orange); border-radius: 22px; } .phase-badge { display: inline-block; background: var(--accent-orange); color: white; padding: .4rem 1.2rem; border-radius: 20px; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .75rem; } .header-icon { font-size: 3.5rem; margin-bottom: .75rem; } .page-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; background: linear-gradient(135deg, var(--accent-orange), var(--primary-gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .75rem; } .page-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 650px; margin: 0 auto; line-height: 1.5; } /* ─── PROGRESS ──────────────────────────────────────── */ .progress-section { background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 18px; padding: 1.75rem; margin-bottom: 2.5rem; } .progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; } .progress-title { font-size: 1.15rem; font-weight: 700; } .progress-percentage { font-size: 1.8rem; font-weight: 700; color: var(--accent-orange); } .progress-track { width: 100%; height: 16px; background: rgba(0,0,0,.3); border-radius: 8px; overflow: hidden; margin-bottom: .5rem; } .progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent-orange), var(--primary-gold)); border-radius: 8px; transition: width .5s ease; } .progress-text { color: var(--text-muted); font-size: .9rem; } /* ─── SPOTIFY PLAYER ────────────────────────────────── */ .spotify-section { background: linear-gradient(135deg, rgba(29,185,84,.08), rgba(212,175,55,.06)); backdrop-filter: blur(20px); border: 1.5px solid rgba(29,185,84,.35); border-radius: 22px; padding: 2rem; margin-bottom: 2.5rem; } .spotify-header { text-align: center; margin-bottom: 1.5rem; } .spotify-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #1DB954; margin-bottom: .4rem; } .spotify-subtitle { color: var(--text-secondary); font-size: .95rem; } .spotify-embed { border-radius: 12px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.15); margin-bottom: 1.5rem; } .how-it-works { background: rgba(139,92,246,.08); border-left: 3px solid var(--accent-purple); padding: 1rem 1.25rem; border-radius: 0 10px 10px 0; color: var(--text-secondary); font-size: .9rem; line-height: 1.7; } .how-it-works strong { color: var(--primary-gold); } .spotify-cta { text-align: center; margin-top: 1.25rem; } .spotify-btn { display: inline-flex; align-items: center; gap: .5rem; background: #1DB954; color: white; padding: .75rem 1.5rem; border-radius: 24px; text-decoration: none; font-weight: 600; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 12px rgba(29,185,84,.3); } .spotify-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(29,185,84,.4); } /* ─── CHAPTER CARDS ─────────────────────────────────── */ .section-heading { font-size: 1.6rem; font-weight: 700; margin-bottom: .5rem; display: flex; align-items: center; gap: .6rem; } .section-subtext { text-align: center; color: var(--text-secondary); margin-bottom: 2rem; font-size: .95rem; } .chapter-list { display: grid; gap: 1.25rem; } .chapter-card { background: var(--glass-bg); backdrop-filter: blur(20px); border: 1.5px solid var(--glass-border); border-radius: 18px; overflow: hidden; transition: all .3s ease; } .chapter-card:hover { border-color: rgba(245,158,11,.4); } .chapter-card.completed { border-color: var(--accent-green); border-left: 4px solid var(--accent-green); } .chapter-header { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; cursor: pointer; transition: background .2s; } .chapter-header:hover { background: rgba(255,255,255,.03); } .chapter-number { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; color: white; background: var(--accent-orange); } .chapter-card.completed .chapter-number { background: var(--accent-green); } .chapter-info { flex: 1; min-width: 0; } .chapter-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .15rem; } .chapter-duration { color: var(--text-muted); font-size: .85rem; } .chapter-status { font-size: .85rem; font-weight: 600; flex-shrink: 0; white-space: nowrap; } /* Expandable content */ .chapter-content { padding: 0 1.5rem; max-height: 5000px; overflow: hidden; transition: max-height .35s ease, opacity .35s ease, padding .35s ease; opacity: 1; } .chapter-content.collapsed { max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0; } .content-section { margin-bottom: 1.5rem; } .content-section h4 { font-size: 1rem; font-weight: 700; color: var(--accent-orange); margin-bottom: .6rem; } .content-section p { color: var(--text-secondary); line-height: 1.65; } .reflection-list { padding-left: 1.25rem; } .reflection-list li { padding: .5rem 0; color: var(--text-secondary); line-height: 1.5; } /* Inline audio player */ .inline-player { display: flex; align-items: center; gap: 1rem; background: rgba(0,0,0,.25); border-radius: 12px; padding: 1rem; } .play-btn { padding: .6rem 1.25rem; background: linear-gradient(135deg, var(--accent-orange), #D97706); color: white; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; transition: all .2s; white-space: nowrap; font-size: .9rem; } .play-btn:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(245,158,11,.35); } .audio-status { color: var(--text-muted); font-size: .85rem; font-variant-numeric: tabular-nums; } /* Journal prompts */ .prompt-card { background: rgba(139,92,246,.06); border: 1px solid rgba(139,92,246,.2); padding: 1rem; border-radius: 12px; margin-bottom: .75rem; } .prompt-card p { color: var(--text-secondary); line-height: 1.55; margin-bottom: .5rem; } .journal-btn { padding: .5rem 1rem; background: linear-gradient(135deg, #8B5CF6, #6D28D9); color: white; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; font-size: .85rem; transition: all .2s; } .journal-btn:hover { transform: scale(1.04); box-shadow: 0 3px 12px rgba(139,92,246,.3); } /* Actions */ .chapter-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; } .mark-done-btn { padding: .75rem 1.75rem; background: linear-gradient(135deg, #10b981, #059669); color: white; border: none; border-radius: 12px; font-weight: 700; cursor: pointer; font-size: .95rem; transition: all .25s; } .mark-done-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,185,129,.35); } .badge-done { padding: .75rem 1.75rem; background: rgba(16,185,129,.15); color: #10b981; border: 1.5px solid #10b981; border-radius: 12px; font-weight: 700; font-size: .95rem; } /* Toggle */ .expand-btn { width: 100%; padding: .75rem; background: rgba(245,158,11,.06); border: none; border-top: 1px solid var(--glass-border); color: var(--accent-orange); font-weight: 600; cursor: pointer; transition: background .2s; font-size: .9rem; } .expand-btn:hover { background: rgba(245,158,11,.12); } /* ─── NEXT PHASE PREVIEW ────────────────────────────── */ .next-phase { margin-top: 3rem; padding: 2rem; background: rgba(139,92,246,.05); border: 1px solid rgba(139,92,246,.2); border-radius: 18px; text-align: center; } .next-phase h3 { color: var(--primary-gold); margin-bottom: .75rem; font-size: 1.2rem; } .next-phase p { color: var(--text-secondary); margin-bottom: .5rem; } .next-phase .unlock-text { color: var(--accent-purple); font-weight: 600; } /* ─── LOADING ───────────────────────────────────────── */ .loading { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 350px; gap: 1rem; } .spinner { width: 52px; height: 52px; border: 3px solid var(--glass-border); border-top-color: var(--accent-orange); border-radius: 50%; animation: spin .9s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } /* ─── TOAST ─────────────────────────────────────────── */ .toast { position: fixed; bottom: 24px; right: 24px; padding: 1rem 1.5rem; background: rgba(15,15,35,.95); backdrop-filter: blur(12px); color: white; border-radius: 12px; box-shadow: 0 6px 24px rgba(0,0,0,.4); opacity: 0; transform: translateY(16px); transition: all .3s ease; z-index: 9000; max-width: 380px; font-size: .9rem; } .toast.show { opacity: 1; transform: translateY(0); } .toast-success { border-left: 4px solid #10b981; } .toast-error { border-left: 4px solid #ef4444; } .toast-info { border-left: 4px solid #3b82f6; } /* ─── COMPLETION MODAL ──────────────────────────────── */ .completion-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.8); display: flex; align-items: center; justify-content: center; z-index: 9500; padding: 2rem; } .modal-content { background: linear-gradient(135deg, #1a1a2e, #0f3460); border: 2px solid var(--primary-gold); border-radius: 22px; padding: 3rem; max-width: 480px; text-align: center; } .modal-content h2 { font-size: 2rem; color: var(--primary-gold); margin-bottom: 1rem; } .modal-content p { color: var(--text-secondary); line-height: 1.6; margin-bottom: .75rem; } .modal-actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; justify-content: center; } .modal-btn { padding: .9rem 1.75rem; border: none; border-radius: 12px; font-weight: 700; cursor: pointer; transition: all .25s; font-size: .95rem; } .modal-btn.primary { background: var(--accent-orange); color: white; } .modal-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.3); } .modal-btn.secondary { background: rgba(255,255,255,.1); color: white; border: 1px solid var(--glass-border); } .modal-btn.secondary:hover { background: rgba(255,255,255,.15); } /* ─── RESPONSIVE ────────────────────────────────────── */ @media (max-width: 768px) { .container { padding: 1rem; } .page-header { padding: 1.75rem 1rem; } .page-title { font-size: 1.8rem; } .spotify-section { padding: 1.25rem; } .chapter-header { padding: 1rem; gap: .75rem; } .chapter-content { padding: 0 1rem; } .chapter-actions { flex-direction: column; } .mark-done-btn, .badge-done { width: 100%; text-align: center; } .inline-player { flex-direction: column; align-items: stretch; } .premium-nav-links { grid-template-columns: 1fr 1fr; } }
🔥 Premium Journey Navigation

Loading your progress…