/* ============================================
   PINCO CASINO — Design 2 (Soft Pink Premium)
   Светлая премиум-тема, скруглённые формы, золото
   ============================================ */

:root {
  --bg: #fff8fb;
  --bg-alt: #fff;
  --bg-dark: #1c1530;
  --pink: #e91e63;
  --pink-soft: #ffd6e6;
  --pink-deep: #ad1457;
  --rose: #ff6b9d;
  --gold: #c9a04a;
  --gold-light: #f0d77c;
  --text: #2a1f3d;
  --text-muted: #6b5d80;
  --text-light: #9b8eb3;
  --border: #f3e3ec;
  --shadow-sm: 0 2px 12px rgba(173, 20, 87, 0.06);
  --shadow: 0 8px 30px rgba(173, 20, 87, 0.10);
  --shadow-lg: 0 20px 50px rgba(173, 20, 87, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all .2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  transition: all .25s ease;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .01em;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: 0 4px 16px rgba(201,160,74,.35);
}
.btn--gold:hover { background-position: 100% 0; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,160,74,.5); }
.btn--outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: #fff; }
.btn--text { color: var(--text); padding: 14px 18px; }
.btn--text:hover { color: var(--pink); }
.btn--lg { padding: 16px 36px; font-size: 15px; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 251, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(233,30,99,.3);
}
.logo__word { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: .02em; }

.nav { display: flex; gap: 4px; }
.nav a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: all .2s;
}
.nav a:hover { color: var(--pink); background: var(--pink-soft); }

.header__right { display: flex; align-items: center; gap: 8px; }

/* ===== Hero ===== */
.hero { padding: 50px 0 80px; position: relative; }
.hero::before {
  content: '';
  position: absolute;
  top: 50px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--pink-soft), transparent 70%);
  z-index: 0;
}

.slider { position: relative; z-index: 1; }
.slider__viewport { position: relative; min-height: 480px; }
.slide {
  display: none;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 480px;
  animation: fade .6s ease;
}
.slide.is-active { display: grid; }
@keyframes fade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.pill {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(201,160,74,.3);
}
.slide__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -.01em;
  color: var(--text);
}
.slide__title em { font-style: italic; color: var(--pink); font-weight: 700; }
.slide__lead { font-size: 17px; color: var(--text-muted); margin-bottom: 30px; max-width: 540px; }
.slide__cta { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }

.slide__stats { display: flex; gap: 36px; padding-top: 28px; border-top: 1px solid var(--border); }
.slide__stats div { display: flex; flex-direction: column; }
.slide__stats strong { font-family: var(--font-display); font-size: 32px; color: var(--pink); margin-bottom: 4px; }
.slide__stats span { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: .1em; }

/* Slider visuals */
.slide__right { display: flex; align-items: center; justify-content: center; min-height: 420px; position: relative; }
.card-stack { position: relative; width: 380px; height: 420px; }
.poker-card {
  position: absolute;
  width: 180px; height: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--text);
}
.poker-card--1 { left: 0; top: 80px; transform: rotate(-12deg); color: #2a1f3d; }
.poker-card--2 { left: 100px; top: 40px; transform: rotate(2deg); z-index: 2; color: var(--pink); }
.poker-card--3 { right: 0; top: 100px; transform: rotate(15deg); color: var(--gold); }
.hero__chip-glow {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 80px;
  background: radial-gradient(ellipse, var(--pink) 0%, transparent 70%);
  opacity: .25;
  filter: blur(20px);
}

.weekend-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px rgba(233,30,99,.35);
}
.weekend-circle__inner {
  width: 250px; height: 250px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 70px;
  color: var(--pink);
  font-weight: 900;
}
.trophy-box { font-size: 240px; filter: drop-shadow(0 30px 50px rgba(201,160,74,.4)); }

.slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}
.slider__arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 24px;
  box-shadow: var(--shadow);
  transition: all .25s;
}
.slider__arrow:hover { background: var(--pink); color: #fff; transform: scale(1.05); }
.slider__indicator { font-family: var(--font-display); font-size: 18px; color: var(--text-muted); }
.slider__indicator span:first-child { color: var(--pink); font-weight: 700; }

/* ===== Trust bar ===== */
.trust { padding: 40px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.trust__item strong { font-family: var(--font-display); font-size: 36px; color: var(--pink); display: block; margin-bottom: 4px; }
.trust__item span { font-size: 13px; color: var(--text-muted); }

/* ===== Section heads ===== */
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: end; margin-bottom: 50px;
}
.section-head__lead { color: var(--text-muted); font-size: 15px; max-width: 480px; justify-self: end; }
.kicker {
  display: inline-block;
  padding: 6px 14px;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 14px;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--text);
}

/* ===== Slots ===== */
.slots { padding: 80px 0; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.slot {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.slot:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.slot__cover {
  position: relative; height: 200px; overflow: hidden;
  background-color: #1c1530;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slot__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3) 0%, transparent 50%);
  z-index: 1;
}
.slot__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.slot__cover--gates { background-image: url('../images/slots/gates-of-olympus.svg'); }
.slot__cover--sweet { background-image: url('../images/slots/sweet-bonanza.svg'); }
.slot__cover--book { background-image: url('../images/slots/book-of-dead.svg'); }
.slot__cover--bass { background-image: url('../images/slots/big-bass.svg'); }
.slot__cover--fruit { background-image: url('../images/slots/fruit-party.svg'); }
.slot__cover--reactoonz { background-image: url('../images/slots/reactoonz.svg'); }
.slot__cover--vikings { background-image: url('../images/slots/vikings.svg'); }
.slot__cover--solar { background-image: url('../images/slots/solar-king.svg'); }
.slot__cover--elvis { background-image: url('../images/slots/elvis-frog.svg'); }

.slot__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold);
  color: #fff;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
}
.slot__body { padding: 20px; }
.slot__body h3 { font-family: var(--font-display); font-size: 19px; margin-bottom: 4px; color: var(--text); }
.slot__provider { color: var(--text-light); font-size: 13px; margin-bottom: 14px; }
.slot__row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border); margin-bottom: 14px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.slot__play { color: var(--pink); font-weight: 600; font-size: 14px; }
.slot__play:hover { color: var(--pink-deep); }

