/* 7k497.lol — Burnt Sienna palette */
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;500;600;700&family=Onest:wght@300;400;500;600&display=swap');

:root {
  --bg:       #160d08;
  --card:     #23150c;
  --card2:    #2f1d11;
  --sienna:   #c0562a;
  --gold:     #e0a94f;
  --text:     #f6ece2;
  --muted:    #9a7d68;
  --muted2:   #d3b59c;
  --border:   #3a2616;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Onest', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  line-height: 1.25;
}

a { color: var(--sienna); text-decoration: none; }
a:hover { color: var(--gold); }

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

/* LAYOUT */
.sien-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.sien-section { padding: 64px 0; }
.sien-section--alt { background: var(--card); }
.sien-section--alt2 { background: var(--card2); }

/* NAV */
.sien-nav {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.sien-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sien-nav__logo {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.sien-nav__logo span { color: var(--gold); }
.sien-nav__links { display: flex; gap: 28px; align-items: center; }
.sien-nav__links a { color: var(--muted2); font-size: 0.95rem; font-weight: 500; transition: color .2s; }
.sien-nav__links a:hover { color: var(--text); }
.sien-nav__cta {
  background: var(--sienna);
  color: var(--text) !important;
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background .2s;
}
.sien-nav__cta:hover { background: #a8481f !important; color: var(--text) !important; }

/* HERO */
.sien-hero {
  background: linear-gradient(135deg, #160d08 0%, #25140a 50%, #321b0d 100%);
  padding: 80px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.sien-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.sien-hero h1 span { color: var(--gold); }
.sien-hero__sub {
  font-size: 1.15rem;
  color: var(--muted2);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.sien-hero__badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.sien-badge {
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--muted2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.sien-badge--gold { border-color: var(--gold); color: var(--gold); }
.sien-badge--blue { border-color: var(--sienna); color: #e08a5f; }

/* BUTTONS */
.sien-btn {
  display: inline-block;
  background: var(--sienna);
  color: var(--text);
  padding: 14px 40px;
  border-radius: 8px;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.sien-btn:hover { background: #a8481f; color: var(--text); transform: translateY(-2px); }
.sien-btn--lg { padding: 16px 52px; font-size: 1.15rem; }
.sien-btn--outline {
  background: transparent;
  border: 2px solid var(--sienna);
  color: var(--sienna);
}
.sien-btn--outline:hover { background: var(--sienna); color: var(--text); }

/* WELCOME BONUS */
.sien-bonus {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.sien-bonus__title {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: 'Zilla Slab', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sien-bonus__amount {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.sien-bonus__amount span { color: var(--gold); }
.sien-bonus__sub { color: var(--muted2); margin-top: 10px; font-size: 0.95rem; }

/* DEPOSIT STEPS */
.sien-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.sien-step {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}
.sien-step__num {
  width: 40px; height: 40px;
  background: var(--sienna);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 auto 14px;
}
.sien-step h4 { font-size: 1rem; margin-bottom: 6px; color: var(--text); }
.sien-step p { font-size: 0.88rem; color: var(--muted2); line-height: 1.5; }

/* SECTION TITLES */
.sien-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 12px;
}
.sien-section-title span { color: var(--gold); }
.sien-section-lead {
  color: var(--muted2);
  font-size: 1rem;
  max-width: 680px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* CARDS GRID */
.sien-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.sien-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color .2s;
}
.sien-card:hover { border-color: var(--sienna); }
.sien-card__icon {
  width: 48px; height: 48px;
  background: var(--card2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.sien-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.sien-card p { font-size: 0.88rem; color: var(--muted2); line-height: 1.55; }

/* SLOTS TABLE */
.sien-table-wrap { overflow-x: auto; }
.sien-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.sien-table th {
  background: var(--card2);
  color: var(--muted2);
  text-align: left;
  padding: 12px 14px;
  font-family: 'Zilla Slab', serif;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.sien-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.sien-table tr:hover td { background: var(--card2); }
.sien-table td:nth-child(3) { color: #e08a5f; font-weight: 600; }
.sien-table td:nth-child(4) { color: var(--gold); font-weight: 600; }

/* VIP */
.sien-vip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.sien-vip-tier {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
}
.sien-vip-tier__name { font-family: 'Zilla Slab', serif; font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 6px; }
.sien-vip-tier__pct { font-size: 1.5rem; font-weight: 700; color: var(--sienna); font-family: 'Zilla Slab', serif; }
.sien-vip-tier__label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* PAYMENTS */
.sien-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.sien-pay-item {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 16px;
}
.sien-pay-item__name { font-family: 'Zilla Slab', serif; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.sien-pay-item__row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--muted2); margin-top: 4px; }
.sien-pay-item__row span:last-child { color: var(--gold); }

/* LIVE SECTION */
.sien-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.sien-live-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sienna);
  border-radius: 8px;
  padding: 22px 18px;
}
.sien-live-card__title { font-family: 'Zilla Slab', serif; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.sien-live-card__provider { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.sien-live-card__mult { font-size: 1.4rem; font-weight: 700; color: var(--gold); font-family: 'Zilla Slab', serif; }

/* TOURNAMENT */
.sien-tournament {
  background: linear-gradient(135deg, #25140a, #2f1d11);
  border: 1px solid var(--sienna);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.sien-tournament__name { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sien-tournament__prize { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gold); font-family: 'Zilla Slab', serif; margin-bottom: 20px; }
.sien-tournament__places { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.sien-tournament__place { text-align: center; }
.sien-tournament__place-num { font-size: 0.8rem; color: var(--muted); }
.sien-tournament__place-sum { font-size: 1.15rem; font-weight: 700; color: var(--text); }

/* OFFICIAL HIGHLIGHT */
.sien-official-box {
  background: var(--card2);
  border: 1px solid var(--sienna);
  border-radius: 10px;
  padding: 28px 24px;
  margin: 24px 0;
}
.sien-official-box h3 { color: var(--gold); margin-bottom: 12px; }
.sien-official-box p { color: var(--muted2); font-size: 0.92rem; line-height: 1.6; }

/* FAQ */
.sien-faq { margin-top: 28px; }
.sien-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.sien-faq-item:last-child { border-bottom: none; }
.sien-faq-item h4 { font-size: 1rem; color: var(--text); margin-bottom: 8px; font-family: 'Zilla Slab', serif; font-weight: 600; }
.sien-faq-item p { font-size: 0.9rem; color: var(--muted2); line-height: 1.6; }

/* AUTHOR NOTE */
.sien-author-note {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 40px 0 0;
  line-height: 1.6;
}

/* FOOTER */
.sien-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.sien-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.sien-footer__brand { font-family: 'Zilla Slab', serif; font-weight: 700; font-size: 1.3rem; color: var(--text); margin-bottom: 12px; }
.sien-footer__brand span { color: var(--gold); }
.sien-footer__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.sien-footer__col-title { font-family: 'Zilla Slab', serif; font-weight: 600; font-size: 0.95rem; color: var(--muted2); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.sien-footer__links { list-style: none; }
.sien-footer__links li { margin-bottom: 8px; }
.sien-footer__links a { font-size: 0.85rem; color: var(--muted); transition: color .2s; }
.sien-footer__links a:hover { color: var(--text); }
.sien-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}
.sien-footer__legal { margin-top: 10px; font-size: 0.75rem; color: #5c3f29; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .sien-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .sien-nav__links a:not(.sien-nav__cta) { display: none; }
  .sien-hero { padding: 52px 0 48px; }
  .sien-bonus { padding: 28px 20px; }
  .sien-tournament { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .sien-section { padding: 44px 0; }
  .sien-btn--lg { padding: 13px 32px; font-size: 1rem; }
}
