* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: #0c1612;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}

#app {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: #000;
}

#game-canvas {
  display: block;
  width: 100%;
  height: 100%;
  background: #1c3a2e;
  position: relative;
  z-index: 1;
}

.hidden { display: none !important; }

#hud {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  display: flex;
  justify-content: center;
  padding-top: 24px;
  pointer-events: none;
}

#score {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 3px 0 rgba(0,0,0,0.5), 0 0 12px rgba(255,200,80,0.4);
  -webkit-text-stroke: 2px #1c3a2e;
}

.screen {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(40,70,40,0.55), rgba(8,14,10,0.92) 70%);
  color: #f4ecd8;
}

#screen-home {
  background: radial-gradient(ellipse at top, rgba(40,70,40,0.32), rgba(8,14,10,0.78) 70%);
  pointer-events: none;
}

#screen-home > * {
  pointer-events: auto;
}

.title {
  font-size: 44px;
  letter-spacing: 4px;
  margin: 0;
  color: #ffd166;
  text-shadow: 0 4px 0 #7a3b12, 0 0 24px rgba(255,150,40,0.5);
}

.title.small { font-size: 30px; }

.game-logo {
  display: block;
  width: min(260px, 82vw);
  height: auto;
  margin: 0 auto 6px;
  background: transparent;
  border: none;
  outline: none;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.45))
          drop-shadow(0 0 18px rgba(28, 58, 46, 0.35));
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.game-logo-sm {
  width: min(220px, 72vw);
  margin-bottom: 10px;
}

.subtitle {
  margin: 0 0 8px;
  color: #cfe0c8;
  font-size: 15px;
}

.hint {
  margin-top: 6px;
  font-size: 13px;
  color: #9db89a;
}

.menu-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: #2f4a36;
  color: #f4ecd8;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0,0,0,0.35);
  transition: transform 0.08s ease;
}

.btn:active { transform: translateY(3px); box-shadow: 0 1px 0 rgba(0,0,0,0.35); }

