@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.main-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  background: #ffffff;
}

@media (min-width: 425px) {
  .main-wrapper {
    border-left: 1px solid #e5e9f2;
    border-right: 1px solid #e5e9f2;
    max-width: 425px;
  }
}

.main-content {
  padding: 12px;
}

@media (min-width: 425px) {
  .main-content {
    padding: 12px 12px;
  }
}

.search-box {
  display: flex;
  overflow: hidden;
  border-radius: 50px;
  background: #f4f6fb;
  border: 1px solid #dce2ef;
  margin-bottom: 14px;
  width: 100%;
  min-width: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px;
  font-size: 14px;
  background: transparent;
  color: #1a1a2e;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}

.search-input::-webkit-scrollbar {
  height: 4px;
}

.search-input::-webkit-scrollbar-track {
  background: #f4f6fb;
  border-radius: 2px;
}

.search-input::-webkit-scrollbar-thumb {
  background: #3478ff;
  border-radius: 2px;
}

.search-input::placeholder {
  color: #8a93a8;
}

.search-btn {
  width: 52px;
  flex-shrink: 0;
  border: none;
  background: #3478ff;
  color: white;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.search-btn:hover {
  opacity: 0.9;
}

.ads-container {
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 14px;
  background: #f8f9fc;
  padding: 5px 0;
  border: 1px solid #e5e9f2;
  border-left: none;
  border-right: none;
}

.ad-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 3px;
  color: #8a93a8;
  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: 250px;
  }

  .ad-unit-wrapper ins.adsbygoogle {
    min-height: 250px;
  }
}

@media (min-width: 425px) and (max-width: 768px) {
  .ad-unit-wrapper {
    min-height: 90px;
  }

  .ad-unit-wrapper ins.adsbygoogle {
    min-height: 90px;
  }
}

.card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e9f2;
  padding: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(26, 26, 46, 0.06);
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.discover-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #e5e9f2;
  font-size: 16px;
  color: #1a1a2e;
  cursor: pointer;
  transition: 0.2s;
}

.discover-item:hover {
  color: #3478ff;
}

.discover-item:last-child {
  border-bottom: none;
}

.coin-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e9f2;
  padding: 16px;
  text-align: center;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(26, 26, 46, 0.06);
}

.coin-ad-label {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #8a93a8;
  pointer-events: none;
}

.coin-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.coin-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.earn-coins-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #3478ff, #245eea);
  color: white;
  border-radius: 999px;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.15s,
    background 0.15s,
    box-shadow 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(52, 120, 255, 0.25);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.earn-coins-btn span {
  letter-spacing: 1px;
}

@media (hover: hover) {
  .earn-coins-btn:hover {
    box-shadow: 0 6px 18px rgba(52, 120, 255, 0.35);
  }
}

.earn-coins-btn:active {
  transform: scale(0.96);
  background: linear-gradient(135deg, #245eea, #1c4ec5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-coin-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.play-btn,
.more-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #3478ff, #245eea);
  color: white;
  border-radius: 999px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
  box-shadow: 0 4px 12px rgba(52, 120, 255, 0.25);
}

.play-btn:hover,
.more-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.category-title-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.category-title {
  color: #1a1a2e;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.category-btn {
  border: 1px solid #3478ff;
  background: #3478ff;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .category-btn:hover {
    background: #245eea;
    border-color: #245eea;
    color: #ffffff;
  }
}

.category-btn:active {
  background: #1c4ec5;
  border-color: #1c4ec5;
  color: #ffffff;
}

.category-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.game-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e9f2;
  box-shadow: 0 2px 10px rgba(26, 26, 46, 0.06);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.game-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f4f6fb;
}

.game-content {
  padding: 10px;
  text-align: center;
}

.game-title {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}

.game-users {
  color: #16a34a;
  font-size: 12px;
  margin-bottom: 4px;
}

.game-entry {
  color: #5a6478;
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.entry-coin-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.play-btn {
  padding: 11px;
  font-size: 13px;
}

.more-btn {
  margin-top: 16px;
}

.about-section {
  padding: 20px 6px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e9f2;
  text-align: center;
  margin: 14px 0px;
  box-shadow: 0 2px 10px rgba(26, 26, 46, 0.06);
}

.about-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.about-text {
  color: #5a6478;
  line-height: 1.8;
  font-size: 15px;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

footer,
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e9f2;
  padding: 20px 14px 16px;
  width: 100%;
  box-sizing: border-box;
}

.footer-brand {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef1f7;
}

.footer-brand-link {
  text-decoration: none;
  display: inline-block;
}

.footer-brand-name {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, transparent 62%, #c7dbff 62%);
  padding: 0 2px;
}

.footer-brand-tag {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5a6478;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  background: #f8faff;
  border: 1px solid #e8eef9;
  border-radius: 14px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: #3478ff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.footer-col-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a1a2e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  padding: 7px 12px;
  background: #ffffff;
  border: 1px solid #e5e9f2;
  border-radius: 999px;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #245eea;
  border-color: #3478ff;
  background: #eef3ff;
}

.copyright {
  text-align: center;
  color: #8a93a8;
  font-size: 12px;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid #eef1f7;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.copyright a {
  color: #3478ff;
  text-decoration: none;
  font-weight: 700;
}

.copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 360px) {
  footer,
  .site-footer {
    padding: 16px 10px 14px;
  }

  .footer-col {
    padding: 10px;
  }

  .footer-col a {
    font-size: 12px;
    padding: 6px 10px;
  }
}

