body {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 32%),
    linear-gradient(180deg, #0f4178 0%, #0a2e56 100%);
  font-family: 'Jost', 'Segoe UI', sans-serif;
  color: #15253a;
}

.mobile-wrapper {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(5, 18, 40, 0.18);
  display: flex;
  flex-direction: column;
}

.site-nav-shell {
  position: relative;
  z-index: 40;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 65, 120, 0.08);
}

.site-nav-brand,
.site-nav-actions {
  min-width: 0;
}

.site-nav-drawer-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  line-height: 1;
  color: #0f4178;
  list-style: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.site-nav-toggle:hover {
  background: rgba(15, 65, 120, 0.08);
}

.site-nav-panel {
  position: fixed;
  top: 0;
  left: max(0px, calc(50% - 384px));
  bottom: 0;
  z-index: 30;
  width: min(310px, 82vw);
  padding: 1rem 0.8rem;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 22px 0 44px rgba(13, 39, 73, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.site-nav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.35rem 0.85rem;
}

.site-nav-panel-title {
  color: #0f4178;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #0f4178;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 10px;
}

.site-nav-close:hover {
  background: rgba(15, 65, 120, 0.08);
}

.site-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(8, 25, 47, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.site-nav-shell > .site-nav-drawer-toggle:checked ~ .site-nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.site-nav-shell > .site-nav-drawer-toggle:checked ~ .site-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.site-nav-panel-link {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  color: #1c3553;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav-panel-link:hover {
  background: #eef5fb;
  color: #0f4178;
}

@media (min-width: 768px) {
  .site-nav-panel {
    width: min(340px, 40vw);
  }
}

.site-nav-logo {
  width: 92px;
  max-height: 34px;
  object-fit: contain;
}

.site-nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4f6178;
  text-decoration: none;
}

.site-nav-language-dropdown {
  position: relative;
}

.site-nav-language-dropdown summary {
  list-style: none;
}

.site-nav-language-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-nav-language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(15, 65, 120, 0.14);
  border-radius: 999px;
  background: #f8fbfe;
  color: #1c3553;
  cursor: pointer;
  user-select: none;
}

.site-nav-language-trigger:hover {
  background: #eef5fb;
}

.site-nav-language-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav-language-flag {
  width: 22px;
  height: 14px;
  border-radius: 3px;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(15, 65, 120, 0.12);
}

.site-nav-language-caret {
  width: 10px;
  height: 6px;
  flex: 0 0 auto;
  color: #5b6d82;
  transition: transform 0.2s ease;
}

.site-nav-language-dropdown[open] .site-nav-language-caret {
  transform: rotate(180deg);
}

.site-nav-language-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 160px;
  padding: 0.4rem;
  border: 1px solid rgba(15, 65, 120, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(13, 39, 73, 0.14);
}

.site-nav-language-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.7rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #1c3553;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
}

.site-nav-language-option:hover {
  background: #eef5fb;
}

.site-nav-language-option.is-active {
  background: #edf5fb;
  color: #0f4178;
}

.site-nav-link:hover {
  color: #0f4178;
}

.banner {
  position: relative;
  height: 188px;
  overflow: hidden;
  border-radius: 0 0 26px 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #0f2743 0%, #155b73 48%, #68bccf 100%);
  box-shadow: inset 0 -28px 55px rgba(0, 0, 0, 0.16);
  touch-action: pan-y;
}

.banner::before,
.banner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.banner::before {
  width: 220px;
  height: 220px;
  top: -96px;
  right: -72px;
}

.banner::after {
  width: 150px;
  height: 150px;
  bottom: -54px;
  left: -34px;
}

.banner-track {
  display: flex;
  width: 300%;
  height: 100%;
  will-change: transform;
  transform: translateX(0);
  transition: transform 0.45s ease;
}

.banner.is-dragging .banner-track {
  transition: none;
}

.banner-slide {
  width: 100%;
  flex: 0 0 33.3333%;
  padding: 1.35rem 1.45rem 2.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: #ffffff;
  user-select: none;
}

.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.banner-slide-primary {
  background: linear-gradient(135deg, rgba(8, 37, 66, 0.2), rgba(0, 0, 0, 0));
}

.banner-slide-secondary {
  background: linear-gradient(135deg, rgba(20, 88, 107, 0.18), rgba(0, 0, 0, 0));
}

.banner-slide-accent {
  background: linear-gradient(135deg, rgba(80, 138, 145, 0.18), rgba(0, 0, 0, 0));
}

