* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #1d1a49;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  color: #ffffff;
}

.main-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  background: #1d1a49;
}

@media (min-width: 425px) {
  .main-wrapper {
    border-left: 1px solid #2d2a5a;
    border-right: 1px solid #2d2a5a;
    max-width: 425px;
  }
}

.main-content {
  padding: 16px;
}

@media (min-width: 425px) {
  .main-content {
    padding: 16px;
  }
}

/* AD Container Styles */
.ads-container {
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 0;
  border: 1px solid #2d2a5a;
  border-left: none;
  border-right: none;
}

.ad-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 3px;
  color: #8b89b0;
  margin-bottom: 8px;
}

.ad-unit-wrapper {
  width: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ad-unit-wrapper ins.adsbygoogle {
  display: block;
  width: 100%;
  min-height: 250px;
  background: transparent;
}

@media (max-width: 424px) {
  .ad-unit-wrapper {
    min-height: 280px;
  }
  .ad-unit-wrapper ins.adsbygoogle {
    min-height: 280px;
  }
}

/* Quick Start Card */
.quick-card {
  background: #2a2758;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #3d3a6b;
}
.quick-header {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quick-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc00, #ffa500);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #1d1a49;
  margin-bottom: 10px;
}

.quick-reward {
  font-size: 15px;
  color: #a8a6d0;
  display: block;
}

.quiz-progress {
  margin-bottom: 20px;
}

.progress-text {
  font-size: 12px;
  color: #8b89b0;
  margin-bottom: 8px;
  display: block;
}

.progress-bar {
  background: #3d3a6b;
  border-radius: 10px;
  height: 6px;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, #ffcc00, #ffa500);
  height: 100%;
  border-radius: 10px;
  width: 50%;
}

.quiz-question {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  background: #1d1a49;
  border: 1px solid #3d3a6b;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.quiz-option:hover {
  background: #ffb540;
  color: #000;
}

/* Features Card */
.features-card {
  background: #2a2758;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #3d3a6b;
}

.features-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  font-size: 32px;
  min-width: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.feature-content {
  flex: 1;
}

.feature-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 13px;
  color: #a8a6d0;
  line-height: 1.4;
}

/* Fun Fact Card */
.funfact-card {
  background: linear-gradient(135deg, #1e3a5f, #0f2a44);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #2e5a8a;
}

.funfact-label {
  font-size: 12px;
  font-weight: 600;
  color: #ffcc00;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.funfact-text {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
  font-style: italic;
}

/* How to Play Card */
.howtoplay-card,
.cta-card {
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
}

.howtoplay-card {
  border: 1px solid #3d3a6b;
  background: #2a2758;
}

.howtoplay-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}

.howtoplay-list {
  list-style: Num;
  padding-left: 28px;
  margin: 0;
}

.howtoplay-list li {
  padding: 10px 0;
  font-size: 14px;
  color: #a8a6d0;
  border-bottom: 1px solid #3d3a6b;
}

.howtoplay-list li:last-child {
  border-bottom: none;
}

/* CTA Card */
.cta-card {
  border-radius: 24px;
  padding: 20px 16px;
  margin-bottom: 20px;
  text-align: center;
}

.cta-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  border-bottom: 2px solid;
  padding-bottom: 10px;
  display: block;
  text-align: center;
}

.cta-list {
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 20px;
}

.cta-list li {
  padding: 8px 0;
  font-size: 14px;
  color: #a8a6d0;
  text-align: left;
}

