:root {
  --bg-gradient: #f8faf6;
  --card-bg: #ffffff;
  --text-dark: #1f291c;
  --text-muted: #647360;
  --green-primary: #236c34;
  --green-hover: #195227;
  --green-light: #eaf6e4;
  --green-badge: #298d3e;
  --red-primary: #d32828;
  --red-hover: #b41d1d;
  --red-badge: #e53935;
  --red-light: #fbe9e7;
  --wood-top: #e0b475;
  --wood-bottom: #be8a48;
  --wood-border: #8b5b22;
  --gold-star: #ffb703;
  --radius-card: 26px;
  --radius-btn: 18px;
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.03);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Fredoka', 'Nunito', sans-serif;
  user-select: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg-gradient);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

/* Main Container Wrapper */
.main-wrapper {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-width: 460px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

/* Inner Home Button inside screen-card top-bar */
.inner-home-btn {
  position: absolute;
  left: 6px;
  top: 2px;
  background: #ffffff;
  border: 2px solid #a4d26d;
  color: #1e4a1e;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  z-index: 10;
  transition: all 0.2s ease;
}

.inner-home-btn:hover {
  background: #236c34;
  color: white;
  transform: scale(1.08);
}

/* Side by Side vs Interactive Mode */
.main-wrapper.side-by-side-mode {
  flex-direction: row;
  flex-wrap: wrap;
}

.main-wrapper.interactive-mode {
  flex-direction: column;
  align-items: center;
}

.main-wrapper.interactive-mode .screen-card {
  display: none;
}

.main-wrapper.interactive-mode .screen-card.active-single-screen {
  display: flex;
}

/* Screen Card Component (Strict 9:16 Aspect Ratio & 100% Mobile Height/Width) */
.screen-card {
  width: 100%;
  height: 100%;
  max-width: 440px;
  max-height: 850px;
  aspect-ratio: 9 / 16;
  background: #ffffff;
  border-radius: var(--radius-card);
  border: 2px solid #e1ebd8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 500px) {
  body {
    padding: 0;
    margin: 0;
  }
  .main-wrapper {
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
  }
  .screen-card {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
}

.screen-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
}

.screen-content {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Top Bar Layout */
.top-bar {
  position: relative;
  width: 100%;
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.correct-screen .top-bar,
.oops-screen .top-bar {
  min-height: 10px;
  height: 10px;
  margin-bottom: 0;
}

.correct-screen .panda-header,
.oops-screen .panda-header {
  margin-top: -12px;
}

.top-bar .hint-pill {
  position: absolute;
  right: 0;
  top: 2px;
}

.flex-space-between, .flex-end {
  display: flex;
  align-items: center;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hints Button */
.hint-pill {
  background: #ffffff;
  border: 2px solid #99c277;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #2a5823;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.06);
  z-index: 5;
}

/* Hanging Wooden Sign */
.wood-sign-hanging {
  position: relative;
  display: inline-flex;
  justify-content: center;
  z-index: 4;
}

.rope {
  width: 3.5px;
  height: 14px;
  background: #8b5b22;
  position: absolute;
  top: -14px;
}
.rope-left { left: 20%; }
.rope-right { right: 20%; }

.hanging-board {
  background: linear-gradient(180deg, var(--wood-top) 0%, var(--wood-bottom) 100%);
  border: 2px solid var(--wood-border);
  padding: 7px 26px;
  border-radius: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  position: relative;
}

.board-nail {
  width: 6px;
  height: 6px;
  background: #573915;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.board-nail.n-l { left: 6px; }
.board-nail.n-r { right: 6px; }

.q-count-text {
  font-size: 1.25rem;
  font-weight: 900;
  color: #3b2308;
  letter-spacing: 0.5px;
}

/* Panda Header & Banners */
.panda-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -4px;
  margin-bottom: 8px;
}

.panda-header.panda-bottom {
  margin-top: 6px;
  margin-bottom: -8px;
  z-index: 3;
}

.panda-header.panda-bottom .panda-img-wrapper {
  height: 90px;
}

.panda-img-wrapper {
  width: 145px;
  height: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.panda-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.panda-img-wrapper:hover .panda-img {
  transform: scale(1.05);
}

.wood-banner {
  width: 92%;
  background: linear-gradient(180deg, #f5c884 0%, #d8964e 100%);
  border: 3.5px solid #7c4c1a;
  border-radius: 18px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  position: relative;
  margin-top: -18px;
  z-index: 2;
}

.banner-nail {
  width: 7px;
  height: 7px;
  background: #593510;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.nail-left { left: 10px; }
.nail-right { right: 10px; }

.banner-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.4), 0 3px 6px rgba(0,0,0,0.2);
}

.badge-green { background: #278536; }
.badge-red { background: #d32828; }

.banner-text {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
.green-text { color: #1e5927; }
.red-text { color: #8e1818; }

/* Progress Bar */
.progress-container {
  width: 100%;
  padding: 0 4px;
  margin-bottom: 8px;
}

.progress-bar-track {
  width: 100%;
  height: 20px;
  background: #ffffff;
  border: 2px solid #b2d788;
  border-radius: 14px;
  padding: 2px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #32ad49 0%, #1e6d2e 100%);
  border-radius: 10px;
  transition: width 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.progress-leaf {
  font-size: 0.85rem;
  margin-right: -4px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
  animation: swayLeaf 3s infinite ease-in-out;
}

@keyframes swayLeaf {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

/* Question & Card Boxes */
.card-box {
  background: linear-gradient(180deg, #ffffff 0%, #fbfef8 100%);
  border: 2px solid #dfecd0;
  border-radius: 20px;
  padding: 12px 14px;
  box-shadow: var(--shadow-card);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.question-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 6px auto;
  padding: 4px 14px;
  background: #f2f9ec;
  border: 1.5px solid #d2e7c0;
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #215c23;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.question-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  color: #1e331b;
  line-height: 1.35;
  margin-top: 2px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}

.option-btn {
  background: #ffffff;
  border: 1.5px solid #e1ebd5;
  border-bottom: 3.5px solid #d1e2c1;
  border-radius: 16px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.03);
  min-height: 48px;
}

.option-btn:hover {
  background: #f7fdf3;
  border-color: #8ac262;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(135, 195, 90, 0.2);
}

.option-badge {
  width: 32px;
  height: 32px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.4), 0 2px 4px rgba(0,0,0,0.15);
}

.badge-a { background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%); }
.badge-b { background: linear-gradient(135deg, #42a5f5 0%, #1565c0 100%); }
.badge-c { background: linear-gradient(135deg, #ffb74d 0%, #ef6c00 100%); }
.badge-d { background: linear-gradient(135deg, #ab47bc 0%, #6a1b9a 100%); }

.option-label {
  font-size: 1.02rem;
  font-weight: 700;
  color: #263524;
}

.option-status-icon {
  margin-left: auto;
  font-size: 1.15rem;
  font-weight: 900;
  color: #238031;
}

.option-btn.selected-correct {
  background: linear-gradient(135deg, #e4f7d8 0%, #d2f0c0 100%);
  border: 2px solid #5eb931;
  border-bottom: 3.5px solid #3b8e17;
  box-shadow: 0 5px 14px rgba(94, 185, 49, 0.28);
}

.option-btn.selected-incorrect {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border: 2px solid #e53935;
  border-bottom: 3.5px solid #b71c1c;
  box-shadow: 0 5px 14px rgba(229, 57, 53, 0.28);
}

/* Next Question Button & 1s Loading Animation */
.next-q-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(180deg, #2e8b40 0%, #1c6229 100%);
  border-bottom: 3.5px solid #103d18;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 5px 14px rgba(28, 98, 41, 0.35);
  animation: fadeInUp 0.35s ease forwards;
  transition: all 0.2s ease;
}

.next-q-btn:hover {
  background: linear-gradient(180deg, #349c48 0%, #206d2f 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(28, 98, 41, 0.45);
}

.next-q-btn:disabled {
  background: linear-gradient(180deg, #5b9b68 0%, #3a7547 100%);
  border-bottom-color: #26522e;
  cursor: wait;
}

.btn-spinner {
  display: inline-block;
  font-size: 1.2rem;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Celebration & Oops Boxes */
.celebration-box, .oops-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 6px 0;
}

.star-badge, .oops-badge {
  position: relative;
  margin-bottom: 2px;
}

.star-icon {
  font-size: 2.8rem;
  animation: pulseStar 2s infinite ease-in-out;
  filter: drop-shadow(0 4px 8px rgba(255, 188, 0, 0.4));
}

.oops-icon {
  font-size: 2.8rem;
  animation: pulseOops 2s infinite ease-in-out;
  filter: drop-shadow(0 4px 8px rgba(229, 57, 53, 0.3));
}

@keyframes pulseStar {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes pulseOops {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.sparkle {
  position: absolute;
  font-size: 1.1rem;
}
.sp-1 { top: -4px; left: -10px; }
.sp-2 { top: -10px; right: -6px; }
.sp-3 { bottom: 0; right: -10px; }

.great-job-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #1f5f2c;
  margin-bottom: 1px;
}

.oops-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #b71c1c;
  margin-bottom: 1px;
}

.sub-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #5d6f59;
  margin-bottom: 10px;
}

/* Stats Row */
.stats-row {
  width: 100%;
  background: #f7fad233;
  border: 1.5px solid #e7f1da;
  border-radius: 14px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 12px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  font-size: 1.25rem;
  margin-bottom: 1px;
}

.stat-val {
  font-size: 1.2rem;
  font-weight: 900;
}
.green-val { color: #1e662c; }
.red-val { color: #c62828; }

.stat-lbl {
  font-size: 0.76rem;
  font-weight: 700;
  color: #72826e;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: #e1ecd3;
}

/* Action Buttons */
.action-btn {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-btn);
  border: none;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.btn-green {
  background: linear-gradient(180deg, #287a38 0%, #1a5624 100%);
  border-bottom: 3.5px solid #103b17;
}

.btn-green:hover {
  background: linear-gradient(180deg, #2d8b40 0%, #1d6029 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 86, 36, 0.3);
}

.btn-red {
  background: linear-gradient(180deg, #e53935 0%, #c62828 100%);
  border-bottom: 3.5px solid #8e1010;
}

.btn-red:hover {
  background: linear-gradient(180deg, #ef433f 0%, #d32f2f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(198, 40, 40, 0.3);
}

/* Question Result Grid Section */
.question-result-section {
  width: 100%;
  border-top: 1.5px dashed #d5e5c2;
  padding-top: 6px;
  margin-top: 2px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #295725;
  margin-bottom: 8px;
}

.q-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.q-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.q-lbl {
  font-size: 0.72rem;
  font-weight: 800;
  color: #4b5a49;
}

.q-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  color: white;
}

.icon-check {
  background: #257e33;
}

.icon-cross {
  background: #d32828;
}

/* Scenery Footer Decoration */
.scenery-footer {
  width: 100%;
  height: 44px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hill {
  position: absolute;
  bottom: 0;
  width: 120%;
  left: -10%;
  border-radius: 50% 50% 0 0;
}

.hill-back {
  height: 34px;
  background: #a9dc6c;
  bottom: 5px;
}

.hill-front {
  height: 28px;
  background: #73b036;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flowers-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  margin-top: 2px;
  opacity: 0.9;
}

/* Interactive Navigation Bar (for single screen tab switcher) */
.interactive-nav-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.screen-tab-btn {
  background: #ffffff;
  border: 2px solid #a2ce7b;
  color: #27561f;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.screen-tab-btn.active {
  background: #215c26;
  color: white;
  border-color: #153e18;
}

/* Category Selection Screen Styling (Premium Upgrade) */
.wood-banner-challenge {
  padding: 8px 22px;
  background: linear-gradient(180deg, #f7d59b 0%, #d8964e 100%);
  border: 3.5px solid #6f4215;
  border-radius: 18px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.challenge-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.quiz-title-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: #382006;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.challenge-subtitle-text {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1a6423;
  letter-spacing: 1px;
  margin-top: 1px;
}

.category-subheading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px auto 8px auto;
  padding: 4px 16px;
  background: #f1f8ea;
  border: 1.5px solid #c8e2b6;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #21541e;
  letter-spacing: 0.8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  padding: 0 2px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.03);
  position: relative;
  min-height: 52px;
}

.category-card:hover {
  transform: translateY(-2px) scale(1.015);
}

.cat-gk {
  background: linear-gradient(135deg, #f0f9e8 0%, #e1ebd6 100%);
  border: 2px solid #bce29b;
}
.cat-gk:hover {
  box-shadow: 0 6px 16px rgba(140, 210, 100, 0.35);
}

.cat-science {
  background: linear-gradient(135deg, #e8f4fe 0%, #d9edfe 100%);
  border: 2px solid #a6d5fc;
}
.cat-science:hover {
  box-shadow: 0 6px 16px rgba(110, 180, 245, 0.35);
}

.cat-history {
  background: linear-gradient(135deg, #fffbee 0%, #fef3d6 100%);
  border: 2px solid #f8d782;
}
.cat-history:hover {
  box-shadow: 0 6px 16px rgba(245, 205, 100, 0.35);
}

.cat-entertainment {
  background: linear-gradient(135deg, #f8edfd 0%, #edd8f8 100%);
  border: 2px solid #dab2ee;
}
.cat-entertainment:hover {
  box-shadow: 0 6px 16px rgba(210, 150, 235, 0.35);
}

.cat-sports {
  background: linear-gradient(135deg, #fff0f1 0%, #fde2e4 100%);
  border: 2px solid #f9b8be;
}
.cat-sports:hover {
  box-shadow: 0 6px 16px rgba(245, 145, 155, 0.35);
}

.cat-icon-wrapper {
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

.cat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e311b;
  letter-spacing: 0.4px;
}

.cat-desc {
  font-size: 0.78rem;
  font-weight: 600;
  color: #60725c;
}

.cat-arrow-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.06);
  color: #3b5037;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-card:hover .cat-arrow-btn {
  background: #236c34;
  color: white;
  border-color: #195227;
  transform: translateX(2px);
}

/* Responsive queries */
@media (max-width: 1180px) {
  .main-wrapper.side-by-side-mode {
    justify-content: center;
  }
}

/* Daily 6:00 AM IST Refresh Banner */
.daily-refresh-banner {
  background: linear-gradient(135deg, #1e3a1e, #2d5a2d);
  border: 2px solid #528d4d;
  border-radius: 14px;
  padding: 10px 14px;
  margin: 10px 20px 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(35, 108, 52, 0.2);
  color: #ffffff;
}

.daily-refresh-banner .refresh-icon {
  font-size: 18px;
}

.daily-refresh-banner .refresh-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #d1fae5;
  flex: 1;
}

.daily-refresh-banner .refresh-countdown {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: #143214;
  color: #4ade80;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid #34d399;
  letter-spacing: 1px;
}

