/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky-blue: #5BC8F5;
  --sky-mid: #7DD6F7;
  --sky-light: #A8E8FF;
  --orange: #FF9800;
  --orange-dark: #F57C00;
  --purple: #7B6CF6;
  --purple-dark: #5A4FD1;
  --purple-light: #9B8FF8;
  --white: #FFFFFF;
  --text-dark: #2D2D6B;
  --green: #4CAF50;
  --teal: #26C6DA;
}

html, body {
  width: 100%; height: 100%; overflow: hidden;
  font-family: 'Nunito', sans-serif;
  background: var(--sky-blue);
}

/* ===== SCREENS ===== */
.screen {
  position: fixed; inset: 0;
  display: none; opacity: 0;
  transition: opacity 0.4s ease;
}
.screen.active { display: flex; opacity: 1; }
.screen.fade-in { animation: fadeIn 0.4s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }

/* ===== LANG BADGE ===== */
.lang-badge {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple);
  color: white; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.5px; z-index: 10; cursor: pointer;
  box-shadow: 0 4px 12px rgba(91,78,220,0.4);
}

/* ===== SPLASH SCREEN ===== */
.splash-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #5BC8F5 0%, #7DD6F7 50%, #5BC8F5 100%);
  position: relative; display: flex; align-items: center; justify-content: center;
}