.cta-button {
  background: linear-gradient(135deg, #ffcc00, #ffa500);
  color: #1d1a49;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin: 16px 0;
  transition: all 0.2s ease;
  width: 100%;
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-trust {
  font-size: 12px;
  color: #ffcc00;
  margin-top: 16px;
}

/* Result page card */
.result-card {
  background: #ffffff;
  color: #1d1a49;
  border-radius: 18px;
  padding: 20px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(29, 26, 73, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.result-card .result-trophy {
  width: min(220px, 72%);
  height: auto;
  display: block;
}

.result-card .result-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #1d1a49;
}

.result-card .result-text #coinsEarned {
  color: #ff9800;
  font-weight: 800;
}

.result-card .result-play-button {
  display: inline-block;
  width: 100%;
  max-width: 220px;
  background: linear-gradient(135deg, #ffcc00, #ffa500);
  color: #1d1a49;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 18px rgba(255, 153, 0, 0.16);
  border: 2px solid black;
  cursor: pointer;
}

@media (max-width: 320px) {
  .cta-card {
    padding: 14px 12px;
  }

  .result-card {
    padding: 16px 14px;
    gap: 10px;
  }

  .result-card .result-trophy {
    width: min(180px, 76%);
  }

  .result-card .result-text {
    font-size: 16px;
  }

  .result-card .result-play-button {
    max-width: 200px;
    font-size: 15px;
    padding: 11px 16px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .cta-card {
    padding: 16px 14px;
  }

  .result-card {
    padding: 18px 15px;
  }

  .result-card .result-trophy {
    width: min(200px, 74%);
  }

  .result-card .result-text {
    font-size: 17px;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .cta-card {
    padding: 18px 16px;
  }

  .result-card {
    padding: 20px 16px;
  }

  .result-card .result-trophy {
    width: min(220px, 72%);
  }

  .result-card .result-text {
    font-size: 18px;
  }
}

/* Responsive layout for How to Play + CTA sections */
.info-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-row .howtoplay-card,
.info-row .cta-card {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .info-row {
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
  }

  /* Give slightly more space to the How to Play card on wide screens */
  .info-row .howtoplay-card,
  .cta-card {
    flex: 1.1;
    min-width: 0;
  }

  .info-row .cta-card {
    flex: 0.9;
    min-width: 260px;
    padding: 24px 20px;
  }

  .cta-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }

  /* keep default list padding on larger screens */
}

/* Bottom Ad Container */
.ads-container-bottom {
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  margin-top: 10px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 0;
  border: 1px solid #2d2a5a;
  border-left: none;
  border-right: none;
}

/* Desktop Styles */
@media (min-width: 425px) {
  body {
    display: flex;
    justify-content: center;
  }

  .main-wrapper {
    max-width: 425px;
    border-left: 1px solid #2d2a5a;
    border-right: 1px solid #2d2a5a;
  }

  .main-content {
    max-width: 425px;
    margin: 0 auto;
    padding: 16px;
  }
}

/* Active/Selected state for quiz options */
.quiz-option.selected {
  background: #ffb540;
}

/* Disabled state */
.quiz-option.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Hover effects on desktop */
@media (hover: hover) {
  .quiz-option:hover:not(.disabled) {
    background: #ffb540;
    color: #000;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.3);
  }
}

.quiz-option.correct {
  background: #28a745;
  border-color: #28a745;
  color: white;
  animation: correctPulse 0.5s ease;
}

.quiz-option.incorrect {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
  animation: incorrectShake 0.5s ease;
}

@keyframes correctPulse {
  0% {
    transform: scale(1);
    background: #28a745;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  50% {
    transform: scale(1.02);
    background: #34ce57;
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(1);
    background: #28a745;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

@keyframes incorrectShake {
  0% {
    transform: translateX(0);
    background: #dc3545;
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
    background: #dc3545;
  }
}

/* Disabled options styling */
.quiz-option:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

/* Correct answer highlight on other options (when user selects wrong) */
.quiz-option.correct-highlight {
  background: #28a745;
  border-color: #28a745;
  animation: correctPulse 0.5s ease;
}

.start-header {
  background: linear-gradient(to top, #0a0c12, #161338);
  padding: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  font-family: monospace;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.header-title {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  flex: 1;
  color: #ffb540;
}
.header-logo {
  cursor: pointer;
}
.header-logo-img {
  height: 36px;
  width: auto;
  padding: 6px;
}
.header-coins {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #ffb540;
  padding: 6px 12px;
  border-radius: 30px;
}
.coin-img {
  width: 22px;
  height: 22px;
  display: block;
}
.header-coins span {
  font-size: 20px;
}

.category-scroller {
  margin: 12px 0;
  overflow: hidden;
}
.category-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-list::-webkit-scrollbar {
  display: none;
}
.category-item {
  background: none;
  border: 0;
  padding: 10px 12px;
  border-radius: 40px;
  white-space: nowrap;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}
.category-item.active {
  background: none;
  color: #fff;
  font-weight: 600;
  color: #ffb540;
  border: 2px solid #ffb540;
}

/* Category list grid and card styles (moved from inline in start/index.html) */
#category-items {
  max-width: 1100px;
  margin: 0 auto 18px;
  padding: 0 8px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.cat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0f1724, #0b1220);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.cat-left {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
}
.cat-left img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}
.cat-body {
  flex: 1;
  min-width: 0;
}
.cat-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 1.1;
}
.cat-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}
.coin-inline {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.play-btn {
  width: 46px;
  height: 46px;
  border-radius: 46px;
  background: #ffb547;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  flex: 0 0 46px;
}
.play-btn:active {
  transform: translateY(1px);
}
.play-icon {
  width: 0;
  height: 0;
  display: block;
  border-left: 14px solid rgba(0, 0, 0, 0.9);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.quiz_box {
  max-width: 1100px;
  margin: 10px;
  padding: 14px;
  background: linear-gradient(180deg, #0f1724, #0b1220);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.quiz_top {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: stretch;
  justify-content: space-between;
}
.quiz_info {
  display: flex;
  gap: 25px;
  align-items: center;
}
.quiz-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 60px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  background: #111;
}
.game_desc {
  display: table-row;
  align-items: center;
}
.game_desc .game-title {
  font-size: 18px;
  margin: 0 0 6px 0;
  color: #ffb540;
}
.game_desc .game-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.play_btn {
  display: flex;
  align-items: center;
}
.join_btn {
  background: linear-gradient(135deg, #ffcc00, #ffa500);
  color: #1d1a49;
  border: none;
  border-radius: 999px;
  padding: 12px 50px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(255, 153, 0, 0.15);
  box-shadow: 0 6px 18px rgba(255, 153, 0, 0.15);
}
.game_rules {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
  border-radius: 10px;
}
.game_rules ul {
  margin: 0;
  padding-left: 18px;
  color: #cfcfe8;
}
.game_rules li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* ////////////////////////////// */

.top-title {
  text-align: center;
  padding-top: 18px;
}

.top-title h1 {
  color: #ffb540;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.top-title p {
  font-size: 18px;
  font-weight: 700;
}

.top-title span {
  color: #ffb540;
}

.close-btn {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 28px;
  height: 28px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* TIMER */
.timer-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 20px auto -32px;

  z-index: 5;
}

.timer-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #132042;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timer-circle::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: #132042;
  border-radius: 50%;
}

.timer-circle svg {
  position: absolute;
  width: 80px;
  height: 80px;

  transform: rotate(-90deg);
}

.timer-circle circle {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}

.timer-bg {
  stroke: #2e3d66;
}

.timer-progress {
  stroke: #ffb540;
  stroke-dasharray: 283;
  transition: stroke-dashoffset 0.3s linear;
}

.timer-text {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 800;
}

/* QUIZ BOX */
.quiz-box {
  background: #48526f;
  margin: 0 16px;
  border-radius: 18px;
  padding: 10px 14px 16px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

.score.green {
  background: #25b63f;
  box-shadow: 0 0 10px rgba(37, 182, 63, 0.3);
}

.score.red {
  background: #d61d1d;
  box-shadow: 0 0 10px rgba(214, 29, 29, 0.3);
}

.question-count {
  background: #1a2445;
  padding: 7px 14px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  margin: 5px auto 22px;
  width: fit-content;
}

.question-text {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 24px;
  padding: 0 8px;
}

/* OPTIONS */
.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option-btn {
  background: #16213f;
  border: none;
  border-radius: 8px;
  padding: 12px 8px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  letter-spacing: 0.5px;
}

.option-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #ffb540;
  color: #1a2445;
}

.option-btn.correct {
  background: #1fa83d;
  animation: pulse 0.5s ease;
}

.option-btn.wrong {
  background: #d61d1d;
  animation: shake 0.5s ease;
}

.option-btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* BOTTOM SCORE */
.bottom-score {
  text-align: center;
  margin: 10px auto;
  color: #ffb540;
  font-size: 18px;
  font-weight: 800;
}

/* RESULT CARD */

.result-score {
  font-size: 54px;
  font-weight: 800;
  color: #ffb540;
  margin-bottom: 20px;
}

.result-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 24px 0;
}

.result-stat {
  text-align: center;
}

.result-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.result-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.result-coins {
  background: linear-gradient(135deg, #ffb540, #ff9500);
  color: #1a2445;
  padding: 12px 24px;
  border-radius: 40px;
  display: inline-block;
  font-weight: 800;
  font-size: 18px;
  margin-top: 16px;
}

.play-again-btn {
  background: #ffb540;
  color: #1a2445;
  border: none;
  border-radius: 40px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  transition: 0.2s;
}

.play-again-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 181, 64, 0.3);
}

@media (max-width: 320px) {
  .start-header {
    padding: 10px;
  }

  .header-inner {
    gap: 8px;
    padding: 0 8px;
    max-width: 100%;
    width: 100%;
  }

  .header-logo-img {
    height: 28px;
    padding: 4px;
  }

  .header-title {
    display: none;
  }

  .header-coins {
    padding: 4px 8px;
    border-width: 1px;
  }

  .coin-img {
    width: 18px;
    height: 18px;
  }

  .header-coins span {
    font-size: 16px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .start-header {
    padding: 12px;
  }

  .header-inner {
    gap: 10px;
    padding: 0 10px;
    max-width: 100%;
    width: 100%;
  }

  .header-logo-img {
    height: 32px;
  }

  .header-title {
    font-size: 20px;
  }

  .header-coins {
    padding: 5px 10px;
  }

  .coin-img {
    width: 20px;
    height: 20px;
  }

  .header-coins span {
    font-size: 18px;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .start-header {
    padding: 14px;
  }

  .header-inner {
    gap: 12px;
    padding: 0 12px;
    max-width: 425px;
    width: 100%;
  }

  .header-logo-img {
    height: 36px;
  }

  .header-title {
    font-size: 22px;
  }

  .header-coins {
    padding: 6px 12px;
  }

  .coin-img {
    width: 22px;
    height: 22px;
  }

  .header-coins span {
    font-size: 19px;
  }
}
