/* ============================================
   PINCO CASINO — Design 4 (Editorial)
   Минималистичный газетный стиль.
   Чёрный, белый, бургунди. Без анимаций.
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f3ee;
  --ink: #111111;
  --ink-2: #2a2a2a;
  --muted: #6b6b6b;
  --rule: #d8d4cc;
  --accent: #b91c1c;
  --accent-soft: #fbeaea;
  --container: 1120px;
  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: background .15s, color .15s, border-color .15s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--accent); color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--text { background: transparent; color: var(--ink); padding: 12px 0; }
.btn--text:hover { color: var(--accent); }
.btn--lg { padding: 16px 32px; font-size: 15px; }

/* ===== Top strip ===== */
.strip {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}
.strip__inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; max-width: var(--container); margin: 0 auto; }
.strip__date { letter-spacing: .5px; text-transform: uppercase; }
.strip__age { font-weight: 700; color: var(--ink); border: 1px solid var(--ink); padding: 1px 6px; }

/* ===== Header / Masthead ===== */
.masthead {
  border-bottom: 2px solid var(--ink);
  padding: 28px 0 18px;
  text-align: center;
  position: relative;
}
.masthead__brand {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--ink);
  text-decoration: none;
}
.masthead__sub {
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}
.masthead__rule {
  height: 1px;
  background: var(--rule);
  margin-top: 18px;
}
.masthead__cta {
  position: absolute;
  right: 24px;
  top: 24px;
  display: flex;
  gap: 12px;
}

/* ===== Nav ===== */
.nav {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 5;
}
.nav__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav__link {
  color: var(--ink-2);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--accent); border-color: var(--accent); }

/* ===== Hero (lede) ===== */
.lede {
  padding: 50px 0 30px;
  border-bottom: 1px solid var(--rule);
}
.lede__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: end;
}
.lede__kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}
.lede__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.lede__title em { font-style: italic; color: var(--accent); }
.lede__sub {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}
.lede__cta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.lede__facts {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}
.lede__fact {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 14px;
}
.lede__fact strong { font-weight: 600; color: var(--ink); }
.lede__fact span { color: var(--muted); }

/* ===== Byline ===== */
.byline {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.byline__inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: center;
}
.byline__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.byline__name { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.byline__name strong { color: var(--ink); }
.byline__quote {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-2);
}

/* ===== Sections ===== */
.section { padding: 64px 0; border-bottom: 1px solid var(--rule); }
.section--alt { background: var(--bg-alt); }

.section-head { margin-bottom: 36px; max-width: 760px; }
.section-head__num {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-head__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.section-head__sub {
  margin-top: 14px;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 640px;
}

/* ===== Bonuses (table-style cards) ===== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--rule);
}
.bonus {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 24px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.bonus--featured { background: var(--accent-soft); }
.bonus__tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.bonus__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.bonus__amount {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.bonus__amount-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.bonus__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: 15px;
  color: var(--ink-2);
  flex: 1;
}
.bonus__list li {
  padding: 7px 0;
  border-bottom: 1px dotted var(--rule);
}
.bonus__list li:last-child { border-bottom: none; }

/* ===== Slots ===== */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
}
.slot {
  background: var(--bg);
  border: 1px solid var(--rule);
}
.slot__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.slot__img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.slot__body { padding: 14px 16px 16px; }
.slot__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}
.slot__provider {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.slot__meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--rule);
  padding-top: 10px;
}
.slot__meta b { font-weight: 600; color: var(--ink); }

/* ===== Providers ===== */
.providers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.providers-list li {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--ink-2);
  background: var(--bg);
}

/* ===== Payments table ===== */
.pay-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 15px;
  background: var(--bg);
}
.pay-table th {
  text-align: left;
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--ink);
}
.pay-table td {
  padding: 14px 16px;
  border: 1px solid var(--rule);
}
.pay-table tr:nth-child(even) td { background: var(--bg-alt); }
.pay-table .pay-method { font-weight: 600; color: var(--ink); }
.pay-table .pay-fast { color: var(--accent); font-weight: 600; }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review {
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  background: var(--bg);
}
.review__stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; margin-bottom: 8px; }
.review__text { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin-bottom: 14px; }
.review__attr { font-family: var(--sans); font-size: 13px; color: var(--muted); }
.review__attr strong { color: var(--ink); }

/* ===== FAQ ===== */
.faq-list { border-top: 2px solid var(--ink); }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item__body {
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 760px;
}

/* ===== About / Long read ===== */
.longread {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
}
.longread__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.15;
  max-width: 820px;
}
.longread__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 720px;
}
.longread__article {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
}
.longread__toc {
  position: sticky;
  top: 80px;
  align-self: start;
  font-family: var(--sans);
  font-size: 14px;
}
.longread__toc-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  font-weight: 600;
}
.longread__toc a {
  display: block;
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  line-height: 1.4;
}
.longread__toc a:hover { color: var(--accent); }
.longread__body h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 14px;
  color: var(--ink);
  letter-spacing: -0.2px;
  scroll-margin-top: 80px;
}
.longread__body h3:first-child { margin-top: 0; }
.longread__body p { margin-bottom: 14px; }
.longread__body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 700;
  float: left;
  line-height: .9;
  margin: 4px 8px 0 0;
  color: var(--accent);
}
.longread__body b { color: var(--ink); font-weight: 700; }
.longread__body ul {
  margin: 8px 0 18px 22px;
  padding: 0;
}
.longread__body li {
  margin-bottom: 6px;
}

/* ===== Final CTA ===== */
.cta-final {
  background: var(--ink);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-final__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-final__title em { color: var(--accent); font-style: italic; }
.cta-final__sub { font-size: 18px; color: #c9c9c9; margin-bottom: 26px; }
.cta-final .btn--primary { background: var(--accent); }
.cta-final .btn--primary:hover { background: #fff; color: var(--ink); }

/* ===== Footer ===== */
.footer { background: var(--bg-alt); padding: 50px 0 24px; border-top: 1px solid var(--rule); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--ink);
}
.footer__col a {
  display: block;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  padding: 4px 0;
}
.footer__col a:hover { color: var(--accent); }
.footer__about { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.footer__age {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .lede__inner { grid-template-columns: 1fr; gap: 30px; }
  .longread__article { grid-template-columns: 1fr; gap: 24px; }
  .longread__toc { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .masthead__cta { display: none; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .nav__inner { gap: 16px; font-size: 12px; }
  .pay-table { font-size: 13px; }
  .pay-table th, .pay-table td { padding: 10px 8px; }
}
