/* ===== 1xSlots — Site Styles ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #08070B;
  color: #e8e6e3;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #FAE0A0; text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .85; }

/* ====== HEADER ====== */
.site-header {
  background: #0F0D12;
  border-bottom: 1px solid #1a1820;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 18px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-wrap img { height: 38px; width: auto; }
.logo-text { font-weight: 700; font-size: 18px; color: #fff; letter-spacing: .5px; }

.main-nav {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: #d9d6d0;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active {
  background: #18181A;
  color: #FAE0A0;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
  border: none;
  cursor: pointer;
  transition: transform .15s, filter .15s;
  border-radius: 0; /* квадратные углы */
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-primary { background: #FAE0A0; color: #0F0D12; }
.btn-secondary { background: #262627; color: #FAE0A0; border: 1px solid #2f2f30; }
.btn-large { padding: 16px 36px; font-size: 15px; }

.burger {
  display: none;
  background: transparent;
  border: 1px solid #262526;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FAE0A0;
  position: relative;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: #FAE0A0;
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }

/* ====== HERO / BANNER ====== */
.hero {
  background: linear-gradient(180deg, #0F0D12 0%, #08070B 100%);
  padding: 40px 0 30px;
  border-bottom: 1px solid #18181A;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-banner {
  width: 100%;
  border: 1px solid #18181A;
  overflow: hidden;
  margin-bottom: 24px;
}
.hero-banner img { width: 100%; height: auto; display: block; }

.hero-title {
  font-size: 38px;
  line-height: 1.15;
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.hero-title span.accent { color: #FAE0A0; }
.hero-sub {
  font-size: 17px;
  color: #b5b1aa;
  max-width: 820px;
  margin-bottom: 26px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* ====== SECTIONS ====== */
section.block {
  padding: 50px 0;
  border-bottom: 1px solid #18181A;
}
section.block:last-child { border-bottom: 0; }
.block-header { margin-bottom: 28px; }
h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
h2 {
  color: #FAE0A0;
  font-size: 28px;
  font-weight: 700;
  margin: 28px 0 16px;
  line-height: 1.25;
}
h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  margin: 22px 0 12px;
  line-height: 1.3;
}
h4 {
  color: #f0e0b0;
  font-size: 17px;
  font-weight: 700;
  margin: 18px 0 10px;
}
p {
  color: #cfcbc4;
  margin-bottom: 14px;
  font-size: 16px;
}
ul, ol {
  margin: 0 0 18px 22px;
  color: #cfcbc4;
}
ul li, ol li { margin-bottom: 8px; }
strong { color: #f1eddf; font-weight: 700; }
em { color: #FAE0A0; font-style: normal; font-weight: 600; }

/* TOC */
.toc {
  background: #18181A;
  border: 1px solid #262526;
  padding: 22px 26px;
  margin: 0 0 30px;
}
.toc h3 { margin-top: 0; color: #FAE0A0; font-size: 18px; }
.toc ol { margin: 10px 0 0 22px; }
.toc ol li { margin-bottom: 6px; }
.toc a { color: #d8d4cc; font-size: 14.5px; }
.toc a:hover { color: #FAE0A0; }

/* IMAGE BLOCKS */
.figure {
  margin: 28px 0;
  text-align: center;
}
.figure img {
  width: 100%;
  height: auto;
  border: 1px solid #18181A;
  display: block;
}
.figure figcaption {
  margin-top: 10px;
  color: #8c887e;
  font-size: 13.5px;
  font-style: italic;
}

/* INFO CARDS */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.card {
  background: #18181A;
  border: 1px solid #262526;
  padding: 22px;
}
.card h3 {
  color: #FAE0A0;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}
.card p { font-size: 15px; margin-bottom: 0; color: #b5b1aa; }
.card .icn {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  color: #FAE0A0;
}

/* TABLES */
.t-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  font-size: 15px;
  background: #18181A;
  border: 1px solid #262526;
}
.t-table th {
  background: #0F0D12;
  color: #FAE0A0;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid #262526;
}
.t-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #262526;
  color: #cfcbc4;
}
.t-table tr:last-child td { border-bottom: 0; }
.t-table tr:hover td { background: #1d1c1f; }

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, #18181A 0%, #1f1c25 100%);
  border: 1px solid #2a2630;
  padding: 32px 28px;
  text-align: center;
  margin: 30px 0;
}
.cta-box h3 { color: #FAE0A0; font-size: 24px; margin-bottom: 12px; }
.cta-box p { color: #d4d0c8; margin-bottom: 20px; }
.promo-code {
  display: inline-block;
  background: #08070B;
  border: 1px dashed #FAE0A0;
  padding: 10px 22px;
  font-family: "Courier New", monospace;
  font-size: 18px;
  font-weight: 700;
  color: #FAE0A0;
  letter-spacing: 2px;
  margin: 12px 0;
}

/* FAQ */
.faq-item {
  background: #18181A;
  border: 1px solid #262526;
  margin-bottom: 12px;
  padding: 18px 22px;
}
.faq-item h3 { color: #FAE0A0; font-size: 17px; margin: 0 0 8px; }
.faq-item p { margin: 0; color: #b5b1aa; font-size: 15px; }

/* FOOTER */
.site-footer {
  background: #0F0D12;
  border-top: 1px solid #18181A;
  padding: 40px 0 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: #FAE0A0; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #a09c93; font-size: 14px; }
.footer-grid a:hover { color: #FAE0A0; }
.footer-about p { color: #8c887e; font-size: 14px; line-height: 1.6; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid #18181A;
  text-align: center;
  color: #6e6a62;
  font-size: 13px;
}
.footer-payments {
  margin: 24px 0;
  padding: 18px;
  background: #0a0810;
  border: 1px solid #18181A;
}
.footer-payments img { width: 100%; height: auto; opacity: .85; }

/* MOBILE */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 30px; }
}
@media (max-width: 760px) {
  .header-inner { padding: 12px 16px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0F0D12;
    flex-direction: column;
    padding: 12px 16px;
    border-top: 1px solid #18181A;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 14px; }
  .burger { display: inline-flex; }
  .header-actions .btn { padding: 9px 14px; font-size: 12px; }
  .logo-wrap img { height: 32px; }
  .logo-text { display: none; }
  .container { padding: 0 16px; }
  .hero { padding: 24px 0; }
  .hero-title { font-size: 24px; }
  .hero-sub { font-size: 15px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  section.block { padding: 32px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .t-table th, .t-table td { padding: 10px 12px; font-size: 14px; }
  .cta-box { padding: 24px 18px; }
  .cta-box h3 { font-size: 20px; }
  .btn-large { padding: 14px 24px; font-size: 14px; width: 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
@media (max-width: 460px) {
  .header-actions { gap: 6px; }
  .header-actions .btn { padding: 8px 10px; font-size: 11px; letter-spacing: .3px; }
}