.banner-eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.banner-slide h2 {
  margin: 0 0 0.55rem;
  max-width: 240px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.banner-slide p {
  margin: 0;
  max-width: 275px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
}

.banner-indicators {
  position: absolute;
  left: 1.45rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.42rem;
}

.banner-indicators span {
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.banner-indicators span.is-active {
  background: rgba(255, 255, 255, 0.95);
  transform: scaleX(1.15);
}

.image-placeholder {
  background: linear-gradient(145deg, #dce8f3, #b8cadc);
  height: 100%;
  min-height: 90px;
  border-radius: 18px;
}

.btn-dark {
  background: linear-gradient(135deg, #0f4178, #184f8f);
  border-color: #0f4178;
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(15, 65, 120, 0.18);
}

.btn-dark:hover,
.btn-dark:focus {
  background: linear-gradient(135deg, #0c3561, #143f72);
  border-color: #0c3561;
}

.form-control {
  border-radius: 8px;
  border-color: rgba(15, 65, 120, 0.18);
}

.card-custom {
  border: 1px solid rgba(15, 65, 120, 0.12);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(13, 39, 73, 0.08);
  overflow: hidden;
}

.card-detail {
  background: linear-gradient(180deg, #f5f9fc 0%, #eef5fb 100%);
  border: 1px solid rgba(15, 65, 120, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(13, 39, 73, 0.08);
}

.card-detail-body {
  padding: 1.7rem 1.3rem;
}

.card-program-media {
  min-height: 132px;
  background-size: cover;
  background-position: center;
}

.campaign-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: #f8fbfe;
}

.campaign-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-custom {
  background: #edf5fb;
  color: #234d72;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.page-shell {
  padding-bottom: 1.5rem;
}

.page-section {
  padding: 1rem 1rem 0;
}

.hero-banner {
  margin: 1rem 1rem 0;
  height: 168px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(6, 22, 48, 0.16);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 28, 50, 0.1), rgba(9, 28, 50, 0.55));
}

.hero-banner-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #ffffff;
}

.hero-banner-copy h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
}

.hero-banner-copy p {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.share-floating {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(17, 43, 71, 0.12);
}

.rating {
  gap: 8px;
}

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

.star {
  font-size: 28px;
  color: #ccd6df;
  cursor: pointer;
  transition: color 0.2s ease;
  text-shadow:
    -1px -1px 0 #11304f,
    1px -1px 0 #11304f,
    -1px 1px 0 #11304f,
    1px 1px 0 #11304f;
  margin: 10px;
}

.star.selected {
  color: #f8c73c;
  text-shadow:
    -1px -1px 0 #c38f00,
    1px -1px 0 #c38f00,
    -1px 1px 0 #c38f00,
    1px 1px 0 #c38f00;
}

.star-label {
  font-size: 12px;
  margin-top: 2px;
  color: #15253a;
}

.table-submission {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  overflow: hidden;
}

.table-submission th,
.table-submission td {
  padding: 0.85rem 0.75rem;
}

.info-copy {
  color: #4f6178;
  font-size: 0.9rem;
}

.action-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.action-stack .btn {
  width: min(220px, 100%);
}

.text-link {
  color: #0f4178;
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.referrer-panel,
.selection-panel {
  background: linear-gradient(180deg, #f8fbfd 0%, #edf4fa 100%);
  border: 1px solid rgba(15, 65, 120, 0.08);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 14px 32px rgba(13, 39, 73, 0.06);
}

#product-name {
  -webkit-appearance: auto;
  appearance: auto;
  padding-right: 2.5rem;
  background-position: right 0.75rem center;
}

.product-grid-card {
  background: #ffffff;
  border: 1px solid rgba(15, 65, 120, 0.1);
  border-radius: 18px;
  padding: 0.85rem;
  box-shadow: 0 14px 28px rgba(13, 39, 73, 0.06);
  text-align: center;
}

.product-grid-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.8rem;
}

.product-grid-card h6 {
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.product-grid-card p {
  margin-bottom: 0.9rem;
  color: #5c6c80;
  font-size: 0.84rem;
}

.leaderboard-block {
  background: linear-gradient(180deg, #f8fbfd 0%, #edf4fa 100%);
  border: 1px solid rgba(15, 65, 120, 0.08);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 14px 32px rgba(13, 39, 73, 0.06);
}

.leaderboard-name {
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: #0f4178;
}

.footer-actions {
  margin-top: auto;
  padding: 1rem;
}

.modal-content {
  border: none;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(6, 22, 48, 0.16);
}

.news-card-button {
  min-width: 78px;
}

.news-card-title {
  font-weight: 700;
}

.news-card-copy {
  font-size: 0.78rem;
  line-height: 1.45;
}

.campaign-description-clamp {
  max-height: 53px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (prefers-reduced-motion: reduce) {
  .banner-track {
    transition: none;
  }
}

@media (max-width: 420px) {
  .banner {
    height: 176px;
  }

  .banner-slide {
    padding: 1.15rem 1.1rem 2rem;
  }

  .banner-slide h2 {
    max-width: 220px;
    font-size: 1.22rem;
  }

  .banner-slide p {
    max-width: 100%;
    font-size: 0.82rem;
  }

  .banner-indicators {
    left: 1.1rem;
    bottom: 0.9rem;
  }

  .hero-banner {
    height: 150px;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .page-section,
  .footer-actions {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .site-nav {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .site-nav-logo {
    width: 80px;
  }

  .site-nav-link {
    font-size: 0.64rem;
  }

  .site-nav-language-trigger {
    padding: 0.4rem 0.55rem;
  }

  .site-nav-language-label {
    font-size: 0.64rem;
  }

  .site-nav-language-menu {
    min-width: 148px;
  }
}
