:root {
  --theme-primary: #4e5b20;
  --theme-primary-dark: #3d4819;
  --bg-page: #eeeeee;
  --bg-white: #ffffff;
  --bg-footer: #323232;
  --text: #212121;
  --text-muted: #616161;
  --text-soft: #757575;
  --border: #eeeeee;
  --shadow-bar: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-search: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  --radius-card: 16px;
  --radius-banner: 16px;
  --header-company: 70px;
  --header-nav: 60px;
  --footer-h: 60px;
  --container: 1180px;
  --font: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  user-select: none;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ========== Header company ========== */
.company-bar {
  height: var(--header-company);
  background: var(--bg-white);
  box-shadow: var(--shadow-bar);
  position: relative;
  z-index: 30;
}

.company-inner,
.nav-inner,
.footer-inner,
.container {
  width: 100%;
  max-width: calc(var(--container) + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

.company-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-ceosa {
  height: 41px;
  width: auto;
  max-width: 201px;
  object-fit: contain;
}

.logo-bonda {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* ========== Navbar ========== */
.navbar {
  height: var(--header-nav);
  background: var(--theme-primary);
  position: relative;
  z-index: 20;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-btn .material-symbols-outlined {
  font-size: 22px;
  color: #fff;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #fff;
  padding: 4px 2px 4px 4px;
  border-radius: 24px;
}

.user-menu:hover {
  background: rgba(255, 255, 255, 0.08);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--theme-primary);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 16px;
  min-width: 210px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  display: none;
  z-index: 40;
  color: var(--text);
}

.popover.is-open {
  display: block;
}

.popover-title {
  padding: 12px 16px 8px;
  font-size: 16px;
  font-weight: 500;
}

.popover a,
.popover button.menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  text-align: left;
}

.popover a:hover,
.popover button.menu-item:hover {
  background: #f5f5f5;
}

.popover .empty {
  padding: 28px 20px 32px;
  text-align: center;
  color: var(--text-muted);
}

.popover .empty .material-symbols-outlined {
  font-size: 40px;
  color: var(--theme-primary);
  margin-bottom: 8px;
}

.tooltip-wrap {
  position: relative;
}

.tooltip-wrap::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #424242;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.tooltip-wrap:hover::after {
  opacity: 1;
}

/* ========== Main ========== */
.main {
  flex: 1;
  background: var(--bg-page);
  padding-bottom: 48px;
}

.page {
  display: none;
}

.page.is-visible {
  display: block;
}

.hello-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 20px 8px;
}

.hello-box h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.3px;
  overflow-wrap: anywhere;
}

.hello-box h1 strong {
  font-weight: 700;
}

.hello-wave {
  height: 34px;
  width: auto;
}

/* ========== Carousel ========== */
.carousel-wrap {
  position: relative;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  padding: 0 48px;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  transition: transform 0.45s ease;
}

.banner-slide {
  flex: 0 0 72%;
  min-width: 0;
  height: 338px;
  border-radius: var(--radius-banner);
  overflow: hidden;
  position: relative;
  background: #222;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slide.is-side {
  opacity: 0.95;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(120, 120, 120, 0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.15s ease;
}

.carousel-arrow:hover {
  background: rgba(80, 80, 80, 0.65);
}

.carousel-arrow .material-symbols-outlined {
  font-size: 28px;
  color: #fff;
}

.carousel-arrow.prev {
  left: 18px;
}

.carousel-arrow.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  background: #fff;
}

/* ========== Search ========== */
.search-wrap {
  display: flex;
  justify-content: center;
  margin-top: -28px;
  margin-bottom: 36px;
  position: relative;
  z-index: 6;
}

.search-box {
  width: 546px;
  max-width: calc(100% - 32px);
  height: 56px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-search);
  display: flex;
  align-items: center;
  padding: 0 8px 0 24px;
  gap: 8px;
}

.search-box input[type="search"] {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 15px;
  background: transparent;
  min-width: 0;
}

.search-box input[type="search"]::placeholder {
  color: #9e9e9e;
}

.search-select {
  position: relative;
  flex: 0 0 auto;
}

.search-select-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  padding: 8px 4px;
  white-space: nowrap;
}

