* { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }
body { background: #0a0a0a; font-family: system-ui, -apple-system, sans-serif; display: flex; justify-content: center; height: 100%; }
#app { background: #0d1117; color: #e2e8f0; width: 100%; max-width: 420px; height: 100vh; display: flex; flex-direction: column; position: relative; }

/* HEADER */
.hdr { padding: 18px 16px 14px; display: flex; align-items: center; gap: 10px; background: #161b22; border-bottom: 1px solid #2d3748; flex-shrink: 0; }
.hdr-icon { width: 38px; height: 38px; background: #0066ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hdr-title { font-size: 15px; font-weight: 700; color: #e2e8f0; }
.hdr-sub { font-size: 10px; color: #d4a017; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* SCREENS */
.scr { flex: 1; overflow-y: auto; padding: 16px; flex-direction: column; gap: 14px; display: none; -webkit-overflow-scrolling: touch; }
.scr.on { display: flex; }

/* CARDS */
.card { background: #1c2230; border: 1px solid #2d3748; border-radius: 14px; padding: 16px; }
.hero { background: #1c2230; border: 1px solid #2d3748; border-radius: 14px; padding: 28px 16px 22px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; position: relative; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #0066ff, #d4a017); border-radius: 14px 14px 0 0; }
.hero-emoji { font-size: 44px; line-height: 1; }
.hero h2 { font-size: 20px; font-weight: 800; color: #e2e8f0; }
.hero p { font-size: 13px; color: #8892a4; line-height: 1.6; max-width: 220px; }

/* BUTTONS */
.btn-primary { background: #0066ff; color: #fff; border: none; border-radius: 10px; padding: 14px 20px; font-size: 15px; font-weight: 700; cursor: pointer; width: 100%; font-family: inherit; transition: opacity 0.15s; }
.btn-primary:hover { opacity: 0.9; }
.btn-primary:active { opacity: 0.8; }
.btn-secondary { background: transparent; color: #8892a4; border: 1px solid #2d3748; border-radius: 10px; padding: 12px 20px; font-size: 14px; cursor: pointer; width: 100%; font-family: inherit; transition: border-color 0.15s; }
.btn-secondary:hover { border-color: #0066ff; color: #e2e8f0; }
.back-btn { background: none; border: none; color: #8892a4; font-size: 13px; cursor: pointer; font-family: inherit; padding: 0; display: flex; align-items: center; gap: 4px; }
.back-btn:hover { color: #e2e8f0; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat-box { background: #1c2230; border: 1px solid #2d3748; border-radius: 12px; padding: 14px; text-align: center; }
.stat-num { font-size: 28px; font-weight: 800; color: #0066ff; }
.stat-lbl { font-size: 10px; color: #8892a4; text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }

/* STEPS */
.step { display: flex; gap: 10px; align-items: flex-start; }
.step-num { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: #0066ff; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.step p { font-size: 13px; color: #8892a4; line-height: 1.5; }

/* FORM */
.fgrp { display: flex; flex-direction: column; gap: 6px; }
.lbl { font-size: 11px; font-weight: 700; color: #8892a4; text-transform: uppercase; letter-spacing: .08em; }
.inp { background: #1c2230; border: 1px solid #2d3748; border-radius: 10px; color: #e2e8f0; padding: 11px 13px; font-size: 14px; width: 100%; outline: none; font-family: inherit; transition: border-color 0.15s; }
.inp:focus { border-color: #0066ff; }
textarea.inp { resize: vertical; min-height: 90px; line-height: 1.5; }
select.inp { cursor: pointer; }
.inp.err { border-color: #e53e3e; }

/* TAGS */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.tag { background: rgba(0,102,255,.15); color: #4d94ff; border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid rgba(0,102,255,.3); transition: background 0.15s; }
.tag:hover { background: rgba(0,102,255,.3); }

/* SESSION CARDS */
.sess-card { background: #1c2230; border: 1px solid #2d3748; border-left: 3px solid #0066ff; border-radius: 0 14px 14px 0; padding: 14px; }
.sess-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.sess-date { font-size: 12px; color: #8892a4; }
.sess-badge { font-size: 11px; font-weight: 700; color: #4d94ff; background: rgba(0,102,255,.15); border-radius: 20px; padding: 2px 10px; }
.sess-tech { font-size: 15px; font-weight: 700; color: #e2e8f0; margin-bottom: 3px; }
.sess-type { font-size: 10px; color: #d4a017; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.sess-notes { font-size: 12px; color: #8892a4; line-height: 1.5; }
.del-btn { background: none; border: none; cursor: pointer; color: #8892a4; padding: 4px 7px; border-radius: 6px; font-size: 13px; font-family: inherit; }
.del-btn:hover { color: #e53e3e; background: rgba(229,62,62,.1); }

/* EMPTY */
.empty { text-align: center; padding: 40px 16px; color: #8892a4; }
.empty-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.empty p { font-size: 14px; line-height: 1.6; }

/* ROW HEADER */
.row-hdr { display: flex; justify-content: space-between; align-items: center; }
.row-hdr h2 { font-size: 17px; font-weight: 800; color: #e2e8f0; }
.count-badge { font-size: 11px; color: #8892a4; background: #1c2230; border: 1px solid #2d3748; border-radius: 20px; padding: 3px 11px; }

/* PROGRESS */
.prog-card { background: #1c2230; border: 1px solid #2d3748; border-radius: 14px; padding: 16px; }
.prog-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.prog-row span { font-size: 12px; color: #8892a4; }
.prog-row strong { font-size: 13px; color: #4d94ff; }
.prog-track { background: #0d1117; border-radius: 20px; height: 8px; overflow: hidden; }
.prog-fill { height: 100%; border-radius: 20px; background: #0066ff; transition: width .4s; }
.legend { display: flex; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
.legend span { font-size: 11px; color: #8892a4; }

/* FILTERS */
.filter-row { display: flex; gap: 6px; flex-wrap: wrap; }
.f-btn { background: #1c2230; border: 1px solid #2d3748; border-radius: 20px; color: #8892a4; padding: 5px 12px; font-size: 11px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.15s; }
.f-btn.on { background: #0066ff; color: #fff; border-color: #0066ff; }

/* ADD ROW */
.add-row { display: flex; gap: 8px; }
.add-inp { background: #1c2230; border: 1px solid #2d3748; border-radius: 10px; color: #e2e8f0; padding: 11px 13px; font-size: 13px; flex: 1; outline: none; font-family: inherit; }
.add-inp:focus { border-color: #0066ff; }
.add-btn { background: #0066ff; color: #fff; border: none; border-radius: 10px; padding: 11px 16px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; white-space: nowrap; }
.add-btn:hover { opacity: 0.9; }

/* TECHNIQUE CARDS */
.tech-card { background: #1c2230; border: 1px solid #2d3748; border-radius: 12px; padding: 14px; }
.tech-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.tech-name { font-size: 14px; font-weight: 700; color: #e2e8f0; flex: 1; }
.stage-row { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.s-btn { border: 1px solid #2d3748; background: #0d1117; color: #8892a4; border-radius: 7px; padding: 5px 11px; font-size: 11px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.15s; }
.s-btn:hover { border-color: #0066ff; color: #e2e8f0; }
.s-btn.L { background: rgba(0,102,255,.2); color: #4d94ff; border-color: rgba(0,102,255,.4); }
.s-btn.D { background: rgba(212,160,23,.2); color: #d4a017; border-color: rgba(212,160,23,.4); }
.s-btn.C { background: rgba(56,161,105,.2); color: #38a169; border-color: rgba(56,161,105,.4); }

/* SYLLABUS CHECKBOX */
.syl-check-row { display: flex; align-items: flex-start; gap: 12px; }
.syl-checkbox { width: 26px; height: 26px; min-width: 26px; border-radius: 7px; border: 2px solid #2d3748; background: #0d1117; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s; margin-top: 1px; }
.syl-checkbox.checked { background: #38a169; border-color: #38a169; }
.syl-checkbox svg { opacity: 0; transition: opacity 0.15s; }
.syl-checkbox.checked svg { opacity: 1; }
.tech-card.done { border-color: rgba(56,161,105,.4); }
.tech-card.done .tech-name { color: #38a169; }
.notes-inp { background: #0d1117; border: 1px solid #2d3748; border-radius: 8px; color: #8892a4; padding: 8px 10px; font-size: 12px; width: 100%; outline: none; font-family: inherit; resize: none; line-height: 1.4; margin-top: 10px; }
.notes-inp:focus { border-color: #0066ff; color: #e2e8f0; }

/* NAV */
.nav { display: grid; grid-template-columns: repeat(4, 1fr); background: #161b22; border-top: 1px solid #2d3748; padding: 8px 0 12px; flex-shrink: 0; }
.nb { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 4px; color: #8892a4; font-size: 10px; font-family: inherit; transition: color 0.15s; }
.nb .nicon { font-size: 22px; line-height: 1; }
.nb.on { color: #4d94ff; }
.nb:hover { color: #e2e8f0; }

/* TOAST */
.toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); background: #38a169; color: #fff; padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 700; white-space: nowrap; opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 999; }
.toast.show { opacity: 1; }

/* UNDO TOAST */
.undo-toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); background: #1c2230; border: 1px solid #2d3748; color: #e2e8f0; padding: 10px 12px 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; white-space: nowrap; opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 1000; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.undo-toast.show { opacity: 1; pointer-events: auto; }
.undo-toast button { background: #0066ff; color: #fff; border: none; border-radius: 7px; padding: 6px 14px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }
.undo-toast button:hover { opacity: 0.9; }

.divider { height: 1px; background: #2d3748; }

/* PROFILE */
.profile-card { background: #1c2230; border: 1px solid #2d3748; border-radius: 14px; padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; }
.profile-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #0066ff, #d4a017); border-radius: 14px 14px 0 0; }
.profile-avatar { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 4px; border: 3px solid #0066ff; background: #0d1117; }
.profile-name { font-size: 22px; font-weight: 800; color: #e2e8f0; }
.belt-display { width: 100%; border-radius: 10px; padding: 14px; display: flex; flex-direction: column; align-items: center; gap: 4px; margin-top: 6px; }
.belt-display-name { font-size: 18px; font-weight: 800; color: #fff; }
.stripe-pip { width: 12px; height: 12px; border-radius: 50%; background: #d4a017; display: inline-block; margin: 0 2px; }
.stripe-pip.empty { background: rgba(255,255,255,0.2); }
.save-profile-btn { background: #0066ff; color: #fff; border: none; border-radius: 10px; padding: 14px; font-size: 15px; font-weight: 700; cursor: pointer; width: 100%; font-family: inherit; }
.save-profile-btn:active { opacity: 0.85; }

/* TIMELINE */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 14px; position: relative; padding-bottom: 22px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:last-child .timeline-line { display: none; }
.timeline-dot-col { display: flex; flex-direction: column; align-items: center; width: 14px; flex-shrink: 0; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; border: 2px solid #0d1117; }
.timeline-line { flex: 1; width: 2px; background: #2d3748; margin-top: 2px; min-height: 20px; }
.timeline-content { flex: 1; padding-bottom: 2px; }
.timeline-title { font-size: 13px; font-weight: 700; color: #e2e8f0; }
.timeline-date { font-size: 11px; color: #8892a4; margin-top: 1px; }
.timeline-sub { font-size: 11px; color: #8892a4; margin-top: 3px; line-height: 1.4; }
.timeline-edit-row { display: flex; gap: 6px; margin-top: 6px; }
.timeline-edit-row .del-btn { font-size: 11px; }

/* COMPETITION CARDS */
.comp-card { background: #0d1117; border: 1px solid #2d3748; border-radius: 12px; padding: 13px; margin-bottom: 8px; }
.comp-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.comp-name { font-size: 14px; font-weight: 700; color: #e2e8f0; flex: 1; }
.comp-place { font-size: 13px; font-weight: 700; color: #d4a017; }
.comp-date { font-size: 11px; color: #8892a4; margin-bottom: 6px; }
.comp-notes { font-size: 12px; color: #8892a4; line-height: 1.5; }

/* EDIT BUTTON */
.edit-btn { background: none; border: none; cursor: pointer; font-size: 13px; padding: 4px 6px; border-radius: 5px; }
.edit-btn:hover { background: rgba(0,102,255,.1); }

/* EDIT MODAL */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.75); z-index: 100; display: none; align-items: flex-end; justify-content: center; padding: 0 0 0 0; overflow: hidden; }
.modal-overlay.on { display: flex; }
.modal { background: #161b22; border: 1px solid #2d3748; border-radius: 20px 20px 0 0; padding: 20px; width: 100%; max-width: 480px; display: flex; flex-direction: column; gap: 14px; max-height: 90vh; overflow-y: auto; }
@media (min-width: 600px) { .modal { max-width: 520px; } }
@media (min-width: 1024px) { .modal { max-width: 460px; border-radius: 20px; margin-bottom: 40px; } }
.modal-title { font-size: 16px; font-weight: 800; color: #e2e8f0; }

/* CONFIDENCE BUTTONS */
.conf-btn { flex: 1; background: #0d1117; border: 1px solid #2d3748; border-radius: 8px; color: #8892a4; padding: 8px 4px; font-size: 11px; font-weight: 600; cursor: pointer; font-family: inherit; text-align: center; transition: all 0.15s; }

/* CATEGORY CHIPS */
.cat-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.cat-chip { background: #0d1117; border: 1px solid #2d3748; border-radius: 20px; color: #8892a4; padding: 6px 12px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.cat-chip.on { background: rgba(0,102,255,.18); color: #4d94ff; border-color: rgba(0,102,255,.5); }
.cat-pill { display: inline-block; background: rgba(0,102,255,.12); color: #4d94ff; border-radius: 5px; padding: 2px 8px; font-size: 10px; font-weight: 700; margin-right: 5px; margin-bottom: 4px; }
.conf-btn.active-drilling { background: rgba(0,102,255,.2); color: #4d94ff; border-color: rgba(0,102,255,.5); }
.conf-btn.active-rolling { background: rgba(212,160,23,.2); color: #d4a017; border-color: rgba(212,160,23,.5); }
.conf-btn.active-comp { background: rgba(56,161,105,.2); color: #38a169; border-color: rgba(56,161,105,.5); }

/* STATS CHARTS */
.bar-col { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.bar-fill { width: 100%; border-radius: 4px 4px 0 0; background: #0066ff; min-height: 2px; transition: height .3s; }
.bar-lbl { font-size: 9px; color: #8892a4; text-align: center; }
.bar-val { font-size: 10px; color: #4d94ff; font-weight: 700; }
.tech-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tech-row-name { font-size: 12px; color: #e2e8f0; width: 110px; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tech-bar-track { flex: 1; background: #0d1117; border-radius: 20px; height: 8px; }
.tech-bar-fill { height: 100%; border-radius: 20px; background: #0066ff; }
.tech-count { font-size: 11px; color: #8892a4; width: 20px; text-align: right; flex-shrink: 0; }
.type-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.type-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.type-name { font-size: 12px; color: #e2e8f0; flex: 1; }
.type-count { font-size: 12px; font-weight: 700; color: #4d94ff; }
.syl-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.empty-stat { font-size: 13px; color: #8892a4; text-align: center; padding: 16px 0; }

/* STREAK */
.streak-card { background: #1c2230; border: 1px solid #2d3748; border-radius: 14px; padding: 16px; position: relative; }
.streak-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #f97316, #d4a017); }
.streak-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.streak-num { font-size: 42px; font-weight: 900; color: #f97316; line-height: 1; }
.streak-label { font-size: 11px; color: #8892a4; text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.streak-badge { background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.3); border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 700; color: #f97316; }
.week-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.day-btn { background: #0d1117; border: 1px solid #2d3748; border-radius: 8px; padding: 8px 2px; display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.day-btn .day-name { font-size: 9px; color: #8892a4; text-transform: uppercase; font-weight: 700; }
.day-btn .day-dot { width: 10px; height: 10px; border-radius: 50%; background: #2d3748; transition: background 0.15s; overflow: hidden; }
.day-btn.trained { background: rgba(249,115,22,.15); border-color: rgba(249,115,22,.4); }
.day-btn.trained .day-dot { background: #f97316; }
.day-btn.trained .day-name { color: #f97316; }
.day-btn.today { border-color: #0066ff; }
.day-btn.today .day-name { color: #4d94ff; }
.week-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.week-nav-btn { background: none; border: 1px solid #2d3748; border-radius: 8px; color: #8892a4; padding: 4px 10px; font-size: 12px; cursor: pointer; font-family: inherit; }
.week-nav-btn:hover { border-color: #0066ff; color: #e2e8f0; }
.week-label { font-size: 12px; font-weight: 700; color: #e2e8f0; }

/* SPLASH SCREEN */
.splash { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #0d1117; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; z-index: 999; transition: opacity 0.8s ease; }
.splash.hide { opacity: 0; pointer-events: none; }
.splash-icon { width: 80px; height: 80px; background: #0066ff; border-radius: 22px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(0,102,255,.4); animation: splashpulse 1.5s infinite; }
.splash-title { font-size: 52px; font-weight: 900; color: #e2e8f0; letter-spacing: 8px; }
.splash-slogan { font-size: 12px; font-weight: 700; color: #d4a017; letter-spacing: 6px; text-transform: uppercase; }
.splash-bar { width: 60px; height: 3px; background: linear-gradient(90deg, #0066ff, #d4a017); border-radius: 2px; margin-top: 4px; }
@keyframes splashpulse { 0%,100% { box-shadow: 0 0 30px rgba(0,102,255,.3); } 50% { box-shadow: 0 0 70px rgba(0,102,255,.7); } }

/* NAV */
.nav { display: grid; background: #161b22; border-top: 1px solid #2d3748; padding: 8px 0 12px; flex-shrink: 0; }
.nb { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 2px; color: #8892a4; font-size: 9px; font-family: inherit; transition: color 0.15s; }
.nb svg { width: 20px; height: 20px; }
.nb.on { color: #0066ff; }
.nb:hover { color: #e2e8f0; }

/* WELCOME / ONBOARDING */
.welcome { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #0d1117; z-index: 998; display: flex; flex-direction: column; max-width: 420px; margin: 0 auto; }
.welcome.hide { display: none; }
.welcome-slides { flex: 1; overflow: hidden; position: relative; }
.welcome-slide { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 32px 24px; text-align: center; gap: 16px; opacity: 0; transform: translateX(100%); transition: all 0.4s ease; }
.welcome-slide.active { opacity: 1; transform: translateX(0); }
.welcome-slide.prev { opacity: 0; transform: translateX(-100%); }
.welcome-icon { width: 80px; height: 80px; border-radius: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.welcome-title { font-size: 26px; font-weight: 900; color: #e2e8f0; line-height: 1.2; }
.welcome-sub { font-size: 14px; color: #8892a4; line-height: 1.7; max-width: 280px; }
.welcome-dots { display: flex; gap: 8px; justify-content: center; padding: 16px 0; }
.welcome-dot { width: 8px; height: 8px; border-radius: 50%; background: #2d3748; transition: all 0.3s; }
.welcome-dot.on { background: #0066ff; width: 22px; border-radius: 4px; }
.welcome-footer { padding: 16px 24px 32px; display: flex; gap: 10px; }
.welcome-skip { background: transparent; color: #8892a4; border: 1px solid #2d3748; border-radius: 10px; padding: 13px; font-size: 14px; cursor: pointer; font-family: inherit; flex: 1; }
.welcome-next { background: #0066ff; color: #fff; border: none; border-radius: 10px; padding: 13px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; flex: 2; transition: opacity 0.15s; }
.welcome-next:active { opacity: 0.85; }
