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

:root {
  --text: #141414;
  --muted: #5f6773;
  --line: rgba(14, 20, 28, 0.08);
  --gold: #f5c858;
  --gold-deep: #dca636;
  --panel: #ffffff;
  --soft: #f5f6f8;
  --silver: #d7d7d7;
  --pink: #cf7396;
  --shadow: 0 24px 60px rgba(14, 20, 28, 0.08);
  --container: min(1200px, calc(100vw - 40px));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(245, 200, 88, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 48%, #f3f3f5 100%);
  font-family: "Manrope", "Noto Sans SC", sans-serif;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.topbar,
.intro-inner,
.portal-board,
.trust-grid,
.footer-inner {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  padding-top: 20px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(14, 20, 28, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.topbar-actions,
.trust-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mini-link,
.text-link,
.trust-links a,
.footer-links a {
  color: var(--muted);
  transition: color 0.22s ease;
}

.mini-link:hover,
.text-link:hover,
.trust-links a:hover,
.footer-links a:hover {
  color: #111;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover,
.country-tile:hover {
  transform: translateY(-2px);
}

.btn-static {
  cursor: default;
}

.btn-static:hover {
  transform: none;
}

.btn-primary {
  color: #1d1604;
  background: linear-gradient(135deg, #ffdc7e 0%, #efbd49 100%);
  box-shadow: 0 14px 30px rgba(239, 189, 73, 0.32);
}

.btn-outline {
  border-color: rgba(14, 20, 28, 0.12);
  background: #fff;
}

.btn-white {
  min-height: 52px;
  padding-inline: 28px;
  color: #191919;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.intro-section {
  padding: 52px 0 26px;
}

.intro-inner {
  max-width: 980px;
  text-align: center;
}

.intro-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.intro-kicker {
  margin: 0 0 14px;
  color: #717784;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.intro-inner h1 {
  margin: 0;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1;
}

.intro-copy {
  max-width: 980px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.portal-stage {
  padding: 20px 0 34px;
}

.portal-board {
  padding: 44px 40px 40px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 24%),
    linear-gradient(90deg, #cfcfcf 0%, #ececec 50%, #d6d6d6 100%);
  box-shadow: var(--shadow);
}

.portal-head {
  text-align: center;
}

.portal-kicker {
  margin: 0 0 10px;
  color: #6f7480;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.portal-head h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1;
}

.portal-head p {
  margin: 12px 0 0;
  color: #5f6670;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.country-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 208px;
  padding: 20px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.country-tile:hover {
  border-color: rgba(245, 200, 88, 0.9);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.1);
}

.country-tile.featured {
  background:
    radial-gradient(circle at top center, rgba(245, 200, 88, 0.38), rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.3);
}

.country-glow {
  position: absolute;
  inset: auto auto -16px 50%;
  width: 90px;
  height: 18px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(190, 118, 149, 0.26);
  filter: blur(10px);
}

.country-flag {
  width: 88px;
  height: 88px;
  margin-top: 2px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  object-fit: cover;
  background: #fff;
}

.country-tile strong {
  font-size: 1.04rem;
}

.country-tile small {
  color: #686f79;
  line-height: 1.5;
}

.portal-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.provider-zone {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.provider-title {
  margin: 0 0 18px;
  text-align: center;
  font-weight: 800;
}

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

.provider-grid img {
  width: 100%;
  height: 84px;
  object-fit: contain;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.trust-section {
  padding: 8px 0 34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.trust-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(14, 20, 28, 0.05);
}

.trust-card h3 {
  margin: 0 0 12px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.trust-links {
  margin-top: 20px;
}

.logo-card {
  text-align: center;
}

.logo-cloud {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.logo-cloud img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.site-footer {
  padding: 0 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .country-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .trust-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100vw - 20px, 740px);
  }

  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions {
    width: 100%;
  }

  .intro-section {
    padding-top: 34px;
  }

  .intro-inner h1 {
    font-size: clamp(2.2rem, 9.6vw, 3.1rem);
  }

  .portal-board {
    padding: 28px 18px 24px;
    border-radius: 28px;
  }

  .country-grid,
  .provider-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .country-tile {
    min-height: 188px;
  }
}

@media (max-width: 430px) {
  .topbar {
    padding-top: 12px;
  }

  .topbar-inner {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .topbar-actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .country-grid,
  .provider-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .country-tile {
    min-height: 172px;
  }

  .footer-inner {
    font-size: 0.88rem;
  }
}