.search-select-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  min-width: 160px;
  display: none;
  overflow: hidden;
  z-index: 8;
}

.search-select-menu.is-open {
  display: block;
}

.search-select-menu button {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}

.search-select-menu button:hover,
.search-select-menu button.is-active {
  background: #f3f3f3;
}

.search-submit {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-submit .material-symbols-outlined {
  font-size: 22px;
  color: #fff;
}

/* ========== Shortcut cards ========== */
.shortcuts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.shortcut-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  min-height: 230px;
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.shortcut-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.shortcut-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 32px;
  margin-bottom: 8px;
}

.shortcut-head .material-symbols-outlined {
  font-size: 18px;
  color: #333;
}

.shortcut-head span {
  font-size: 12px;
  line-height: 1.25;
  color: #333;
}

.shortcut-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

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

.partner-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(205, 205, 205, 0.5);
  padding: 8px;
}

.chip {
  margin-top: -14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 4px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shortcut-title {
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
}

.shortcut-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 4px;
}

.thumb {
  width: 100%;
  height: 84px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}

.fav-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(205, 205, 205, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin: 8px auto 12px;
}

.fav-icon-box .material-symbols-outlined {
  font-size: 40px;
  color: var(--theme-primary);
}

/* ========== Categories / inner pages ========== */
.section {
  margin-top: 40px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 8px;
}

.section-head h2 {
  font-size: 22px;
  font-weight: 500;
}

