/* 1xslotsbonus.fun · Перламутр/Фуксия · Montserrat + Cabin · prefix .tab- */
:root {
  --bg: #0a0711;
  --bg-2: #150d1e;
  --bg-3: #1c1228;
  --line: #28183a;
  --line-2: #38204e;
  --txt: #fdf4ff;
  --txt-d: #d8b4fe;
  --txt-dd: #9870c0;
  --acc: #d946ef;
  --acc-2: #f0abfc;
  --acc-2-d: #c026d3;
  --hot: #f97316;
  --good: #f5d0fe;
  --r: 12px;
  --r-s: 8px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font: 16px/1.62 "Cabin", ui-sans-serif, system-ui, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(1000px 580px at 92% -10%, rgba(217,70,239,.10) 0%, transparent 62%),
    radial-gradient(820px 580px at -10% 60%, rgba(240,171,252,.07) 0%, transparent 60%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: "Montserrat", system-ui, sans-serif; line-height: 1.25; }
h1 { font-size: clamp(1.55rem, 4vw, 2.5rem); font-weight: 700; }
h2 { font-size: clamp(1.25rem, 3vw, 1.85rem); font-weight: 700; margin-bottom: 1.25rem; }
h3 { font-size: clamp(1rem, 2.2vw, 1.25rem); font-weight: 600; margin-bottom: .7rem; }
p { margin-bottom: .85rem; }
a { color: var(--acc-2); text-decoration: none; }
a:hover { color: var(--acc); text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.acc { color: var(--acc); }
.hot { color: var(--hot); }
.dim { color: var(--txt-dd); }

/* ── Layout ── */
.tab-wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }
section:nth-child(even) { background: var(--bg-2); }

/* ── NAV ── */
.tab-nav {
  position: sticky; top: 0; z-index: 999;
  background: rgba(10,7,17,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
}
.tab-nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 58px; gap: 16px;
}
.tab-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--acc-2);
  white-space: nowrap;
}
.tab-logo span { color: var(--txt-dd); font-weight: 500; font-size: .85rem; }
.tab-nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.tab-nav-links a {
  font-family: "Cabin", sans-serif; font-size: .82rem;
  color: var(--txt-dd); padding: 5px 10px; border-radius: var(--r-s);
  transition: color .2s, background .2s;
}
.tab-nav-links a:hover { color: var(--acc-2); background: rgba(217,70,239,.12); text-decoration: none; }
.tab-nav-cta {
  font-family: "Montserrat", sans-serif;
  font-size: .82rem; font-weight: 600;
  background: linear-gradient(90deg, var(--acc), var(--acc-2));
  color: #14001e; padding: 7px 18px; border-radius: var(--r-s);
  transition: opacity .2s; white-space: nowrap;
}
.tab-nav-cta:hover { opacity: .88; text-decoration: none; color: #14001e; }

/* ── TICKER ── */
.tab-ticker {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap;
  padding: 7px 0;
}
.tab-ticker-track {
  display: inline-flex; gap: 56px;
  animation: ticker-scroll 34s linear infinite;
}
.tab-ticker-track span { font-size: .8rem; color: var(--txt-dd); }
.tab-ticker-track span em { color: var(--acc-2); font-style: normal; font-weight: 600; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── CTA BUTTONS ── */
.cta {
  display: inline-block;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700; font-size: 1rem;
  padding: 14px 34px; border-radius: var(--r);
  cursor: pointer; transition: box-shadow .25s, opacity .25s, transform .15s;
  text-align: center;
}
.cta:active { transform: scale(.97); }
.cta-hot {
  background: linear-gradient(90deg, var(--acc) 0%, var(--acc-2) 100%);
  color: #14001e;
  box-shadow: 0 0 22px rgba(217,70,239,.75);
}
.cta-hot:hover { box-shadow: 0 0 38px rgba(217,70,239,.9); opacity: .93; text-decoration: none; color: #14001e; }
.cta-outline {
  background: transparent;
  color: var(--acc-2);
  border: 2px solid var(--acc-2);
}
.cta-outline:hover { background: rgba(240,171,252,.1); text-decoration: none; color: var(--acc-2); }

/* ── CHIP ── */
.tab-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(217,70,239,.14);
  border: 1px solid rgba(217,70,239,.35);
  border-radius: 40px; padding: 5px 14px;
  font-size: .78rem; font-weight: 600; font-family: "Montserrat", sans-serif;
  color: var(--acc-2); letter-spacing: .04em;
  margin-bottom: 1.2rem;
}
.tab-chip::before { content: "●"; color: var(--acc); font-size: .6rem; animation: pulse-dot 1.8s infinite; }
@keyframes pulse-dot {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}

/* ── HERO ── */
.tab-hero { padding: 80px 0 72px; }
.tab-hero-inner {
  display: grid; grid-template-columns: 1fr 460px; gap: 56px; align-items: center;
}
.tab-hero-subtitle {
  font-size: 1.05rem; color: var(--txt-d); margin: 1.1rem 0 1.8rem;
  max-width: 560px; line-height: 1.7;
}
.tab-hero-kpi {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 1.8rem;
}
.tab-kpi-item {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-s); padding: 10px 18px;
  text-align: center;
}
.tab-kpi-val { font-family: "Montserrat", sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--acc-2); display: block; }
.tab-kpi-lab { font-size: .74rem; color: var(--txt-dd); display: block; }
.tab-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── HERO SVG ── */
.tab-hero-svg { display: flex; justify-content: center; align-items: center; }
.tab-hero-svg svg { width: 100%; max-width: 440px; height: auto; }