.loading-spinner {
  text-align: center;
  padding: 40px;
  color: #8a93a8;
  font-size: 14px;
  grid-column: span 2;
}

.error-message {
  text-align: center;
  padding: 40px;
  color: #dc2626;
  font-size: 14px;
  grid-column: span 2;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 12px;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.error-message p {
  margin-bottom: 15px;
}

.retry-btn {
  background: linear-gradient(135deg, #3478ff, #245eea);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.retry-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.no-games {
  text-align: center;
  padding: 40px;
  color: #8a93a8;
  font-size: 14px;
  grid-column: span 2;
  background: #f4f6fb;
  border-radius: 12px;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
  max-width: 100%;
}

.sticky-header {
  background: #ffffff;
  padding: 8px 12px 12px 12px;
  border-bottom: 1px solid #e5e9f2;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.06);
  width: 100%;
  overflow: hidden;
}

.sticky-header.is-fixed {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.sticky-header:has(.header-logo) {
  background: #1a1a2e;
  border-bottom: 1px solid #2a2a45;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.2);
}

.header-category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background: #3478ff;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #3478ff;
  margin: 10px 10px 0;
}

.header-category-icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.sticky-header .search-box {
  margin-bottom: 0;
}

#games-section {
  scroll-margin-top: 80px;
}

html {
  scroll-behavior: smooth;
}

/* Landing page */
.landing-header {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 8px 10px 10px; */
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.landing-hero {
  text-align: center;
  padding: 8px 4px 4px;
}

.landing-hero h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a2e;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.landing-hero h1 .highlight {
  color: #3478ff;
}

.landing-hero .subhead {
  font-size: 15px;
  color: #5a6478;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.play-now-section {
  margin: 16px 0 20px;
  padding: 16px;
  background: #ffffff;
}

.landing-play-btn {
  background: linear-gradient(135deg, #3478ff, #245eea);
  border: none;
  border-radius: 999px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  transition: 0.25s;
  text-decoration: none;
  margin: 0;
  letter-spacing: 0.02em;
  box-shadow: 0 0 14px 2px rgba(52, 120, 255, 0.35);
  -webkit-tap-highlight-color: transparent;
  animation: playNowPulse 1.8s ease-in-out infinite;
}

@keyframes playNowPulse {
  0%,
  100% {
    box-shadow: 0 0 14px 2px rgba(52, 120, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 24px 6px rgba(52, 120, 255, 0.55);
  }
}

.landing-play-btn:hover {
  animation: none;
  opacity: 0.95;
  box-shadow: 0 0 20px 4px rgba(52, 120, 255, 0.45);
}

.landing-play-btn:active {
  animation: none;
  transform: scale(0.98);
}

.landing-play-btn:active {
  animation: none;
  transform: scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
  .landing-play-btn {
    animation: none;
  }
}

.finance-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.card.finance-section {
  padding: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.finance-section-title {
  margin: 0;
  padding: 14px 14px 14px 16px;
  background: #eef3ff;
  border-bottom: 1px solid #dde6f8;
  border-left: 4px solid #3478ff;
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.tip-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.tip-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px;
  border-bottom: 1px solid #eef1f7;
  font-size: 13.5px;
  line-height: 1.65;
  color: #4a5568;
  font-weight: 400;
}

.tip-item:last-child {
  border-bottom: none;
}

.tip-item strong {
  display: block;
  width: fit-content;
  color: #0f172a;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, transparent 62%, #c7dbff 62%);
  padding: 0 2px;
  border: none;
  border-radius: 0;
}

.tip-item span {
  display: block;
  color: #4a5568;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.tip-item span a {
  color: #3478ff;
  font-weight: 600;
  text-decoration: none;
}

.tip-item span a:hover {
  text-decoration: underline;
}

@media (max-width: 360px) {
  .finance-list {
    gap: 10px;
  }

  .finance-section-title {
    padding: 12px 12px 12px 14px;
    font-size: 15px;
  }

  .tip-item {
    padding: 10px 12px;
    font-size: 12.5px;
  }

  .tip-item strong {
    font-size: 13px;
  }
}

@media (min-width: 480px) {
  .finance-list {
    gap: 14px;
  }

  .finance-section-title {
    padding: 16px 16px 16px 18px;
    font-size: 18px;
  }

  .tip-item {
    padding: 14px 16px;
    font-size: 14px;
    gap: 6px;
  }

  .tip-item strong {
    font-size: 14.5px;
  }
}

/* Age verification */
.age-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 28px 12px;
}

.age-title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.age-subtitle {
  font-size: 15px;
  color: #5a6478;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 300px;
}

.age-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.age-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
  color: #ffffff;
  text-decoration: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.age-btn.is-waiting {
  pointer-events: none;
  opacity: 0.7;
}

.age-btn-yes {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.age-btn-yes:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-1px);
}

.age-btn-no {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.age-btn-no:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-1px);
}

.age-btn:active {
  transform: scale(0.96);
}

.age-reason {
  padding: 0;
  overflow: hidden;
  margin-bottom: 14px;
}

.age-reason .finance-section-title {
  border-radius: 0;
}

.age-reason-text {
  margin: 0;
  padding: 12px 14px 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #4a5568;
}

.age-reason-text:last-child {
  padding-bottom: 14px;
}

@media (min-width: 480px) {
  .age-reason-text {
    padding: 14px 16px 0;
    font-size: 14px;
  }

  .age-reason-text:last-child {
    padding-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .landing-hero h1 {
    font-size: 22px;
  }
}

@media (max-width: 380px) {
  .game-title {
    font-size: 14px;
  }
  .game-entry {
    font-size: 12px;
  }
}

@media (max-width: 424px) {
  .main-content {
    padding: 12px;
  }

  .sticky-header {
    width: 100%;
  }

  #games-section {
    scroll-margin-top: 70px;
  }
}

@media (min-width: 425px) {
  body {
    display: flex;
    justify-content: center;
    background: #f4f6fb;
  }

  .main-wrapper {
    max-width: 425px;
    border-left: 1px solid #e5e9f2;
    border-right: 1px solid #e5e9f2;
    background: #ffffff;
  }

  .main-content {
    max-width: 425px;
    margin: 0 auto;
    padding: 12px;
  }

  footer {
    max-width: 425px;
    margin: 0 auto;
    border-left: 1px solid #e5e9f2;
    border-right: 1px solid #e5e9f2;
    border-bottom: 1px solid #e5e9f2;
  }

  .sticky-header {
    max-width: 425px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .main-content {
    padding: 12px 12px;
  }
}

/* ========== Info / legal pages (match index cards) ========== */
.highlight {
  color: #3478ff;
}

.page-body {
  padding: 12px 14px 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #4a5568;
}

.page-body p {
  margin: 0 0 10px;
}

.page-body p:last-child {
  margin-bottom: 0;
}

.page-body a {
  color: #3478ff;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.page-body a:hover {
  text-decoration: underline;
}

.page-body strong {
  color: #111827;
  font-weight: 700;
}

.page-body .policy-list,
.page-body .rights-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.page-body .policy-list li {
  padding: 6px 0 6px 16px;
  position: relative;
  border-bottom: 1px solid #eef1f7;
}

.page-body .policy-list li:last-child {
  border-bottom: none;
}

.page-body .policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3478ff;
}

.page-body .rights-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eef1f7;
}

.page-body .rights-list li:last-child {
  border-bottom: none;
}

.page-body .rights-list li strong {
  display: block;
  margin-bottom: 4px;
  background: linear-gradient(180deg, transparent 62%, #c7dbff 62%);
  width: fit-content;
  font-weight: 800;
}

.page-body .acknowledgement,
.page-body .notice-box {
  margin-top: 8px;
  padding: 10px 12px;
  background: #eef3ff;
  border-left: 3px solid #3478ff;
  border-radius: 0 8px 8px 0;
  color: #111827;
  font-size: 13px;
  line-height: 1.6;
}

.page-body .acknowledgement {
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce2ef;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a2e;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3478ff;
  box-shadow: 0 0 0 3px rgba(52, 120, 255, 0.12);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form button {
  background: linear-gradient(135deg, #3478ff, #245eea);
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  color: #ffffff;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.95;
}

.email-link {
  display: inline-block;
  color: #3478ff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  word-break: break-all;
  margin: 4px 0 8px;
}

.email-link:hover {
  text-decoration: underline;
}

.form-toast {
  display: none;
  margin: 0 14px 10px;
  padding: 10px 12px;
  background: #eef3ff;
  border-left: 3px solid #3478ff;
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
  color: #111827;
}

.form-toast.show {
  display: block;
}

.char-counter {
  text-align: right;
  font-size: 12px;
  color: #8a93a8;
  margin-top: -4px;
}

.char-counter.limit {
  color: #e53935;
  font-weight: 600;
}

.faq-list.finance-list {
  margin-bottom: 14px;
}

.faq-item.card.finance-section {
  padding: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  border: none;
  margin: 0;
  padding: 14px 14px 14px 16px;
  background: #eef3ff;
  border-bottom: 1px solid #dde6f8;
  border-left: 4px solid #3478ff;
  font-size: 17px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  font-family: inherit;
}

.faq-question::after {
  content: "▾";
  color: #3478ff;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 12px 14px 14px;
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer a {
  color: #3478ff;
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 360px) {
  .page-body,
  .contact-form,
  .faq-answer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .faq-question {
    padding: 12px 12px 12px 14px;
    font-size: 15px;
  }
}

@media (min-width: 480px) {
  .page-body,
  .contact-form,
  .faq-answer {
    padding: 14px 16px 16px;
  }

  .faq-question {
    padding: 16px 16px 16px 18px;
    font-size: 18px;
  }
}
