/* ==========================================================================
   Казино Кактус (Cactus Casino) — общие стили
   Bootstrap 5, mobile-first, шрифт Montserrat, радиус скругления 5px
   ========================================================================== */

:root {
  --cactus-green: #16a34a;
  --cactus-green-dark: #0e7a37;
  --cactus-green-darker: #0b2b1a;
  --cactus-mint: #d7f4e0;
  --cactus-gold: #ffb703;
  --cactus-gold-dark: #e09e00;
  --cactus-dark: #0f1f16;
  --cactus-darker: #0a1510;
  --cactus-ink: #14261c;
  --cactus-text: #24322a;
  --cactus-muted: #5f7167;
  --cactus-bg: #f6f9f6;
  --cactus-border: #e2ebe4;

  /* Все радиусы — 5px */
  --bs-border-radius: 5px;
  --bs-border-radius-sm: 5px;
  --bs-border-radius-lg: 5px;
  --bs-border-radius-xl: 5px;
  --bs-border-radius-xxl: 5px;
  --bs-border-radius-pill: 5px;
}

*,
*::before,
*::after {
  border-radius: 5px !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--cactus-text);
  background-color: var(--cactus-bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--cactus-ink);
  letter-spacing: -0.02em;
}

a {
  color: var(--cactus-green-dark);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover {
  color: var(--cactus-green);
}

img {
  max-width: 100%;
}

/* ---------- Навигация (липкое меню) ---------- */
.main-nav {
  background: var(--cactus-darker);
  border-bottom: 2px solid rgba(22, 163, 74, .35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .28);
}
.main-nav .navbar-brand img {
  height: 34px;
  width: auto;
  border-radius: 0 !important;
}
.main-nav .nav-link {
  color: #eaf5ee;
  font-weight: 600;
  font-size: .92rem;
  padding: .6rem .7rem;
  white-space: nowrap;
}
.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: #fff;
}
.main-nav .nav-link.active {
  color: #fff;
  background: rgba(22, 163, 74, .18);
}
.main-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, .25);
}

.btn-play {
  background: var(--cactus-green);
  color: #fff !important;
  font-weight: 700;
  padding: .6rem 1.35rem;
  border: none;
  border-radius: 5px;
  box-shadow: 0 6px 16px rgba(22, 163, 74, .35);
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-play:hover {
  background: #1db954;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(22, 163, 74, .45);
}

.btn-gold {
  background: var(--cactus-gold);
  color: #241c00 !important;
  font-weight: 800;
  padding: .7rem 1.5rem;
  border: none;
  border-radius: 5px;
  box-shadow: 0 6px 16px rgba(255, 183, 3, .32);
  transition: transform .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn-gold:hover {
  background: #ffc42e;
  transform: translateY(-1px);
}

.btn-outline-light-soft {
  border: 2px solid rgba(255, 255, 255, .7);
  color: #fff;
  font-weight: 700;
  padding: .6rem 1.35rem;
}
.btn-outline-light-soft:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

/* ---------- Hero главной страницы ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 21, 16, .55) 0%, rgba(10, 21, 16, .82) 100%),
    url("https://cactuscasino777.top/assets/img/cac2.webp") center/cover no-repeat;
  background-color: var(--cactus-darker);
  color: #fff;
  padding: 96px 0 88px;
}
.hero .hero-inner {
  position: relative;
  z-index: 2;
}
.hero .badge-brand {
  display: inline-block;
  background: rgba(255, 183, 3, .16);
  border: 1px solid rgba(255, 183, 3, .5);
  color: #ffe9ad;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  margin-bottom: 1rem;
}
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.12;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .35);
}
.hero .lead {
  color: #e7f2eb;
  font-size: 1.05rem;
  max-width: 640px;
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}
.hero .hero-facts .chip {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #dff3e7;
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem .8rem;
  backdrop-filter: blur(3px);
}

/* ---------- Заголовки внутренних страниц ---------- */
.page-hero {
  background:
    radial-gradient(1100px 400px at 80% -10%, rgba(22, 163, 74, .35), transparent 60%),
    linear-gradient(135deg, #0b2b1a 0%, #103a23 100%);
  color: #fff;
  padding: 54px 0 50px;
}
.page-hero h1 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.15;
}
.page-hero .lead {
  color: #d8efe1;
  max-width: 760px;
}
.breadcrumb-dark {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, .5);
  margin-bottom: .4rem;
}
.breadcrumb-dark a {
  color: #a8e0bd;
}
.breadcrumb-dark .breadcrumb-item.active {
  color: #eaf5ee;
}

/* ---------- Карточки ---------- */
.card {
  border: 1px solid var(--cactus-border);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(15, 31, 22, .05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(15, 31, 22, .1);
}

.section-title {
  font-size: 1.7rem;
}
.section-kicker {
  display: inline-block;
  color: var(--cactus-green-dark);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .4rem;
}

/* ---------- Таблицы ---------- */
.table {
  --bs-table-bg: transparent;
  border-radius: 5px;
}
.table thead th {
  background: var(--cactus-darker);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  border: none;
}
.table tbody td {
  background: #fff;
  border-color: var(--cactus-border);
  font-size: .92rem;
  vertical-align: middle;
}
.table-wrap {
  overflow-x: auto;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(15, 31, 22, .06);
}

/* ---------- Бонусные карточки ---------- */
.bonus-card {
  background: #fff;
  border: 1px solid var(--cactus-border);
  border-top: 4px solid var(--cactus-green);
  padding: 1.25rem;
  height: 100%;
}
.bonus-card .num {
  font-size: .8rem;
  font-weight: 800;
  color: var(--cactus-green-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bonus-card .pct {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--cactus-ink);
  line-height: 1.1;
}
.bonus-card .fs {
  color: var(--cactus-muted);
  font-weight: 600;
}

/* ---------- Шаги ---------- */
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--cactus-border);
  padding: 1rem 1rem 1rem 3.4rem;
  margin-bottom: .8rem;
  border-radius: 5px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cactus-green);
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
}