/* ── AGGREGATE STATS ── */
.tab-agg {
  background: var(--bg-3);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.tab-agg-row {
  display: flex; flex-wrap: wrap; gap: 0;
  justify-content: center;
}
.tab-agg-item {
  flex: 1 1 160px; text-align: center;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}
.tab-agg-item:last-child { border-right: none; }
.tab-agg-val { font-family: "Montserrat", sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--acc-2); display: block; }
.tab-agg-lab { font-size: .75rem; color: var(--txt-dd); display: block; margin-top: 2px; }

/* ── WELCOME / WBOX ── */
.tab-wbox-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px;
  margin-bottom: 2rem;
}
.tab-wbox {
  background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: var(--r); padding: 24px;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .2s;
}
.tab-wbox:hover { border-color: var(--acc); transform: translateY(-3px); }
.tab-wbox::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--acc), var(--acc-2));
}
.tab-wbox-depo {
  font-size: .73rem; font-weight: 600; font-family: "Montserrat", sans-serif;
  color: var(--txt-dd); letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: .5rem; display: block;
}
.tab-wbox-pct {
  font-family: "Montserrat", sans-serif; font-size: 2rem; font-weight: 700;
  color: var(--acc-2); line-height: 1.1; margin-bottom: .35rem;
}
.tab-wbox-max { font-size: .92rem; color: var(--txt-d); margin-bottom: .4rem; }
.tab-wbox-fs {
  display: inline-block; background: rgba(217,70,239,.2); border: 1px solid rgba(217,70,239,.4);
  border-radius: 6px; padding: 2px 10px; font-size: .8rem; color: var(--acc-2);
  font-weight: 600; margin-bottom: .7rem;
}
.tab-wbox-game { font-size: .8rem; color: var(--txt-dd); }
.tab-wbox-total {
  background: linear-gradient(135deg, #1e0c2a, #2d1040);
  border: 2px solid var(--acc); border-radius: var(--r);
  padding: 28px 32px; text-align: center; margin-bottom: 2rem;
}
.tab-wbox-total-sum { font-family: "Montserrat", sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--acc-2); }
.tab-wbox-total-sub { font-size: 1rem; color: var(--txt-d); margin-top: .3rem; }
.tab-wbox-note { font-size: .82rem; color: var(--txt-dd); text-align: center; margin-top: .6rem; }

/* ── STEPS ── */
.tab-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.tab-step {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px 24px;
  text-align: center; position: relative;
  transition: border-color .25s;
}
.tab-step:hover { border-color: var(--acc-2); }
.tab-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  color: #14001e; font-family: "Montserrat", sans-serif;
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.tab-step h3 { color: var(--acc-2); }

/* ── SLOTS GRID ── */
.tab-slots-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px;
}
.tab-slot-card {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .2s, border-color .2s;
  cursor: pointer;
}
.tab-slot-card:hover { transform: translateY(-4px); border-color: var(--acc-2); }
.tab-slot-cover {
  height: 120px; display: flex; align-items: flex-end;
  padding: 10px; position: relative;
}
.tab-slot-title {
  font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: .88rem; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.6);
  line-height: 1.2;
}
.tab-slot-meta {
  background: var(--bg-3); padding: 10px 12px;
}
.tab-slot-prov { font-size: .72rem; color: var(--txt-dd); display: block; }
.tab-slot-rtp { font-size: .78rem; color: var(--acc-2); font-weight: 600; }
.tab-slot-mech {
  display: inline-block; background: rgba(217,70,239,.15); border-radius: 4px;
  padding: 1px 7px; font-size: .7rem; color: var(--acc-2); margin-top: 3px;
}

