:root {
  --ink: #12151f;
  --muted: #5e6678;
  --line: #dfe7ee;
  --surface: #ffffff;
  --bg: #fff7f6;
  --green: #e84b45;
  --green-dark: #7a1d1a;
  --lime: #2c62d6;
  --blue: #0a8f78;
  --red: #e94b45;
  --amber: #f4a31c;
  --teal: #00a6a6;
  --violet: #7b49e6;
  --shadow: 0 18px 46px rgba(20, 40, 70, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--green-dark);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav a {
  padding: 8px 11px;
  border-radius: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 750;
}

.main-nav a.active,
.main-nav a:hover {
  background: #e6f6ee;
  color: var(--green-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 850;
  border: 1px solid transparent;
  white-space: nowrap;
}

.header-cta,
.btn.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 10px 24px rgba(12, 139, 90, 0.24);
}

.btn.secondary {
  color: white;
  background: var(--blue);
}

.btn.light {
  color: var(--green-dark);
  background: var(--lime);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 36px;
  min-height: 680px;
  padding: 74px 6vw 54px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(12, 139, 90, 0.12), rgba(244, 163, 28, 0.12)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 22px, rgba(235, 248, 241, 0.74) 22px 44px);
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.lead {
  max-width: 640px;
  color: #344054;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: -34px auto 0;
  width: min(1180px, calc(100% - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 112px;
  padding: 20px;
  background: var(--surface);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  color: var(--green-dark);
}

.trust-strip span,
.section-heading p,
.info-card p,
.game-card p,
.ranking-panel p,
.faq-item p,
.site-footer p,
.cta-section p {
  color: var(--muted);
}

.section-block,
.section-band,
.ranking-panel,
.cta-section {
  padding: 78px 6vw;
}

.section-band {
  background: #101828;
  color: white;
}

.section-band .section-heading p,
.section-band .game-card p {
  color: #c7d2e4;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.info-grid,
.game-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.game-card,
.faq-item {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.game-card {
  position: relative;
  border: 0;
  color: white;
  overflow: hidden;
}

.game-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  font-weight: 900;
}

.tone-1 { background: var(--green); }
.tone-2 { background: var(--red); }
.tone-3 { background: var(--blue); }
.tone-4 { background: var(--amber); color: #2b1800; }
.tone-4 p { color: #4a2b00; }
.tone-5 { background: var(--teal); }
.tone-6 { background: var(--violet); }

.ranking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
  background: #fff8e5;
}

.ranking-list {
  display: grid;
  gap: 10px;
}

.ranking-list span {
  padding: 14px 16px;
  border-radius: 8px;
  background: white;
  border: 1px solid #f3d28a;
  font-weight: 800;
}

.faq-item {
  min-height: 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-item p {
  margin: 12px 0 0;
}

.cta-section {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--green-dark);
  color: white;
}

.cta-section p {
  max-width: 650px;
  color: #cfebde;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 6vw;
  color: #d8e8df;
  background: #071d17;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: white;
  font-weight: 750;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    font-size: 44px;
  }

  .trust-strip,
  .info-grid,
  .game-grid,
  .faq-grid,
  .ranking-panel {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .section-block,
  .section-band,
  .ranking-panel,
  .cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

.site-profile {
  border-left: 5px solid var(--green);
}

.daily-note {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--green) 8%, white);
}