/* ---------- Плюсы / минусы ---------- */
.pros-list,
.cons-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.pros-list li,
.cons-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .55rem;
}
.pros-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cactus-green);
  font-weight: 800;
}
.cons-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: #e11d48;
  font-weight: 800;
}

/* ---------- Промокод ---------- */
.promo-box {
  background: linear-gradient(135deg, #0b2b1a, #14532d);
  color: #fff;
  padding: 1.6rem;
  text-align: center;
}
.promo-box .code {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--cactus-gold);
  background: rgba(255, 183, 3, .1);
  border: 1px dashed rgba(255, 183, 3, .55);
  display: inline-block;
  padding: .5rem 1.4rem;
  margin: .8rem 0;
}

/* ---------- Аккордеон ---------- */
.accordion-item {
  border: 1px solid var(--cactus-border);
  margin-bottom: .6rem;
  border-radius: 5px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 700;
  color: var(--cactus-ink);
  background: #fff;
}
.accordion-button:not(.collapsed) {
  background: var(--cactus-mint);
  color: var(--cactus-green-darker);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--cactus-green);
}

/* ---------- CTA-блок ---------- */
.cta-banner {
  background:
    radial-gradient(900px 300px at 15% 0%, rgba(255, 183, 3, .18), transparent 55%),
    linear-gradient(135deg, #0b2b1a, #14532d);
  color: #fff;
  padding: 2.6rem 1rem;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cactus-darker);
  color: #b9cbbf;
  padding: 3rem 0 1.5rem;
  font-size: .9rem;
}
.site-footer h5 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 1rem;
}
.site-footer a {
  color: #b9cbbf;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: .5rem;
}
.site-footer .disclaimer {
  font-size: .78rem;
  color: #7f9487;
  line-height: 1.55;
}
.site-footer .bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 2rem;
  padding-top: 1.4rem;
  font-size: .8rem;
  color: #7f9487;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

/* ---------- Слот-карточки (плейсхолдеры) ---------- */
.slot-card {
  background: linear-gradient(150deg, #14532d, #0b2b1a);
  color: #fff;
  padding: 1.1rem;
  text-align: center;
  height: 100%;
}
.slot-card .slot-ico {
  font-size: 2.4rem;
  margin-bottom: .6rem;
}
.slot-card .slot-name {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .3rem;
}
.slot-card .slot-meta {
  color: #b9cbbf;
  font-size: .78rem;
}

/* ---------- Чипы / бейджи ---------- */
.chip {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem .8rem;
  border-radius: 5px;
}

/* ---------- Прочее ---------- */
.lead-soft {
  color: var(--cactus-muted);
}
.hero-cta-split {
  border-top: 1px solid var(--cactus-border);
}
.text-green { color: var(--cactus-green-dark); }
.text-gold { color: var(--cactus-gold-dark); }

@media (max-width: 991.98px) {
  .main-nav .navbar-collapse {
    background: var(--cactus-darker);
    padding: .6rem .8rem 1rem;
    margin-top: .5rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 120px 0 104px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