/* Cover gradients */
.cv-1 { background: linear-gradient(135deg, #1a0028 0%, #d946ef 100%); }
.cv-2 { background: linear-gradient(135deg, #001a0a 0%, #16a34a 100%); }
.cv-3 { background: linear-gradient(135deg, #2a1a00 0%, #f59e0b 100%); color: #0a0d0a; }
.cv-4 { background: linear-gradient(135deg, #001a2a 0%, #06b6d4 100%); }
.cv-5 { background: linear-gradient(135deg, #2a0007 0%, #e11d48 100%); }
.cv-6 { background: linear-gradient(135deg, #1a0028 0%, #f0abfc 100%); }
.cv-7 { background: linear-gradient(135deg, #0a1a2a 0%, #60a5fa 100%); }
.cv-8 { background: linear-gradient(135deg, #2a2a00 0%, #fbbf24 100%); color: #0a0a0a; }
.cv-9 { background: linear-gradient(135deg, #0a001a 0%, #a78bfa 100%); }
.cv-10 { background: linear-gradient(135deg, #001a0a 0%, #4ade80 100%); color: #04120a; }
.cv-11 { background: linear-gradient(135deg, #2a0007 0%, #fb7185 100%); }
.cv-12 { background: linear-gradient(135deg, #001a2a 0%, #38bdf8 100%); }

/* ── VIP / LOYALTY ── */
.tab-vip-ladder {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px;
  margin-bottom: 2.5rem;
}
.tab-vip-tier {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 14px; text-align: center;
  transition: border-color .25s, transform .2s;
  position: relative; overflow: hidden;
}
.tab-vip-tier:hover { border-color: var(--acc-2); transform: translateY(-3px); }
.tab-vip-tier.top-tier { border-color: var(--acc); background: linear-gradient(135deg, #1e0c2a, #2d0e44); }
.tab-vip-icon { font-size: 1.8rem; display: block; margin-bottom: .4rem; }
.tab-vip-name {
  font-family: "Montserrat", sans-serif; font-size: .92rem; font-weight: 700;
  color: var(--acc-2); margin-bottom: .25rem;
}
.tab-vip-pct {
  font-family: "Montserrat", sans-serif; font-size: 1.4rem; font-weight: 700;
  color: var(--txt);
}
.tab-vip-floor { font-size: .72rem; color: var(--txt-dd); margin-top: .2rem; }
.tab-lbox-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px;
}
.tab-lbox {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px;
  transition: border-color .25s;
}
.tab-lbox:hover { border-color: var(--acc-2); }
.tab-lbox-icon { font-size: 1.6rem; margin-bottom: .6rem; display: block; }
.tab-lbox h3 { color: var(--txt); font-size: 1rem; }

/* ── TOURNAMENT ── */
.tab-tourn {
  background: linear-gradient(135deg, #130a1f 0%, #1e0c2a 50%, #130a1f 100%);
  border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 40px; text-align: center; margin-bottom: 2rem;
  position: relative; overflow: hidden;
}
.tab-tourn::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 50%, rgba(217,70,239,.08) 0%, transparent 70%);
  pointer-events: none;
}
.tab-tourn-prize {
  font-family: "Montserrat", sans-serif; font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--acc-2);
  margin-bottom: .4rem; position: relative;
}
.tab-tourn-sub { font-size: 1.1rem; color: var(--txt-d); margin-bottom: 1.5rem; }

/* ── LIVE ── */
.tab-live-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.tab-live-card {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  transition: transform .2s, border-color .2s;
}
.tab-live-card:hover { transform: translateY(-4px); border-color: var(--acc-2); }
.tab-live-cover {
  height: 100px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.tab-live-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(249,115,22,.9); color: #fff;
  font-size: .65rem; font-weight: 700; padding: 2px 6px; border-radius: 4px;
  font-family: "Montserrat", sans-serif;
}
.tab-live-name {
  font-family: "Montserrat", sans-serif; font-size: .9rem; font-weight: 700;
  color: #fff; text-align: center; text-shadow: 0 1px 6px rgba(0,0,0,.7);
  padding: 0 8px;
}
.tab-live-meta { background: var(--bg-3); padding: 8px 12px; }
.tab-live-prov { font-size: .72rem; color: var(--txt-dd); }
.tab-live-players { font-size: .75rem; color: var(--acc-2); font-weight: 600; }
.lv-1 { background: linear-gradient(135deg, #1a0028 0%, #d946ef 100%); }
.lv-2 { background: linear-gradient(135deg, #2a1a00 0%, #f59e0b 100%); color: #0a0d0a; }
.lv-3 { background: linear-gradient(135deg, #001a14 0%, #059669 100%); }
.lv-4 { background: linear-gradient(135deg, #2a0007 0%, #e11d48 100%); }
.lv-5 { background: linear-gradient(135deg, #0a1a2a 0%, #60a5fa 100%); }
.lv-6 { background: linear-gradient(135deg, #1a001a 0%, #f0abfc 100%); }

/* ── BRAND OVERVIEW ── */
.tab-brand-lead {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 28px 32px;
  margin-bottom: 2rem; font-size: 1.02rem; color: var(--txt-d);
  line-height: 1.75;
}
.tab-brand-sections {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;
  margin-bottom: 2rem;
}
.tab-brand-sec {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px;
  transition: border-color .25s;
}
.tab-brand-sec:hover { border-color: var(--line-2); }
.tab-brand-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem;
}
.tab-badge {
  background: rgba(217,70,239,.12); border: 1px solid rgba(217,70,239,.3);
  color: var(--acc-2); border-radius: 6px; padding: 5px 13px;
  font-size: .78rem; font-weight: 600; font-family: "Montserrat", sans-serif;
}

/* ── REVIEWS ── */
.tab-reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px;
}
.tab-review {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px;
}
.tab-review-stars { color: var(--acc-2); font-size: 1rem; margin-bottom: .6rem; letter-spacing: 2px; }
.tab-review-text { font-size: .9rem; color: var(--txt-d); margin-bottom: .8rem; line-height: 1.65; }
.tab-review-author {
  display: flex; align-items: center; gap: 10px;
}
.tab-review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  display: flex; align-items: center; justify-content: center;
  font-family: "Montserrat", sans-serif; font-size: .85rem; font-weight: 700;
  color: #14001e; flex-shrink: 0;
}
.tab-review-name { font-size: .85rem; font-weight: 600; color: var(--txt); }
.tab-review-loc { font-size: .75rem; color: var(--txt-dd); }

/* ── PAYMENTS ── */
.tab-pay-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px;
}
.tab-pay-item {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px;
  transition: border-color .25s;
}
.tab-pay-item:hover { border-color: var(--acc-2); }
.tab-pay-icon { font-size: 1.6rem; display: block; margin-bottom: .5rem; }
.tab-pay-name { font-family: "Montserrat", sans-serif; font-size: .92rem; font-weight: 600; color: var(--acc-2); }
.tab-pay-time { font-size: .78rem; color: var(--txt-dd); margin-top: .2rem; }
.tab-pay-lim { font-size: .75rem; color: var(--txt-dd); }

/* ── PRE-FOOTER CTA ── */
.tab-prefooter {
  background: linear-gradient(135deg, #130a1f, #1e0c2a);
  border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 56px 32px; text-align: center;
}
.tab-prefooter p { color: var(--txt-d); max-width: 540px; margin: .8rem auto 2rem; font-size: 1.02rem; }

/* ── FAQ ── */
.tab-faq-list { display: flex; flex-direction: column; gap: 8px; }
details.tab-faq-item {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .25s;
}
details.tab-faq-item[open] { border-color: var(--acc-2); }
details.tab-faq-item summary {
  padding: 16px 20px; cursor: pointer;
  font-family: "Montserrat", sans-serif; font-size: .95rem; font-weight: 600;
  color: var(--txt); list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
details.tab-faq-item summary::-webkit-details-marker { display: none; }
details.tab-faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--acc-2);
  flex-shrink: 0; transition: transform .2s;
}
details.tab-faq-item[open] summary::after { transform: rotate(45deg); }
.tab-faq-body { padding: 0 20px 18px; font-size: .9rem; color: var(--txt-d); line-height: 1.68; }

/* ── AUTHOR NOTE ── */
.tab-author-note {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-s); padding: 16px 22px;
  font-size: .8rem; color: var(--txt-dd); line-height: 1.6;
  max-width: 860px; margin: 48px auto 0;
}

/* ── FOOTER ── */
.tab-footer {
  background: var(--bg-3); border-top: 1px solid var(--line);
  padding: 40px 20px;
}
.tab-footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center;
}
.tab-footer-logo {
  font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--acc-2);
}
.tab-footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tab-footer-links a { font-size: .82rem; color: var(--txt-dd); }
.tab-footer-links a:hover { color: var(--acc-2); }
.tab-footer-legal { font-size: .75rem; color: var(--txt-dd); max-width: 740px; line-height: 1.65; }
.tab-footer-copy { font-size: .75rem; color: var(--txt-dd); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .tab-hero-inner { grid-template-columns: 1fr; }
  .tab-hero-svg { display: none; }
}
@media (max-width: 680px) {
  section { padding: 48px 0; }
  .tab-nav-links { display: none; }
  .tab-agg-item { flex: 1 1 50%; }
  .tab-brand-sections { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .tab-wbox-total-sum { font-size: 2rem; }
  .tab-tourn-prize { font-size: 2rem; }
}