/* ===== Bonuses ===== */
.bonuses { padding: 80px 0; background: var(--bg-alt); }
.bonus-list { display: flex; flex-direction: column; gap: 18px; }
.bonus {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .3s;
}
.bonus:hover { border-color: var(--pink-soft); box-shadow: var(--shadow); }
.bonus--main { background: linear-gradient(135deg, #fff 0%, var(--pink-soft) 100%); border-color: var(--pink); }
.bonus__num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.bonus__body h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 8px; }
.bonus__body p { color: var(--text-muted); font-size: 15px; margin-bottom: 14px; }
.bonus__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.bonus__chips li {
  padding: 4px 12px;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
}

/* ===== Reviews ===== */
.reviews { padding: 80px 0; }
.review-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card {
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.review-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-card__rating {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--pink);
  font-weight: 700;
}
.review-card__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.review-card__text { color: var(--text); font-size: 15px; margin-bottom: 22px; line-height: 1.6; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.review-card__name { font-weight: 700; font-size: 15px; }
.review-card__city { font-size: 12px; color: var(--text-light); }

/* ===== Payments ===== */
.payments { padding: 80px 0; background: var(--bg-alt); }
.payment-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.payment-table th {
  text-align: left;
  padding: 18px 24px;
  background: var(--bg-dark);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.payment-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.payment-table tr:last-child td { border-bottom: none; }
.payment-table tr:hover td { background: var(--bg); }
.payment-table td:first-child { font-weight: 600; color: var(--text); }
.payments__note { margin-top: 24px; padding: 18px 22px; background: var(--pink-soft); border-radius: var(--radius); color: var(--pink-deep); font-size: 14px; }

/* ===== Providers ===== */
.providers { padding: 80px 0; }
.provider-row { display: flex; flex-wrap: wrap; gap: 14px; }
.provider-row span {
  padding: 14px 24px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  transition: all .25s;
}
.provider-row span:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

/* ===== Editor section ===== */
.editor-section { padding: 80px 0; background: linear-gradient(135deg, var(--pink-soft) 0%, transparent 100%); }
.editor-section__inner { display: grid; grid-template-columns: auto 1fr; gap: 50px; align-items: center; max-width: 1000px; margin: 0 auto; }
.editor-section__pic {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--rose));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.editor-section h2 { font-family: var(--font-display); font-size: 32px; margin: 12px 0 18px; }
.editor-section p { color: var(--text-muted); margin-bottom: 12px; font-size: 15px; }
.editor-section__sign { font-family: var(--font-display); font-style: italic; color: var(--pink); font-size: 16px; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
}
.faq-item[open] { border-color: var(--pink); box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-right: 60px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all .25s;
}
.faq-item[open] summary::after { content: '−'; background: var(--pink); color: #fff; }
.faq-item > div { padding: 0 26px 24px; color: var(--text-muted); font-size: 14px; }

/* ===== About ===== */
.about { padding: 80px 0; background: var(--bg-alt); }
.about h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); margin-bottom: 24px; max-width: 800px; }
.about__lead { font-size: 17px; color: var(--text); margin-bottom: 18px; }
.about p { color: var(--text-muted); margin-bottom: 16px; max-width: 880px; }

/* ===== CTA ===== */
.cta { padding: 80px 0 100px; }
.cta__inner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2350 100%);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: ''; position: absolute; top: -50%; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  opacity: .3;
}
.cta h2 { font-family: var(--font-display); font-size: 38px; color: #fff; line-height: 1.1; margin-bottom: 10px; }
.cta h2 span { color: var(--gold-light); font-style: italic; }
.cta p { color: rgba(255,255,255,.7); }

/* ===== Footer ===== */
.footer { background: var(--bg-dark); color: #fff; padding: 60px 0 0; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__top p { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 16px; max-width: 320px; line-height: 1.6; }
.logo--footer .logo__word { color: #fff; }
.footer h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 18px; }
.footer__top a { display: block; padding: 5px 0; color: rgba(255,255,255,.6); font-size: 14px; }
.footer__top a:hover { color: var(--gold-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer__bottom-inner { display: flex; gap: 20px; align-items: center; }
.age {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav { display: none; }
  .slide { grid-template-columns: 1fr; gap: 40px; }
  .slide__right { min-height: 300px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head__lead { justify-self: start; }
  .bonus { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .bonus__num { text-align: left; }
  .editor-section__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta__inner { padding: 40px 30px; }
  .cta h2 { font-size: 28px; }
}
@media (max-width: 640px) {
  .header__inner { gap: 12px; }
  .btn--text { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .payment-table { font-size: 13px; }
  .payment-table th, .payment-table td { padding: 12px 14px; }
  .slide__stats { flex-wrap: wrap; gap: 18px; }
  .slide__stats strong { font-size: 24px; }
}
