* {
  box-sizing: border-box;
}

:root {
  --page-x: 14px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #050505;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 162, 58, 0.1), transparent 34%),
    #050505;
  display: flex;
  justify-content: center;
  padding: 0 var(--page-x) 20px;
}

.container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}

.hero {
  position: relative;
  width: calc(100% + (var(--page-x) * 2));
  min-height: 480px;
  margin-left: calc(var(--page-x) * -1);
  margin-right: calc(var(--page-x) * -1);
  overflow: hidden;
  background: #080808;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 32%,
      rgba(0, 0, 0, 0.78) 76%,
      #050505 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.74) 0%,
      rgba(0, 0, 0, 0.42) 42%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 188px 18px 22px;
}

.hero h1 {
  margin: 0 0 16px;
  max-width: 62%;
  font-family: "Oswald", sans-serif;
  font-size: clamp(23px, 5.9vw, 29px);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f5f3ee;
}

.hero h1 span {
  display: block;
}

.hero h1 .gold {
  color: #d8a23a;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}

.features li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(216, 162, 58, 0.8);
  border-radius: 50%;
  color: #d8a23a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.cta-button {
  width: 100%;
  min-height: 58px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f0c46a 0%, #c88a23 100%);
  color: #080808;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 28px rgba(216, 162, 58, 0.35);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.cta-button span {
  font-size: 22px;
  line-height: 1;
}

.cta-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.cta-button:active {
  transform: scale(0.985);
}

.cta-button:focus-visible {
  outline: 2px solid #f0c46a;
  outline-offset: 3px;
}

.results-card {
  margin-top: 14px;
  padding: 6px 0 0;
}

.results-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  color: #f5f3ee;
}

.result-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.coin-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  border: 1px solid rgba(216, 162, 58, 0.9);
  color: #d8a23a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.result-line p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.result-line strong {
  color: #e3b34f;
  font-weight: 800;
}

.withdrawal-proof {
  width: 100%;
  margin-top: 12px;
}

.withdrawal-proof img {
  width: 100%;
  display: block;
  border-radius: 12px;
  background: #111;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.reviews-section {
  margin-top: 16px;
}

.reviews-section h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  color: #f5f3ee;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 14px;
}

.reviews-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  background: #111;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.cta-button--bottom {
  margin-top: 18px;
  margin-bottom: 8px;
}

@media (max-width: 360px) {
  :root {
    --page-x: 10px;
  }

  .page {
    padding-bottom: 18px;
  }

  .hero {
    min-height: 462px;
  }

  .hero-content {
    padding: 182px 12px 18px;
  }

  .hero h1 {
    max-width: 64%;
    font-size: 22px;
  }

  .features li {
    font-size: 13px;
  }

  .cta-button {
    min-height: 54px;
    font-size: 13px;
    gap: 14px;
  }

  .results-card {
    padding-top: 4px;
  }

  .reviews-grid {
    gap: 12px;
  }

  .reviews-grid {
    padding: 0 8px;
  }
}