.btn-primary {
  background: linear-gradient(180deg, #ffd166, #f29e2e);
  color: #3a1e00;
}

.btn-how-to-play {
  background: linear-gradient(180deg, #8ed4f0, #4a9fc9);
  color: #0a2533;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
}

.btn-how-to-play:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.btn-icon {
  padding: 10px 16px;
  font-size: 20px;
}

.stat-row {
  display: flex;
  gap: 28px;
  margin: 4px 0 8px;
}

.stat { display: flex; flex-direction: column; align-items: center; }
.stat-label { font-size: 12px; color: #9db89a; text-transform: uppercase; letter-spacing: 1px; }
.stat-value { font-size: 28px; font-weight: 800; color: #ffd166; }

#screen-store {
  justify-content: flex-start;
  padding-top: 18px;
  overflow-y: auto;
}

.store-header {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.store-spacer { flex: 1; }
.store-header .title.small { flex: 1; margin: 0; }

.store-note {
  font-size: 12.5px;
  color: #9db89a;
  max-width: 380px;
  margin: 4px 0 10px;
}

.store-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  overflow-y: auto;
  padding-bottom: 24px;
}

.dino-card {
  background: rgba(20,32,22,0.75);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.dino-card.equipped { border-color: #ffd166; }
.dino-card.owned { opacity: 1; }

.dino-card canvas { width: 84px; height: 84px; }

.dino-name { font-weight: 700; font-size: 14px; }

.dino-rarity {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 999px;
}

.rarity-common { background: #3c4a3c; color: #cfe0c8; }
.rarity-uncommon { background: #1f5d3a; color: #b9f3cf; }
.rarity-rare { background: #1f4d7a; color: #bfe0ff; }
.rarity-epic { background: #5a2a7a; color: #e7c9ff; }
.rarity-legendary { background: #7a4d12; color: #ffe2a8; }
.rarity-mythic { background: linear-gradient(90deg,#7a1212,#b8860b); color: #ffe9b0; }

.dino-price { font-size: 13px; color: #ffd166; font-weight: 700; }

.dino-card .btn {
  font-size: 12.5px;
  padding: 8px 14px;
  margin-top: 2px;
}

.modal-top {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.modal-field {
  gap: 6px;
  text-align: left;
  margin: 12px 0;
}

.screen-solid {
  background: rgba(8, 14, 10, 0.98) !important;
}

.tourney-tabs {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 4px;
}

.tourney-tab {
  flex: 1;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: #9db89a;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.tourney-tab.active {
  background: rgba(58, 156, 90, 0.3);
  border-color: rgba(58, 156, 90, 0.5);
  color: #b9f3cf;
}

.tourney-description {
  font-size: 13px;
  color: #cfe0c8;
  line-height: 1.45;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tourney-detail-description {
  margin-top: 8px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tourney-desc-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #7a9a7a;
  margin-bottom: 6px;
}

.tourney-detail-description p {
  margin: 0;
  font-size: 14px;
  color: #f4ecd8;
  line-height: 1.5;
  white-space: pre-wrap;
}

#btn-admin-link {
  text-decoration: none;
  text-align: center;
  max-width: 400px;
}

.modal {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-card {
  background: #142016;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  max-width: 320px;
  text-align: center;
  color: #f4ecd8;
}

.modal-card h3 { margin-top: 0; color: #ffd166; }
.modal-card p { font-size: 13.5px; color: #cfe0c8; }

/* --- Auth & home --- */
.screen-top {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}

.bar-header {
  position: relative;
  top: 0;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.bar-header .title.small {
  flex: 1;
  margin: 0;
  font-size: 22px;
}

.home-top {
  justify-content: space-between;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-music {
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(20,32,22,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-music.muted {
  opacity: 0.72;
}

.home-user {
  font-size: 13px;
  color: #9db89a;
  max-width: 55%;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screen.scrollable {
  justify-content: flex-start;
  padding-top: 16px;
  overflow-y: auto;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin: 4px 0;
}

.auth-tab {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.12);
  background: transparent;
  color: #cfe0c8;
  cursor: pointer;
}

.auth-tab.active {
  background: #2f4a36;
  border-color: #ffd166;
  color: #ffd166;
}

.auth-form {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  font-size: 13px;
  color: #9db89a;
}

.auth-form input {
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(10,18,14,0.8);
  color: #f4ecd8;
}

.auth-form input:focus {
  outline: 2px solid #ffd166;
  outline-offset: 1px;
}

.password-field {
  position: relative;
  display: flex;
  align-items: center;
}

.password-field input {
  width: 100%;
  padding-right: 46px;
}

.btn-password-toggle {
  position: absolute;
  right: 8px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  padding: 0;
}

.btn-block {
  width: 100%;
  max-width: 320px;
}

.btn-ghost {
  background: transparent;
  box-shadow: none;
  color: #9db89a;
  font-size: 14px;
  padding: 8px 16px;
}

.btn-link {
  margin-top: 4px;
  padding: 0;
  border: none;
  background: none;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: none;
  width: 100%;
  text-align: center;
  font-family: inherit;
}

.btn-link:hover {
  color: #bfdbfe;
}

.auth-hint {
  margin: 0 0 4px;
  font-size: 13px;
  color: #9db89a;
  line-height: 1.45;
  text-align: center;
}

.btn-disabled {
  opacity: 0.65;
}

.form-msg {
  font-size: 13px;
  max-width: 320px;
  margin: 0;
}

.form-msg.error { color: #ff8a8a; }
.form-msg.success { color: #8fd9a8; }

.home-best {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 0 0 10px;
}

.home-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  position: relative;
}

.coming-soon-badge {
  position: absolute;
  right: 0;
  bottom: 52px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #7a3b12;
  color: #ffd166;
  padding: 3px 8px;
  border-radius: 999px;
}

.coming-soon-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 16px;
}

.coming-soon-icon { font-size: 56px; }
.coming-soon-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffd166;
  margin: 0;
}

/* --- Language picker --- */
.lang-slot {
  position: relative;
  flex-shrink: 0;
}

.btn-lang {
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(20,32,22,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lang-menu {
  position: absolute;
  top: 48px;
  right: 0;
  min-width: 160px;
  background: #142016;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  z-index: 20;
}

.lang-item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #f4ecd8;
  cursor: pointer;
}

.lang-item:hover,
.lang-item.active {
  background: #2f4a36;
  color: #ffd166;
}

/* --- Leaderboard --- */
.lb-head,
.lb-row {
  display: grid;
  grid-template-columns: 48px 1fr 72px;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 380px;
}

.lb-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9db89a;
  padding: 0 8px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}

.lb-list {
  width: 100%;
  max-width: 380px;
  padding-bottom: 24px;
}

.lb-row {
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 15px;
}

.lb-row:nth-child(odd) { background: rgba(255,255,255,0.03); }
.lb-row.top-1 .lb-rank { color: #ffd166; font-weight: 900; }
.lb-row.top-2 .lb-rank { color: #d4d4d4; font-weight: 800; }
.lb-row.top-3 .lb-rank { color: #cd7f32; font-weight: 800; }

.lb-rank { font-weight: 700; color: #9db89a; }
.lb-name { text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-score { text-align: right; font-weight: 800; color: #ffd166; }

.list-empty {
  font-size: 14px;
  color: #9db89a;
  padding: 24px 12px;
}

/* --- Tournaments --- */
.tourney-list {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
}

.tourney-card {
  background: rgba(20,32,22,0.75);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px;
  text-align: left;
}

.tourney-card.status-live { border-color: #3a9c5a; }
.tourney-card.status-upcoming { border-color: #4a6a9c; }

.tourney-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tourney-head strong { font-size: 16px; color: #f4ecd8; }

.badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #2f4a36;
  color: #b9f3cf;
  flex-shrink: 0;
}

.status-ended .badge { background: #3a3a3a; color: #aaa; }
.status-upcoming .badge { background: #1f4d7a; color: #bfe0ff; }

.tourney-meta {
  font-size: 12.5px;
  color: #9db89a;
  margin: 0 0 6px;
}

.tourney-meta.center { text-align: center; }

.tourney-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.tourney-actions .btn { font-size: 13px; padding: 8px 14px; }

.upcoming-tag {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.joined-tag {
  font-size: 12px;
  font-weight: 700;
  color: #8fd9a8;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #142016;
  border: 1px solid #3a9c5a;
  color: #b9f3cf;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  z-index: 30;
}

.admin-form { margin-top: 8px; }

.checkbox-row {
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
}

.checkbox-row input { width: auto; }

/* --- Admin panel (/admin) --- */
.admin-app {
  max-width: 640px;
}

.admin-bar .title.small {
  font-size: 20px;
}

.admin-user-line {
  width: 100%;
  max-width: 380px;
  text-align: left;
  font-size: 13px;
  color: #9db89a;
  margin: 0 0 12px;
}

.admin-section {
  width: 100%;
  max-width: 380px;
  margin-bottom: 20px;
}

.admin-section-title {
  font-size: 18px;
  color: #ffd166;
  margin: 0 0 10px;
  text-align: left;
  width: 100%;
}

.admin-standings-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.admin-standings-head .admin-section-title {
  margin: 0;
}

.admin-signout {
  margin: 8px 0 32px;
}

#admin-gate .btn-ghost,
#admin-denied .btn-ghost {
  margin-top: 8px;
}

#admin-gate a.btn,
#admin-denied a.btn {
  text-decoration: none;
  display: inline-block;
}

/* --- Tournament pro UI --- */
.tourney-list-pro {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 28px;
}

.tourney-card-pro {
  background: rgba(12, 22, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.tourney-card-pro.status-live {
  border-color: rgba(58, 156, 90, 0.65);
  box-shadow: 0 0 0 1px rgba(58, 156, 90, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.tourney-card-pro.status-upcoming {
  border-color: rgba(74, 106, 156, 0.55);
}

.tourney-banner-wrap {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #1a3a2e 0%, #2f4a36 50%, #1a2a4a 100%);
  overflow: hidden;
}

.tourney-banner-wrap.no-banner {
  height: 56px;
  background: linear-gradient(90deg, #1f4d3a, #2f4a36, #1f4d7a);
}

.tourney-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tourney-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tourney-title {
  margin: 0;
  font-size: 18px;
  color: #ffd166;
  font-weight: 800;
  line-height: 1.2;
}

.tourney-countdown {
  font-size: 15px;
  font-weight: 800;
  color: #b9f3cf;
  letter-spacing: 0.3px;
}

.tourney-countdown.countdown-done {
  color: #9db89a;
}

.tourney-schedule {
  font-size: 12px;
  color: #9db89a;
  line-height: 1.45;
  margin: 0;
}

.tourney-schedule-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #7a9a7a;
  margin-bottom: 3px;
}

.tourney-access {
  font-size: 12.5px;
  color: #cfe0c8;
  margin: 0;
}

.badge-live { background: #1f5d3a; color: #b9f3cf; }
.badge-upcoming { background: #1f4d7a; color: #bfe0ff; }
.badge-ended { background: #3a3a3a; color: #aaa; }

.tourney-detail-panel {
  width: 100%;
  max-width: 400px;
  margin-bottom: 12px;
}

#screen-tournament-detail .lb-head,
#screen-tournament-detail .lb-list {
  width: 100%;
  max-width: 400px;
  background: rgba(12, 22, 16, 0.85);
  border-radius: 12px;
}

#screen-tournament-detail .lb-head {
  padding: 10px 14px;
  margin-top: 4px;
}

#screen-tournament-detail .lb-list {
  padding: 4px 0 24px;
}

.tourney-detail-hero {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}

.tourney-detail-hero.no-banner {
  height: 48px;
}

.tourney-detail-countdown {
  font-size: 20px;
  font-weight: 900;
  color: #ffd166;
  margin: 8px 0;
}

.tourney-detail-schedule,
.tourney-detail-access {
  font-size: 13px;
  color: #9db89a;
  margin: 4px 0;
}

.modal-tourney-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffd166;
  margin: 0 0 10px;
}

.tz-note {
  width: 100%;
  max-width: 380px;
  text-align: left;
  margin: 0 0 10px;
}

.btn-danger {
  background: linear-gradient(180deg, #e85d5d, #b82a2a);
  color: #fff;
}

.btn-danger:active {
  transform: translateY(3px);
}

.tutorial-overlay {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(8, 14, 10, 0.88) 0%, rgba(8, 14, 10, 0.35) 45%, transparent 70%);
}

.tutorial-card {
  pointer-events: auto;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 18px 20px 20px;
  border-radius: 16px;
  background: rgba(16, 28, 22, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.tutorial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.tutorial-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #8ed4f0;
}

.btn-tutorial-x {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #cfe0c8;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.tutorial-step-num {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #9db89a;
}

.tutorial-text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.45;
  color: #f4ecd8;
}

.tutorial-action {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(74, 159, 201, 0.18);
  border: 1px solid rgba(142, 212, 240, 0.35);
  font-size: 14px;
  font-weight: 700;
  color: #8ed4f0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tutorial-action-done {
  background: rgba(80, 180, 100, 0.2);
  border-color: rgba(120, 220, 140, 0.45);
  color: #9fe8b0;
}

#btn-tutorial-finish {
  margin-top: 14px;
}