.tiles-grid {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.tile {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  animation: tileFloat linear infinite;
}
@keyframes tileFloat {
  0% { transform: translateY(0) rotate(var(--rot)); opacity: 0.2; }
  50% { opacity: 0.35; }
  100% { transform: translateY(-20px) rotate(calc(var(--rot) + 5deg)); opacity: 0.2; }
}

.splash-center { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.logo-bubble {
  background: var(--orange);
  border-radius: 60px;
  padding: 32px 64px 40px;
  position: relative;
  box-shadow: 0 12px 40px rgba(255,152,0,0.4);
  animation: bubblePop 0.8s cubic-bezier(0.34,1.56,0.64,1) both;
  cursor: pointer;
}
.logo-bubble::after {
  content: '';
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 28px solid var(--orange);
}
@keyframes bubblePop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.bubble-face {
  position: absolute; left: 32px; bottom: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.eye {
  width: 14px; height: 8px; border-radius: 50% 50% 0 0;
  border: 3px solid #1a1a1a; border-bottom: none;
  display: inline-block; margin: 0 3px;
}
.nose {
  width: 8px; height: 8px; border-radius: 50%;
  border: 2px solid #1a1a1a;
  display: block; margin-top: 4px;
}
.bubble-face-row { display: flex; }

.logo-text {
  font-family: 'Comfortaa', cursive;
  font-size: 72px; color: white; letter-spacing: -2px;
  line-height: 1; position: relative; z-index: 1;
}
.logo-text sup { font-size: 36px; vertical-align: super; }

.splash-labels {
  position: absolute; bottom: 60px; left: 60px;
  display: flex; flex-direction: column; gap: 8px; z-index: 2;
}
.label-tag {
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 14px; font-weight: 700;
  color: var(--text-dark); letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

/* ===== CLOUDS ===== */
.clouds-layer { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cloud {
  position: absolute;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 60%, transparent 100%);
  border-radius: 50%;
  filter: blur(4px);
}
.c1 { width: 220px; height: 100px; top: 5%; right: 20%; animation: cloudDrift 8s ease-in-out infinite; }
.c2 { width: 160px; height: 75px; top: 15%; right: 5%; animation: cloudDrift 11s ease-in-out infinite reverse; }
.c3 { width: 200px; height: 90px; bottom: 20%; right: 15%; animation: cloudDrift 9s ease-in-out infinite; }
.c4 { width: 140px; height: 65px; bottom: 25%; left: 40%; animation: cloudDrift 7s ease-in-out infinite reverse; }
@keyframes cloudDrift {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(12px) translateY(-6px); }
}

/* ===== LOGIN / SKY BG ===== */
.login-bg, .sky-bg {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #87CEEB 0%, #B0E2F5 50%, #D4F1FF 100%);
  position: relative;
}

.login-logo {
  position: absolute; top: 28px; left: 50%; transform: translateX(-50%);
  font-family: 'Comfortaa', cursive;
  font-size: 36px; color: rgba(255,255,255,0.9);
  letter-spacing: -1px; z-index: 2;
}
.login-logo sup { font-size: 18px; }

.login-form {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 380px; display: flex; flex-direction: column; gap: 16px;
  z-index: 2;
}
.field-wrap { width: 100%; }
.login-field {
  width: 100%; padding: 20px 28px;
  border: 3px solid rgba(123,108,246,0.5);
  border-radius: 50px;
  background: rgba(123,108,246,0.75);
  color: white; font-size: 20px; font-weight: 600;
  font-family: 'Nunito', sans-serif;
  outline: none; letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.login-field::placeholder { color: rgba(255,255,255,0.85); }
.login-field:focus { border-color: white; background: rgba(123,108,246,0.9); }

.btn-login-submit {
  padding: 18px; border-radius: 50px;
  background: linear-gradient(135deg, #7B6CF6, #5A4FD1);
  color: white; font-size: 18px; font-weight: 800;
  border: none; cursor: pointer; letter-spacing: 2px;
  font-family: 'Nunito', sans-serif;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 20px rgba(91,78,220,0.4);
  margin-top: 8px;
}
.btn-login-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(91,78,220,0.5); }
.btn-login-submit:active { transform: scale(0.97); }

.register-link {
  text-align: center; color: rgba(255,255,255,0.9);
  font-size: 16px; font-weight: 600;
  cursor: pointer; margin-top: 4px;
  text-decoration: underline;
}
.register-link:hover { color: white; }

.error-msg { color: #FF6B6B; font-size: 14px; text-align: center; min-height: 20px; font-weight: 600; }

.settings-btn {
  position: absolute; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(123,108,246,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px; color: white;
  backdrop-filter: blur(6px);
}

/* ===== CHOOSE SUBJECT ===== */
.top-bar {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px 0;
}
.user-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,152,0,0.4);
  overflow: hidden; flex-shrink: 0;
}
.user-avatar.small { width: 52px; height: 52px; font-size: 28px; }
.avatar-planet { font-size: inherit; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }

.user-label { font-size: 14px; font-weight: 700; color: var(--orange); }
.user-label.orange { color: var(--orange); }

.logo-small {
  font-family: 'Comfortaa', cursive;
  font-size: 28px; color: rgba(100,100,150,0.7);
  letter-spacing: -1px; margin-left: auto; margin-right: 60px;
}
.logo-small sup { font-size: 14px; }

.subject-title {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; z-index: 2;
}
.cloud-title-small {
  font-family: 'Comfortaa', cursive;
  font-size: 40px; color: var(--orange);
  text-shadow: 2px 2px 0 rgba(255,152,0,0.3);
}
.cloud-title-big {
  font-family: 'Comfortaa', cursive;
  font-size: 90px;
  color: white;
  text-shadow:
    3px 3px 0 rgba(150,150,200,0.4),
    0 0 30px rgba(255,255,255,0.8),
    -2px -2px 0 rgba(200,200,255,0.5);
  line-height: 0.9;
  letter-spacing: -2px;
}

.subject-btns {
  position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%);
  display: flex; gap: 80px; z-index: 2;
}
.subject-btn {
  padding: 22px 48px; border-radius: 50px;
  background: linear-gradient(135deg, rgba(123,108,246,0.85), rgba(90,79,209,0.9));
  color: white; font-size: 22px; font-weight: 800;
  border: 3px solid rgba(255,255,255,0.4);
  cursor: pointer; letter-spacing: 1px;
  font-family: 'Comfortaa', cursive;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(91,78,220,0.4);
  backdrop-filter: blur(8px);
}
.subject-btn:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 14px 32px rgba(91,78,220,0.5); }
.subject-btn:active { transform: scale(0.97); }

.sound-btn { font-size: 24px; cursor: pointer; }
.corner-br { position: absolute; bottom: 24px; right: 24px; z-index: 2; }

/* ===== FULL LAYOUT WITH SIDEBAR ===== */
.full-layout { display: flex !important; }
.sky-bg.full-layout { width: 100%; height: 100%; }

.sidebar {
  width: 140px; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 8px;
  border-right: 2px solid rgba(255,255,255,0.3);
  z-index: 5;
}
.sidebar-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 8px; border-radius: 16px;
  cursor: pointer; transition: all 0.2s;
  position: relative;
}
.sidebar-item:hover, .sidebar-item.active {
  background: rgba(255,255,255,0.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.sidebar-icon { font-size: 40px; line-height: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.sidebar-label {
  font-size: 11px; font-weight: 700; color: white;
  text-align: center; margin-top: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.main-content {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  padding: 0 24px 24px; position: relative; z-index: 2;
  display: flex; flex-direction: column;
}
.main-content::-webkit-scrollbar { width: 6px; }
.main-content::-webkit-scrollbar-thumb { background: rgba(123,108,246,0.4); border-radius: 3px; }

.top-bar-inner {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0 8px; flex-shrink: 0;
}

.subject-heading {
  text-align: center; padding: 8px 0 16px;
  font-family: 'Comfortaa', cursive;
  font-size: 52px;
  color: white;
  text-shadow: 3px 3px 0 rgba(150,150,200,0.4), 0 0 20px rgba(255,255,255,0.6);
}

/* ===== TASK BUTTONS ===== */
.task-buttons { display: flex; flex-direction: column; gap: 14px; max-width: 740px; }
.task-row { display: flex; gap: 16px; }
.task-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 28px; border-radius: 50px;
  border: none; cursor: pointer;
  font-family: 'Comfortaa', cursive;
  font-size: 20px; letter-spacing: 0.5px;
  transition: transform 0.15s, box-shadow 0.15s;
  flex: 1;
}
.task-btn.primary {
  background: linear-gradient(135deg, #7B6CF6, #5A4FD1);
  color: white;
  box-shadow: 0 6px 20px rgba(91,78,220,0.35);
}
.task-btn.secondary {
  background: rgba(150,140,230,0.5);
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.3);
  flex-direction: column; gap: 2px; align-items: flex-start;
}
.task-btn.start-btn {
  background: linear-gradient(135deg, #FF7043, #FF5722);
  color: white; flex: 0 0 auto; min-width: 200px;
  box-shadow: 0 6px 20px rgba(255,87,34,0.4);
}
.task-btn:hover { transform: translateY(-3px); }
.task-btn:active { transform: scale(0.97); }
.task-icon { font-size: 22px; }
.btn-top { font-size: 18px; }
.btn-sub { font-size: 13px; font-family: 'Nunito', sans-serif; }

/* ===== PLANET CARDS ===== */
.planet-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 500px; margin: 0 auto;
}
.planet-card {
  background: rgba(255,255,255,0.2);
  border-radius: 24px; padding: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  border: 3px solid rgba(255,255,255,0.3);
  aspect-ratio: 1;
}
.planet-card:hover, .planet-card.selected {
  background: rgba(255,255,255,0.45);
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border-color: white;
}
.planet { font-size: 80px; text-align: center; animation: planetBob 3s ease-in-out infinite; }
@keyframes planetBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== CUSTOMIZE ===== */
.customize-layout { display: flex; gap: 20px; align-items: flex-start; }
.accessory-list { width: 220px; display: flex; flex-direction: column; gap: 10px; }
.acc-section { font-size: 14px; font-weight: 800; color: white; padding: 4px 0; }
.acc-options { display: flex; flex-wrap: wrap; gap: 6px; }
.acc-btn {
  padding: 8px 14px; border-radius: 20px;
  background: rgba(123,108,246,0.7); color: white;
  border: 2px solid rgba(255,255,255,0.3);
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all 0.15s;
}
.acc-btn:hover, .acc-btn.active { background: var(--purple-dark); border-color: white; }
.customize-preview { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.big-planet-preview {
  background: rgba(255,255,255,0.2); border-radius: 28px;
  padding: 28px; display: flex; flex-direction: column;
  align-items: center; gap: 8px; min-width: 200px;
}
.big-planet-emoji { font-size: 120px; animation: planetBob 2s ease-in-out infinite; }
.planet-name {
  font-family: 'Comfortaa', cursive; font-size: 28px; color: white;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.15);
}
.other-chars { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.small-planet { font-size: 52px; cursor: pointer; transition: transform 0.2s; opacity: 0.7; }
.small-planet:hover { transform: scale(1.2); opacity: 1; }

/* ===== TASKS LIST ===== */
.tasks-list { display: flex; flex-direction: column; gap: 12px; max-width: 600px; }
.task-item {
  background: rgba(255,255,255,0.25);
  border-radius: 20px; padding: 16px 24px;
  display: flex; align-items: center; gap: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.task-item.locked { opacity: 0.5; filter: grayscale(0.3); }
.task-status { font-size: 24px; }
.task-title { font-size: 18px; font-weight: 800; color: white; flex: 1; }
.task-go {
  padding: 10px 22px; border-radius: 30px;
  background: linear-gradient(135deg, #FF7043, #FF5722);
  color: white; border: none; cursor: pointer;
  font-family: 'Comfortaa', cursive; font-size: 15px;
}

/* ===== PROGRESS ===== */
.progress-layout {
  display: flex; gap: 40px; align-items: center;
  padding: 20px 0; flex: 1;
}
.progress-bar-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  position: relative;
}
.progress-bar-outer {
  width: 100px; height: 340px;
  background: rgba(255,255,255,0.3);
  border-radius: 20px; overflow: hidden;
  border: 3px solid rgba(255,255,255,0.5);
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
}
.progress-bar-fill {
  width: 100%; border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #66BB6A, #43A047);
  transition: height 1s cubic-bezier(0.34,1.56,0.64,1);
}
.progress-bar-inner {
  width: 100%;
  background: linear-gradient(180deg, #26C6DA, #00ACC1);
  transition: height 1s ease;
  position: absolute; top: 0;
}
.progress-pct {
  font-size: 22px; font-weight: 900; color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.progress-planet-icon { font-size: 52px; animation: planetBob 2s ease-in-out infinite; }

.progress-info { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.progress-title {
  font-family: 'Comfortaa', cursive; font-size: 32px; color: white;
  text-shadow: 2px 2px 0 rgba(100,100,180,0.3);
}
.level-name { font-size: 18px; font-weight: 800; color: var(--orange); }
.level-num {
  font-family: 'Comfortaa', cursive; font-size: 80px; color: white;
  text-shadow: 3px 3px 0 rgba(150,150,200,0.4), 0 0 20px rgba(255,255,255,0.6);
  line-height: 1;
}
.arrow-up {
  font-size: 36px; color: var(--orange);
  filter: drop-shadow(0 4px 8px rgba(255,152,0,0.5));
  transform: rotate(-30deg); display: inline-block;
}

/* ===== HINT BOX ===== */
.hint-box {
  background: rgba(100,110,220,0.5);
  border-radius: 16px; padding: 16px 20px;
  color: white; font-size: 15px; font-weight: 600;
  line-height: 1.5; max-width: 340px;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
}

/* ===== BOOKS ===== */
.books-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding: 8px 0;
}
.book-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer; transition: transform 0.2s;
}
.book-card:hover { transform: translateY(-6px) scale(1.04); }
.book-icon {
  width: 110px; height: 130px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  box-shadow: 4px 6px 16px rgba(0,0,0,0.2);
  position: relative;
}
.book-icon::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 12px; border-radius: 14px 0 0 14px;
  background: rgba(0,0,0,0.15);
}
.book-label {
  padding: 8px 16px; border-radius: 20px;
  background: rgba(100,110,220,0.45);
  color: white; font-size: 12px; font-weight: 800;
  letter-spacing: 0.5px; text-align: center;
  border: 2px solid rgba(255,255,255,0.3);
}
.search-btn {
  margin-left: auto; padding: 10px 20px; border-radius: 30px;
  background: rgba(123,108,246,0.6); color: white;
  border: 2px solid rgba(255,255,255,0.3);
  font-size: 14px; font-weight: 700; cursor: pointer;
}
.nav-arrow {
  position: absolute; bottom: 24px; font-size: 28px;
  background: rgba(255,87,34,0.8); color: white;
  border: none; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.nav-arrow.right { right: 24px; }

/* ===== GAMES ===== */
.games-row {
  display: flex; gap: 48px; align-items: flex-end;
  justify-content: center; padding: 20px 0;
}
.game-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  cursor: pointer; transition: transform 0.2s;
}
.game-card:hover { transform: translateY(-8px) scale(1.06); }
.game-icon { font-size: 80px; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2)); }
.game-label {
  padding: 10px 24px; border-radius: 30px;
  background: rgba(100,110,220,0.45);
  color: white; font-size: 15px; font-weight: 800;
  border: 2px solid rgba(255,255,255,0.3);
}
.coins-info {
  background: rgba(100,110,220,0.45); border-radius: 16px;
  padding: 14px 20px; color: white; font-size: 15px; font-weight: 600;
  max-width: 500px; margin: 0 auto;
  border: 2px solid rgba(255,255,255,0.3);
}

/* ===== QUIZ ===== */
.quiz-container {
  max-width: 600px; margin: 20px auto;
  display: flex; flex-direction: column; gap: 20px;
}
.quiz-question {
  background: rgba(255,255,255,0.3); border-radius: 20px;
  padding: 24px; font-size: 24px; font-weight: 800;
  color: white; text-align: center;
  border: 2px solid rgba(255,255,255,0.4);
}
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-opt {
  padding: 18px 28px; border-radius: 50px;
  background: rgba(123,108,246,0.7);
  color: white; border: 2px solid rgba(255,255,255,0.3);
  font-size: 20px; font-weight: 700; cursor: pointer;
  transition: all 0.15s; font-family: 'Nunito', sans-serif;
  text-align: center;
}
.quiz-opt:hover { background: rgba(90,79,209,0.9); transform: scale(1.02); }
.quiz-opt.correct { background: #4CAF50; }
.quiz-opt.wrong { background: #F44336; }
.quiz-result { font-size: 22px; font-weight: 800; color: white; text-align: center; min-height: 32px; }

/* ===== DIAGNOSTIC ===== */
.diag-container {
  display: flex; flex-direction: column; align-items: center; gap: 28px; padding: 40px 0;
}
.diag-info {
  background: rgba(255,255,255,0.3); border-radius: 20px;
  padding: 24px 32px; font-size: 18px; font-weight: 600;
  color: white; max-width: 500px; text-align: center;
  border: 2px solid rgba(255,255,255,0.4);
  line-height: 1.6;
}
.task-btn.large { font-size: 24px; padding: 22px 48px; }

/* ===== NOTIFICATION ===== */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  background: rgba(40,40,80,0.95); color: white;
  padding: 14px 28px; border-radius: 30px;
  font-size: 16px; font-weight: 700;
  z-index: 1000; pointer-events: none;
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.2s forwards;
}
@keyframes toastIn { from { opacity:0; transform: translateX(-50%) translateY(20px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
@keyframes toastOut { to { opacity:0; transform: translateX(-50%) translateY(20px); } }

/* Comfortaa bold weight for all heading/display elements */
.logo-text, .login-logo, .logo-small,
.cloud-title-small, .cloud-title-big, .subject-heading,
.subject-btn, .task-btn, .planet-name, .task-go,
.progress-title, .level-num { font-weight: 700; }
