/* Amunbet Minimal Onyx — Style 2 */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --bg: #0e0e0e;
  --bg-elevated: #141414;
  --text: #f2f2f2;
  --text-muted: #a3a3a3;
  --gold: #b8944a;
  --gold-soft: #9a7b3c;
  --line: #2a2a2a;
  --line-soft: #1f1f1f;
  --white: #ffffff;
  --max: 1080px;
  --space: clamp(3.5rem, 8vw, 6.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

a:hover {
  color: var(--white);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.92);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
}

.header-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Buttons — flat, outlined only */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: var(--gold);
  border-color: var(--gold-soft);
  background: transparent;
}

.btn-primary:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.btn-secondary {
  color: var(--white);
  border-color: #4a4a4a;
  background: transparent;
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: var(--gold-soft);
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 0.95rem;
}

/* Hero */
.hero {
  padding: clamp(4rem, 10vw, 7rem) 0 var(--space);
  border-bottom: 1px solid var(--line-soft);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero-eyebrow {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  border: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

/* Sections */
.section {
  padding: var(--space) 0;
  border-bottom: 1px solid var(--line-soft);
}

.section-label {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1.35rem;
  max-width: 28ch;
}

.section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.25rem 0 0.9rem;
}

.section p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  max-width: 62ch;
}

.section p:last-child {
  margin-bottom: 0;
}

.section-intro {
  margin-bottom: 2.5rem;
}

/* Feature grid — thin lines only */
.feature-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 2.5rem;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .feature-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .feature-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.feature-item h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.feature-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: none;
}

.feature-item .accent {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.05rem;
  display: block;
  margin-top: 0.35rem;
}

/* Lists */
.content-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  max-width: 68ch;
}

.content-list li {
  position: relative;
  padding: 1.15rem 0 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-muted);
}

.content-list li:last-child {
  border-bottom: none;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 6px;
  height: 1px;
  background: var(--gold-soft);
}

.content-list strong {
  color: var(--white);
  font-weight: 600;
}

/* Game categories */
.category-block {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
}

.category-block h3 {
  margin-top: 0;
  color: var(--white);
}

.category-block p {
  margin-bottom: 0;
}

/* Banner strip — full image, no crop */
.banner-strip {
  margin: 2.5rem 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-strip img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Tables */
.table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.data-table th,
.data-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.data-table th {
  color: var(--white);
  font-weight: 600;
  background: transparent;
  border-bottom-color: #3a3a3a;
}

.data-table td {
  color: var(--text-muted);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  color: var(--text);
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
  max-width: 72ch;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.faq-item:first-child {
  border-top: 1px solid var(--line-soft);
}

.faq-item h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--white);
}

.faq-item p {
  margin: 0;
  max-width: none;
}

/* CTA block */
.cta-block {
  text-align: left;
  padding: var(--space) 0;
}

.cta-block h2 {
  max-width: 22ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Inner pages */
.page-hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--line-soft);
}

.page-hero h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 22ch;
}

.page-content {
  padding: var(--space) 0;
}

.page-content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  margin: 2.75rem 0 1.1rem;
  letter-spacing: -0.015em;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.85rem;
}

.page-content p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  max-width: 68ch;
}

.page-content .content-list {
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.5rem;
  line-height: 0;
}

.footer-brand img {
  width: auto;
  height: 44px;
  max-width: 180px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.footer-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-soft);
}

.footer-copy {
  color: #666;
  font-size: 0.82rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}

/* Divider accent — sparse gold */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold-soft);
  margin: 0 0 1.5rem;
  border: none;
}

/* Utility */
.text-white {
  color: var(--white);
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-cta {
    width: 100%;
  }

  .header-cta .btn {
    flex: 1;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
}