.link-btn {
  border: 0;
  background: transparent;
  color: var(--theme-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.categories {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 16px 8px 14px;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.category-card img,
.category-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-primary);
}

.category-icon .material-symbols-outlined {
  font-size: 40px;
}

.category-card p {
  font-size: 13px;
  line-height: 1.25;
}

.page-title {
  padding: 28px 0 16px;
  font-size: 28px;
  font-weight: 500;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chip-filter {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
}

.chip-filter.is-active {
  background: var(--theme-primary);
  color: #fff;
  border-color: var(--theme-primary);
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.coupon-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.coupon-card .cover {
  height: 120px;
  object-fit: contain;
  background: #fafafa;
  padding: 16px;
}

.coupon-card .body {
  padding: 14px 16px 16px;
}

.coupon-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.coupon-card p {
  font-size: 13px;
  color: var(--text-muted);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.event-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 140px;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card .body {
  padding: 16px 18px;
}

.event-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.event-card p {
  font-size: 13px;
  color: var(--text-muted);
}

.empty-state {
  background: #fff;
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-card);
}

.empty-state .material-symbols-outlined {
  font-size: 48px;
  color: var(--theme-primary);
  margin-bottom: 12px;
}

.help-list {
  display: grid;
  gap: 12px;
}

.help-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 16px 18px;
}

.help-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.help-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== Footer ========== */
.footer {
  height: var(--footer-h);
  background: var(--bg-footer);
  color: #9e9e9e;
}

.footer-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.footer a {
  color: #9e9e9e;
}

.footer a:hover {
  color: #fff;
}

.footer-help {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
}

.footer-help .material-symbols-outlined {
  font-size: 20px;
  color: #fff;
}

/* ========== Mobile ========== */
.mobile-nav {
  display: none;
}

@media (max-width: 1100px) {
  .nav-links a {
    padding: 8px 10px;
    font-size: 14px;
  }

  .shortcuts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .categories {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .coupon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banner-slide {
    flex-basis: 86%;
    height: 260px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 6px 8px;
    font-size: 13px;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .hello-box {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .company-bar {
    height: 56px;
  }

  .logo-ceosa {
    height: 32px;
    max-width: 140px;
  }

  .logo-bonda {
    height: 20px;
  }

  .navbar {
    height: 52px;
  }

  .nav-links {
    display: none;
  }

  .nav-inner {
    justify-content: flex-end;
  }

  .tooltip-wrap::after {
    display: none;
  }

  .hello-box {
    margin: 16px 0 12px;
  }

  .hello-wave {
    height: 28px;
  }

  .carousel-viewport {
    padding: 0 12px;
  }

  .banner-slide {
    flex-basis: 100%;
    height: 168px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow.prev {
    left: 8px;
  }

  .carousel-arrow.next {
    right: 8px;
  }

  .carousel-dots {
    bottom: 16px;
  }

  .search-wrap {
    margin-top: -20px;
    margin-bottom: 20px;
    padding: 0 12px;
  }

  .search-box {
    height: 48px;
    width: 100%;
    max-width: none;
    padding: 0 6px 0 14px;
    gap: 4px;
  }

  .search-box input[type="search"] {
    font-size: 14px;
  }

  .search-select-btn {
    font-size: 13px;
    padding: 6px 2px;
  }

  .shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .shortcut-card {
    min-height: 210px;
  }

  .shortcut-title {
    font-size: 16px;
  }

  .shortcut-desc {
    font-size: 12px;
  }

  .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coupon-grid,
  .event-list {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card img {
    height: 140px;
  }

  .page-title {
    font-size: 22px;
    padding-top: 20px;
  }

  .section-head {
    flex-wrap: wrap;
    gap: 8px;
  }

  .section-head h2 {
    font-size: 18px;
  }

  .main {
    padding-bottom: 24px;
  }

  .footer {
    height: auto;
    padding: 16px 0 calc(80px + env(safe-area-inset-bottom));
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .mobile-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(65px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--theme-primary);
    z-index: 50;
    justify-content: space-around;
    align-items: center;
  }

  .mobile-nav a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    opacity: 0.75;
    min-width: 64px;
  }

  .mobile-nav a.is-active {
    opacity: 1;
  }

  .modal-card {
    padding: 22px 16px;
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .modal-card h2 {
    font-size: 18px;
  }

  .modal-actions {
    flex-wrap: wrap;
  }

  .login-wrap {
    min-height: auto;
    padding: 24px 16px 32px;
  }

  .login-card {
    padding: 24px 18px;
  }

  .login-card h1 {
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .search-select-btn span:first-child {
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .shortcut-card {
    min-height: 196px;
    padding: 10px;
  }

  .partner-logo,
  .fav-icon-box {
    width: 56px;
    height: 56px;
  }

  .chip {
    max-width: 110px;
    font-size: 10px;
  }
}

.page-login .footer {
  padding-bottom: 16px;
}

.page-login .mobile-nav {
  display: none;
}

@media (max-width: 767px) {
  .page-login .navbar {
    display: none;
  }

  .page-login .footer {
    padding: 16px 0;
  }
}

/* ========== Login ========== */
.login-wrap {
  min-height: calc(100vh - 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
}

.login-card h1 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.login-lead,
.login-hint {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.login-hint {
  margin-top: 14px;
  text-align: center;
}

.login-error {
  background: #fdecea;
  color: #b71c1c;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 12px 0;
  font-size: 14px;
}

.login-card label {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.login-card input {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
}

.login-card input:focus {
  outline: 2px solid #4e5b20;
  border-color: #4e5b20;
}

.login-btn,
.btn-primary,
.btn-ghost {
  border: 0;
  cursor: pointer;
  border-radius: 24px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
}

.login-btn,
.btn-primary {
  background: var(--theme-primary);
  color: #fff;
}

.login-btn {
  width: 100%;
  margin-top: 22px;
}

.btn-ghost {
  background: #eee;
  color: #333;
}

.btn-wide {
  width: 100%;
}

.email-capture {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.email-capture input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
}

/* ========== Overlays ========== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.overlay[hidden] {
  display: none !important;
}

.modal-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.modal-card h2 {
  font-size: 22px;
  margin: 8px 0 12px;
}

.modal-card p {
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.modal-icon {
  font-size: 42px;
  color: var(--theme-primary);
}

.modal-icon.warn {
  color: #c62828;
}

.modal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.modal-card.prize {
  background: linear-gradient(160deg, #5b2d9a, #7b3fe4);
  color: #fff;
}

.modal-card.prize p,
.modal-card.prize h2 {
  color: #fff;
}

.prize-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  opacity: 0.85;
}

.modal-card.prize .btn-primary {
  background: #e53935;
  margin-top: 10px;
}

.modal-card.lesson {
  text-align: left;
}

.modal-card.lesson h2,
.modal-card.lesson .modal-icon {
  text-align: center;
  display: block;
  width: 100%;
}
