:root {
  --bs-body-font-family: "Open Sans", sans-serif;

  /* Base */
  --bs-body-bg: #ffffff;          /* весь фон білий */
  --bs-body-color: #1f2937;       /* темно-сірий текст (читабельний, не чорний) */
  --bs-heading-color: #0f172a;    /* ще трохи темніший для заголовків */
  --bs-border-radius: 12px;       /* трохи сучасніше, ніж 8px */
  --bs-border-color: #e5e7eb;     /* нейтральний бордер */

  /* Links (лаконічно) */
  --bs-link-color: #0f172a;       /* посилання як текст */
  --bs-link-hover-color: #111827; /* легке затемнення на hover */

  /* Brand / UI accents */
  --color-primary: #ff1f7a;       /* головний акцент = кнопки (як на скріні) */
  --color-primary-dark: #e81b6f;  /* hover/active */
  --color-secondary: #ff1f7a;     /* вторинний = темний (для лінків/заголовків) */
  --color-accent: #ff1f7a;        /* не плодимо кольори — акцент той самий */

  /* Backgrounds (вимога: тільки білий) */
  --color-bg-light: #ffffff;
  --color-bg-highlight: #ffffff;

  /* Text */
  --color-text-muted: #6b7280;    /* muted */
  --color-text-soft: #9ca3af;     /* ще слабший (якщо треба для дрібного) */

  /* Buttons */
  --btn-bg: #ff1f7a;
  --btn-hover-bg: #e81b6f;
  --btn-text: #ffffff;

  /* Status (стримано, без “кислоти”) */
  --color-success: #16a34a;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Shadows (легкі, щоб було “чисто”) */
  --box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  --box-shadow-light: 0 6px 16px rgba(15, 23, 42, 0.06);
}


html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--bs-body-font-family);
  line-height: 1.7;
  font-size: 1rem; 
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.8em;
  line-height: 1.3;
}
h1 { font-size: 2.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
h2 { font-size: 2.2rem; border-bottom: 2px solid var(--color-primary); display: inline-block; padding-bottom: 5px; margin-bottom: 1em; }
h3 { font-size: 1.6rem; color: var(--color-secondary); }
h4 { font-size: 1.2rem; color: var(--color-accent); }
p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
strong {
  color: var(--color-secondary);
}
ul, ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}
li {
  margin-bottom: 0.6em;
}
img {
  vertical-align: middle;
}
.small-text {
  font-size: 0.9em;
  color: var(--color-text-muted);
}
.content-section {
  padding-top: 15px;
  padding-bottom: 15px;
}
.section-dark {
  background-color: #ffffff;
  border-top: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
}
.section-dark h2 {
  border-color: var(--color-secondary);
}
.btn-cta {
  padding: 14px 35px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #f58220 0%, #ffb000 100%); /* arancione Sisal */
  border: 1px solid #ffb000;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(245, 130, 32, 0.35);
}
.btn-cta:hover,
.btn-cta:focus {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #e86f11 0%, #ffa200 100%);
  box-shadow: 0 10px 18px rgba(245, 130, 32, 0.45);
  color: #ffffff;
}

.top-navbar {
  width: 100%;
  background-color: var(--bs-body-bg);
  padding: 12px 0;
  display: flex;
  justify-content: center;
  position: relative;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--bs-border-color);
  box-shadow: var(--box-shadow-light);
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  height: 56px;
  margin-left: 0;
  display: block;
}

.navbar-links {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: auto;
}

.navbar-links a {
  color: var(--bs-heading-color) !important;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
  font-size: 1rem;
}

.navbar-links a:hover {
  color: var(--color-primary) !important;
}

.navbar-links .btn-play {
  background: var(--btn-bg);
  color: var(--btn-text) !important;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 800;
  text-transform: none;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.navbar-links .btn-play:hover,
.navbar-links .btn-play:focus {
  background: var(--btn-hover-bg);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
  transform: translateY(-1px);
  color: var(--btn-text) !important;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
  z-index: 1001;
}

.dropdown-menu a {
  color: #000000;
  padding: 10px 16px;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f3f4f6;
  color: #000000;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* burger */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.burger-menu span {
  height: 3px;
  background: #000000;
  border-radius: 2px;
  transition: all 0.3s ease;
}


@media (max-width: 992px) {
  .navbar-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-left: 0;
    padding: 14px 18px;
    background: var(--bs-body-bg);
    border-bottom: 1px solid var(--bs-border-color);
    box-shadow: var(--box-shadow-light);
    display: none;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .navbar-links.active {
    display: flex;
  }

  .burger-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    margin-left: 14px;
  }

  .burger-menu span {
    width: 26px;
    height: 2px;
    border-radius: 999px;
  }
}





.hero {
  position: relative;
  background-image: url("img/plinko-main.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  padding-top: 90px;
  padding-bottom: 60px;
  min-height: 30vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  overflow: hidden;
}

/* Soft white overlay instead of dark */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.85)
  );


  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* H1 – clean, strong, readable */
.hero h1 {
  color: #111827;
  margin-bottom: 0.6em;

  font-weight: 900;
  letter-spacing: -0.5px;

  text-shadow: none;
}

/* Subtitle – softer gray */
.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2em;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;

  color: #4b5563;
  line-height: 1.55;
}

/* CTA – pink primary button */
.hero__cta {
  display: inline-block;

  padding: 18px 46px;
  font-size: 1.25rem;
  font-weight: 900;

  color: #ffffff;
  background: linear-gradient(135deg, #ff2aa2, #ff008c);

  border-radius: 14px;
  border: none;
  text-decoration: none;

  box-shadow: 0 12px 26px rgba(255, 0, 140, 0.28);
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 0, 140, 0.35);
  filter: saturate(1.05);
}

.hero__cta:active {
  transform: translateY(0);
  box-shadow: 0 12px 26px rgba(255, 0, 140, 0.28);
}

.hero__cta:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(255, 0, 140, 0.22),
    0 12px 26px rgba(255, 0, 140, 0.28);
}


.play-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
  padding: 16px 0 22px;
}

/* CENTER */
.play-center{
  min-width: 0;
}

.play-title{
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.15;
  color: #0b3d2a;
}

.play-subtitle{
  margin: 0 0 12px;
  font-size: 15px;
  color: #2b2b2b;
}

/* Buttons */
.play-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.play-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
}

.play-btn--primary{
  background: #1FA971;
  color: #0E1411;
}

.play-btn--primary:hover{
  filter: brightness(1.05);
}

.play-btn--ghost{
  background: transparent;
  border-color: rgba(0,0,0,.18);
  color: #0E1411;
}

.play-btn--ghost:hover{
  background: rgba(0,0,0,.05);
}

/* RIGHT (layout) */
.play-right{
  position: sticky;
  top: 16px;
  align-self: start;
  width: 310px;
}

/* Neutral card look (same style vibe as mini casino cards) */
.play-info-card--neutral{
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  color: #111827;
}

.play-info-card__img img{
  display: block;
  width: 100%;
  height: auto;
}

/* Body */
.play-info-card__body{
  padding: 14px;
}

.play-info-card__top{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.play-info-card__kicker{
  font-size: 12px;
  color: rgba(17, 24, 39, 0.65);
  margin-bottom: 4px;
  font-weight: 700;
}

.play-info-card__name{
  font-size: 18px;
  font-weight: 900;
  color: #111827;
}

/* Badge */
.play-info-card__badge{
  font-size: 18px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.06);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

/* List */
.play-info-card__list{
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.play-info-card__list li{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.play-info-card__list span{
  color: rgba(17, 24, 39, 0.70);
  font-size: 12px;
  font-weight: 700;
}

.play-info-card__list strong{
  font-size: 12px;
  font-weight: 900;
  color: #111827;
  text-align: right;
}

/* Note */
.play-info-card__note{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(17, 24, 39, 0.75);
  background: #f9fafb;
  border: 1px solid rgba(17, 24, 39, 0.06);
  padding: 10px;
  border-radius: 12px;
  margin: 0 0 12px;
}

/* CTA (pink like your old button) */
.play-info-card__cta{
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 900;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.play-info-card__cta--pink{
  background: #FF1F7A;
  color: #ffffff;
}

.play-info-card__cta:hover{
  opacity: 0.92;
  transform: translateY(-1px);
}


.casino-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

/* ===== Casino card – adapted to light (white) + pink accent style ===== */
.casino-card {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  box-sizing: border-box;

  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(255, 0, 140, 0.16);
  overflow: hidden;
  padding: 20px;

  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.casino-card:hover {
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.09);
  border-color: rgba(255, 0, 140, 0.26);
}

.casino-card__left-block,
.casino-card__middle,
.casino-card__right,
.casino-card__extras {
  box-sizing: border-box;
  max-width: 100%;
}

/* Left column (logo + rating) – keep white, add subtle pink tint */
.casino-card__left-block {
  background: linear-gradient(180deg, rgba(255, 0, 140, 0.06), rgba(255, 0, 140, 0.02));
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  text-align: center;

  border-radius: 12px;
  border: 1px solid rgba(255, 0, 140, 0.10);
}

.casino-card__logo-rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.casino-card__logo {
  width: 90px;
  height: 90px;
  object-fit: contain;

  background-color: #ffffff;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
}

.casino-card__rating-block {
  display: flex;
  align-items: center;
  height: 80px;
}

.casino-card__rating {
  color: #ff008c;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 5px;
}

.casino-card__stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.casino-card__stars img {
  width: 90px;
  height: auto;
}

.casino-card__title-mobile {
  display: none;
}

.casino-card__title-desktop {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ff008c;
  margin-top: 12px;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}

.casino-card__title-desktop:hover {
  text-decoration: underline;
}

/* Middle column */
.casino-card__middle {
  flex-grow: 1;
  padding: 0 18px 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.casino-card__bonus {
  font-size: 1.15rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 12px;
  font-family: 'Nunito', sans-serif;
}

.casino-card__columns {
  display: flex;
  gap: 18px;
}

.casino-card__features {
  width: 500px;
  flex-shrink: 0;
}

.casino-card__negatives {
  flex: 1;
  text-align: left;
}

.casino-card__features li,
.casino-card__negatives li {
  color: #374151;
  margin-bottom: 7px;
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.checkmark,
.crossmark {
  display: inline-block;
  width: 20px;
  margin-right: 6px;
  flex-shrink: 0;
  text-align: center;
  font-weight: 900;
  line-height: 1.1;
}

.checkmark {
  color: #ff008c;
}

.crossmark {
  color: #9ca3af;
}

/* Payments column */
.casino-card__payments {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-left: 1px solid rgba(17, 24, 39, 0.08);
  border-right: 1px solid rgba(17, 24, 39, 0.08);

  padding: 0 18px;
  margin-left: 18px;
  margin-right: 18px;
  gap: 10px;

  min-width: 160px;
  max-width: 180px;
  overflow: hidden;
}

.casino-card__payments-title {
  color: #111827;
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0;
}

.payment-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.casino-card__payments-logos {
  display: flex;
  gap: 10px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 140px;
}

.casino-card__payments-logos img {
  width: 40px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;

  background-color: #ffffff;
  border-radius: 10px;
  padding: 6px;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.slider-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.slider-btn:hover {
  opacity: 1;
}

/* Right CTA */
.casino-card__right {
  display: flex;
  align-items: center;
}

/* Pink button like your site */
.casino-card__cta {
  background: linear-gradient(135deg, #ff2aa2, #ff008c);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 900;
  border: none;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 0, 140, 0.22);
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
}

.casino-card__cta:hover {
  box-shadow: 0 14px 26px rgba(255, 0, 140, 0.28);
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.casino-card__cta:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(255, 0, 140, 0.22);
}

.casino-card__cta:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 0, 140, 0.18), 0 10px 20px rgba(255, 0, 140, 0.22);
}

/* Evaluation box – make it light + pink border to match the site */
.evaluation-box {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 14px;
  margin-top: 30px;
  margin-bottom: 0px;

  border: 1px solid rgba(255, 0, 140, 0.14);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.evaluation-box h4 {
  margin-top: 0;
  color: #111827;
}



.checkmark {
  color: #00ff88;
  margin-right: 5px;
}

.crossmark {
  color: #ff4d4f;
  margin-right: 5px;
}

.casino-card-wrapper {
  max-width: 900px; 
  margin: 0 auto;
  padding: 10px 20px;
}

.casino-review-card {
  background-color: #1d2530;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.casino-review-card__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.casino-review-card__logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.casino-review-card__title {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bs-heading-color);
}

.casino-review-card__top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.casino-review-card__badge,
.casino-review-card__rating {
  z-index: 1;
}

.casino-review-card__badge img {
  width: 80px;
  height: auto;
}

.casino-review-card__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.casino-review-card__rating-value {
  color: #ffc107;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 5px;
}

.casino-review-card__rating img {
  width: 90px;
  height: auto;
  object-fit: contain;
}

.casino-review-card__link {
  color: #ff4d4f;
  text-decoration: underline;
}

.casino-review-card__link:hover {
  opacity: 0.85;
}
.casino-review-card__bonus {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffc107;
  margin-top: -10px;
  margin-bottom: 15px;
  text-align: center;
}


.casino-review-card__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
  text-align: left;
}

.casino-review-card__column {
  flex: 1;
  min-width: 200px;
}
.casino-review-card__column:first-child {
  align-items: flex-start;
  text-align: left;
}

.casino-review-card__column:last-child {
  align-items: center;
  text-align: left; 
}

.casino-review-card__subtitle {
  font-weight: 600;
  color: var(--bs-heading-color, #ffffff);
  margin-bottom: 8px;
  font-size: 1rem;
}

.casino-review-card__features,
.casino-review-card__negatives {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.casino-review-card__features li,
.casino-review-card__negatives li {
  margin-bottom: 6px;
  color: #e4e4e4;
}

.casino-review-card__button {
  width: 100%;
}

.casino-review-card__button .btn-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #ffcc00, #ffaa00);
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.casino-review-card__button .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}


.review-accordion__item {
  background-color: var(--bs-tertiary-bg);
  border: 1px solid var(--bs-border-color);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.review-accordion__item:last-child {
    margin-bottom: 0;
}
.review-accordion__header {
    padding: 0;
    width: 100%;
    margin: 1.2rem 0 1.2rem 0;
    --bs-accordion-border-width: 0px;
}
.review-accordion__button {
  padding: 5px 8px; 
  font-weight: 600;
  font-size: 1rem; 
  color: var(--bs-heading-color);
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
  box-shadow: none !important;
}
.review-accordion__button:not(.collapsed) {
    background-color: var(--bs-tertiary-bg);
    color: var(--bs-heading-color);
}
.review-accordion__title {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--bs-heading-color);
  margin: 0;
  line-height: 1.4;
}
.review-accordion__button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--color-secondary);
  transition: transform 0.3s ease;
  background-image: none;
}
.review-accordion__button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
  background-image: none;
}
.review-accordion__body {
  padding: 20px;
  border-top: 1px solid var(--bs-border-color);
}
.review-accordion__body p {
    margin-bottom: 0;
}
.review-accordion__body img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 360px; 
  margin: 0 auto 20px auto; 
  object-fit: contain;
}

.features-list {
  background-color: var(--bs-secondary-bg);
  padding: 20px;
  border-radius: var(--bs-border-radius);
}
.feature-item {
  display: flex;
  align-items: center;
  background-color: var(--bs-tertiary-bg);
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.95em;
}
.feature-item__icon {
  font-size: 1.4em;
  margin-right: 10px;
  color: var(--color-accent);
}
.feature-item__text strong {
  color: var(--bs-heading-color);
  display: block;
  font-size: 1em;
  margin-bottom: 2px;
}
.feature-item__text span {
    font-size: 0.9em;
    color: var(--color-text-muted);
    display: block;
}
.symbol-item {
  background-color: var(--bs-tertiary-bg);
  padding: 15px 10px;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--box-shadow-light);
  text-align: center;
}
.symbol-item__icon {
  font-size: 1.5em; 
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.symbol-item p {
  margin-bottom: 0;
  font-size: 0.9em;
  line-height: 1.4;
}
.symbol-item strong {
  display: block;
  color: var(--bs-heading-color);
  margin-bottom: 3px;
  font-size: 1em;
}
.icon-list {
  list-style: none;
  padding-left: 0;
}
.icon-list__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-left: 0;
}
.icon-list__icon {
  font-size: 1.5em;
  margin-right: 15px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}
.icon-list__content {
  flex-grow: 1;
}
.icon-list__content strong {
  display: block;
  color: var(--color-secondary);
  margin-bottom: 3px;
}
.icon-list--detailed .icon-list__item {
  background-color: var(--bs-tertiary-bg);
  padding: 15px;
  border-radius: var(--bs-border-radius);
  border-left: 3px solid var(--color-primary);
}
.steps-list {
  list-style: none;
  padding-left: 0;
  counter-reset: step-counter;
  margin-top: 20px;
}
.steps-list__item {
  position: relative;
  padding: 15px 15px 15px 50px;
  margin-bottom: 20px;
  background: var(--bs-tertiary-bg);
  border-radius: var(--bs-border-radius);
}
.steps-list__item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-secondary);
  color: #111;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}
.steps-list__item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-secondary);
}
.version-card {
  background-color: var(--bs-tertiary-bg);
  padding: 20px;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--box-shadow-light);
  border-left: 3px solid var(--color-accent);
  height: 100%;
}
.version-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.simple-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  text-align: left;
  max-width: 400px;
}

.simple-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.simple-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00ff88; /* зелений колір */
  font-weight: bold;
}
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  font-family: var(--bs-body-font-family);
  color: var(--bs-body-color);
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  margin: 24px 0 18px;
  border: 1px solid var(--bs-border-color);
}

.styled-table thead tr {
  background-color: #ffffff;
}

.styled-table th {
  padding: 14px 16px;
  font-weight: 700;
  color: var(--bs-heading-color);
  border-bottom: 2px solid var(--color-primary);
  text-align: left;
  font-size: 14px;
}

.styled-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--bs-border-color);
  vertical-align: middle;
}

.styled-table tbody tr:last-child td {
  border-bottom: none;
}

.styled-table tbody tr:hover {
  background-color: #f9fafb;
}

.styled-table tbody tr td:first-child {
  font-weight: 600;
  color: var(--color-primary);
}

.table-heading {
  color: var(--bs-heading-color);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}



.faq-accordion__item {
  background-color: var(--bs-tertiary-bg);
  margin-bottom: 15px;
  border-radius: var(--bs-border-radius);
  border: 1px solid var(--bs-border-color);
  overflow: hidden;
}
.faq-accordion__item:last-child {
    margin-bottom: 0;
}
.faq-accordion__item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--bs-heading-color, #ffffff);
}

.faq-accordion__header {
    padding: 0;
    width: 100%;
}

.faq-accordion__button {
  padding: 15px 45px 15px 20px;
  font-weight: 700;
  font-size: 1.2em;
  color: var(--color-secondary);
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
  box-shadow: none;
}
.faq-accordion__button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.faq-accordion__button:not(.collapsed) {
    background-color: transparent;
    color: var(--color-secondary);
    box-shadow: none; 
}
.faq-accordion__button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; 
  color: var(--color-accent);
  transition: transform 0.3s ease;
  font-family: var(--bs-body-font-family); 
  font-weight: normal; 
  background-image: none; 
  height: auto; 
  width: auto; 
  border: none; 
  line-height: 1;
}
.faq-accordion__button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(45deg);
  background-image: none; 
}
.faq-accordion__body {
  padding: 20px 20px 20px 20px;
  border-top: 1px solid var(--bs-border-color);
}
.faq-accordion__body p:last-child {
  margin-bottom: 0;
}
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #004225; /* verde profondo Sisal */
  color: #ffffff;
  padding: 25px 35px;
  border-radius: 12px;
  margin: 0 auto 40px;
  max-width: 1300px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
  border-left: 5px solid #f58220; /* accento arancione brand */
}

.author-box__photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f58220; /* contorno arancione */
}

.author-box__content {
  flex: 1;
  min-width: 240px;
}

.author-box__top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.author-box__name {
  font-weight: bold;
  font-size: 1.3rem;
  color: #ffb000; /* dorato caldo Sisal */
  margin: 0;
}

.author-box__name-link {
  color: inherit;
  text-decoration: none;
  display: inline;
}

.author-box__name-link:hover {
  text-decoration: underline;
}

.author-box__role {
  font-size: 0.95rem;
  color: #d1e7dd; /* verde chiaro leggibile */
  margin: 4px 0 10px;
}

.author-box__desc {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f5f5f5;
}

.author-box__checked {
  font-size: 0.9rem;
  color: #f58220; /* arancione Sisal */
  margin-bottom: 5px;
}

.author-box__date {
  font-size: 0.85rem;
  color: #ccc;
}

.author-box__social {
  display: flex;
  gap: 10px;
}

.author-box__social img {
  width: 22px;
  height: 22px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  filter: brightness(0) invert(1);
}

.author-box__social a:hover img {
  transform: scale(1.1);
  opacity: 0.85;
  filter: brightness(0) invert(1) sepia(1) hue-rotate(-20deg) saturate(4);
}




.site-footer{
  background:#ffffff;
  border-top:1px solid #e5e7eb;
  padding:48px 0 24px;
  font-size:0.9rem;
  color:#222222;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:flex-start;
}

.footer-left{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.footer-logo img{
  height:48px;
  width:auto;
}

.footer__social {
    margin-top: 30px;
}

.footer__social-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 15px;
}

.footer__social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer__social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #000000;
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer__social-links a:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer__social-links a i {
    font-size: 16px;
    line-height: 1;
}


.footer-trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.footer-trust img{
  height:48px;
  width:auto;
  opacity:.85;
}

.footer-right h4{
  font-size:1rem;
  margin-bottom:14px;
  font-weight:700;
}

.footer-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-nav a{
  color:#222222;
  text-decoration:none;
  font-weight:600;
  transition:color .2s ease;
}

.footer-nav a:hover{
  color:var(--bs-link-color);
}

.footer-bottom{
  margin-top:40px;
  padding-top:16px;
  border-top:1px solid #e5e7eb;
  text-align:center;
  font-size:0.85rem;
  color:#555555;
}


.section-author {
  background-color: #006b3d; /* verde medio complementare al footer */
  padding: 60px 0;
  color: #ffffff;
}


.author-profile {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 67px; 
  margin-bottom: 90px; 
}

.author-profile__photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
}

.author-profile__content {
  flex: 1;
  min-width: 280px;
}

.author-profile__content h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.author-profile__content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 16px;
}

.author-profile__content p strong {
  color: #ffc107;
}
.author-profile__social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.author-profile__social a img {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease;
}

.author-profile__social a:hover img {
  opacity: 0.75;
}
.demo-block {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 15px;
}

.iframe-block {
  position: relative;
  width: 100%;
  padding-top: 56.25%; 
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.iframe-block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



#mobile {
  padding-bottom: 30px;
}

#faq {
  padding-top: 30px;
}
#buy-proces {
  padding-top: 10px;
}
#casino-list {
  padding-top: 20px;
}
#how-to-play {
  padding-top:0
}
@media (min-width: 1000px) and (max-width: 1400px) {

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.2rem; }

  .burger-menu {
    display: flex;
  }

  .navbar-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    display: none;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links a,
  .navbar-links .dropdown-menu a {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: block;
    width: 100%;
  }
.play-layout{
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 16px;
  }
  .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    padding-left: 16px;
    background: none;
    box-shadow: none;
    position: static;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 30vh;
    background-image: url("img/plinko-main.png");
    background-position: 0 0;
    background-size: contain;
  }

  .play-layout{
    grid-template-columns: 1fr;
  }
  .play-right{
    position: static;
    width: 100%;
  }
  .play-title{
    font-size: 28px;
  }

  .casino-card {
    flex-direction: column;
    align-items: center;
  }

  .casino-card__left-block {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .casino-card__logo-rating {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .casino-card__logo {
    width: 70px;
    height: 70px;
  }

  .casino-card__stars img {
    width: 70px;
  }

  .casino-card__name-link {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
  }

.casino-card__middle {
  flex-grow: 1;
  flex-basis: 400px;
  padding: 0 20px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
    .casino-card__title-mobile {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff4d4f;
    text-align: center;
    text-decoration: none;
    flex-grow: 1;
  }

  .casino-card__title-desktop {
    display: none;
  }

  .casino-card__columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .casino-card__payments {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 20px;
  margin-left: 20px;
  margin-right: 20px;
  gap: 10px;
  min-width: 240px;
  max-width: 260px;
  overflow: hidden;
  margin-bottom: 30px;
}

  .casino-card__right {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .casino-card__button-block {
    text-align: center;
    margin-top: 20px;
  }

  .casino-card__cta {
    width: 90%;
    max-width: 280px;
    display: inline-block;
  }

}
@media (max-width: 992px) {

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.2rem; }
  .burger-menu {
    display: flex;
  }

  .navbar-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    display: none;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links a,
  .navbar-links .dropdown-menu a {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: block;
    width: 100%;
  }
.play-layout{
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 16px;
    display: block;
  }
  .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    padding-left: 16px;
    background: none;
    box-shadow: none;
    position: static;
  }
  .play-right {
          width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .hero { padding-top: 100px; padding-bottom: 100px; min-height: 30vh; background-image: url("img/plinko-main.png");
    background-position: 0 0;
    background-size: contain;
    .casino-card {
    flex-direction: column;
    align-items: center;
  }

  .casino-card__left-block {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .casino-card__logo-rating {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .casino-card__logo {
    width: 70px;
    height: 70px;
  }

  .casino-card__stars img {
    width: 70px;
  }

  .casino-card__name-link {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
  }

  .casino-card__middle {
    padding: 20px 10px;
    text-align: center;
  }

  .casino-card__title-mobile {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff4d4f;
    text-align: center;
    text-decoration: none;
    flex-grow: 1;
  }

  .casino-card__title-desktop {
    display: none;
  }

  .casino-card__columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .casino-card__payments {
    border: none;
    margin-bottom: 30px;
    margin: 20px 0 20px 0;
    padding: 0;
  }

  .casino-card__right {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .casino-card__button-block {
    text-align: center;
    margin-top: 20px;
  }

  .casino-card__cta {
    width: 90%;
    max-width: 280px;
    display: inline-block;
  }
  .casino-review-card__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .casino-review-card__badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .casino-review-card__badge img {
    width: 50px;
    height: auto;
  }

  .casino-review-card__logo {
    flex-shrink: 0;
    text-align: center;
  }

  .casino-review-card__logo img {
    width: 130px;
    height: auto;
  }

  .casino-review-card__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .casino-review-card__rating-value {
    font-size: 0.9rem;
  }

  .casino-review-card__rating img {
    width: 75px;
    height: auto;
  }
}
@media (min-width: 770px) {

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1.2rem; }

  .burger-menu {
    display: flex;
  }

  .navbar-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    display: none;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links a,
  .navbar-links .dropdown-menu a {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: block;
    width: 100%;
  }

  .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    padding-left: 16px;
    background: none;
    box-shadow: none;
    position: static;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }


  .hero {
    padding-top: 100px;
    padding-bottom: 100px;
    min-height: 30vh;
    background-image: url("img/plinko-main.png");
    background-position: 0 0;
            background-size: contain;
  }

  .casino-card {
    flex-direction: column;
    align-items: center;
  }

  .casino-card__left-block {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .casino-card__logo-rating {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .casino-card__logo {
    width: 70px;
    height: 70px;
  }

  .casino-card__stars img {
    width: 70px;
  }

  .casino-card__name-link {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
  }

  .casino-card__middle {
    padding: 20px 10px;
    text-align: center;
  }

  .casino-card__title-mobile {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff4d4f;
    text-align: center;
    text-decoration: none;
    flex-grow: 1;
  }

  .casino-card__title-desktop {
    display: none;
  }

  .casino-card__title-desktop {
    display: none;
  }

  .casino-card__columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .casino-card__payments {
    border: none;
    margin-bottom: 30px;
    margin: 20px 0;
    padding: 0;
  }

  .casino-card__right {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .casino-card__button-block {
    text-align: center;
    margin-top: 20px;
  }

  .casino-card__cta {
    width: 90%;
    max-width: 280px;
    display: inline-block;
  }

}

@media (max-width: 768px) {
  body { font-size: 0.9375rem; } 
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.3rem; }
  h4 { font-size: 1.1rem; }

  .burger-menu {
    display: flex;
  }

  .navbar-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    display: none;
  }
 /* PLAY: layout */
  .play-layout{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px 0 18px;
  }

  /* CENTER */
  .play-title{
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 6px;
  }

  .play-subtitle{
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 10px;
  }

  .play-actions{
    gap: 10px;
    margin-top: 10px;
  }

  .play-btn{
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
  }

  /* iframe block: make it feel like an app screen */
  .demo-block{
    margin-top: 8px;
  }

  .iframe-block{
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  }

  /* RIGHT: card should be full width on mobile */
  .play-right{
    position: static;
    width: 100%;
    z-index: 9;
  }

  .play-info-card{
    max-width: 100%;
    border-radius: 16px;
  }

  .play-info-card__body{
    padding: 14px;
  }

  /* Make list items more compact (reduces height a lot) */
  .play-info-card__list li{
    padding: 9px 10px;
    margin-bottom: 8px;
  }

  .play-info-card__list span,
  .play-info-card__list strong{
    font-size: 13px;
  }

  /* Note + CTA spacing */
  .play-info-card__note{
    margin: 0 0 10px;
  }

  .play-info-card__cta{
    width: 100%;
    border-radius: 12px;
    padding: 12px 14px;
  }


  .navbar-links.active {
    display: flex;
  }

  .navbar-links a,
  .navbar-links .dropdown-menu a {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: block;
    width: 100%;
  }

  .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    padding-left: 16px;
    background: none;
    box-shadow: none;
    position: static;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }


  .hero { padding-top: 80px; padding-bottom: 80px; min-height: 50vh; background-image: url("img/plinko-main.png");
    background-position: 0 0;
    background-size: contain;}
  .hero__subtitle { font-size: 1.2rem; }
  .content-section { padding-top: 15px; padding-bottom: 15px; }
  .symbol-item__icon { font-size: 2em; }
  .grid { display:grid; grid-template-columns: repeat(2, 1fr); }
  .casino-card {
    flex-direction: column;
    align-items: center;
  }

  .casino-card__left-block {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .casino-card__logo-rating {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .casino-card__logo {
    width: 70px;
    height: 70px;
  }

  .casino-card__stars img {
    width: 70px;
  }

  .casino-card__name-link {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
  }

  .casino-card__middle {
    padding: 20px 10px;
    text-align: center;
  }

  .casino-card__title-mobile {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff4d4f;
    text-align: center;
    text-decoration: none;
    flex-grow: 1;
  }

  .casino-card__title-desktop {
    display: none;
  }

  .casino-card__columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .casino-card__payments {
    border: none;
    margin-bottom: 30px;
    margin: 20px 0 20px 0;
    padding: 0;
  }

  .casino-card__right {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .casino-card__button-block {
    text-align: center;
    margin-top: 20px;
  }

  .casino-card__cta {
    width: 90%;
    max-width: 280px;
    display: inline-block;
  }
  .casino-review-card__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .casino-review-card__badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .casino-review-card__badge img {
    width: 50px;
    height: auto;
  }

  .casino-review-card__logo {
    flex-shrink: 0;
    text-align: center;
  }

  .casino-review-card__logo img {
    width: 130px;
    height: auto;
  }

  .casino-review-card__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .casino-review-card__rating-value {
    font-size: 0.9rem;
  }

  .casino-review-card__rating img {
    width: 75px;
    height: auto;
  }
}
@media (max-width: 576px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  h4 { font-size: 1rem; }
  .burger-menu {
    display: flex;
  }

  .navbar-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    display: none;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links a,
  .navbar-links .dropdown-menu a {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: block;
    width: 100%;
  }

  .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    padding-left: 16px;
    background: none;
    box-shadow: none;
    position: static;
  }
 .play-title{
    font-size: 22px;
  }

  /* Reduce image height feel */
  .play-info-card__img img{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  /* Even more compact list */
  .play-info-card__list li{
    padding: 8px 10px;
  }

  .play-info-card__kicker{
    font-size: 11px;
  }

  .play-info-card__name{
    font-size: 17px;
  }

  .play-info-card__badge{
    font-size: 16px;
    padding: 7px 9px;
  }
  .dropdown:hover .dropdown-menu {
    display: flex;
  }

  .hero { padding-top: 60px; padding-bottom: 60px; min-height: 45vh; background-image: url("img/hero-bg-mob.png");
    background-position: 0 0;
    background-size: contain;}
  .hero__subtitle { font-size: 1.1rem; }
  .btn-cta { padding: 12px 28px; font-size: 1rem; }
  .hero__cta { padding: 15px 35px; font-size: 1.1rem; }
  .steps-list__item { padding: 15px 15px 15px 45px; }
  .steps-list__item::before { left: 10px; width: 25px; height: 25px; font-size: 0.9em; }
  .symbol-item__icon { font-size: 1.8em; }
  .review-accordion__button h3 { font-size: 1.2rem; }
  .casino-card {
    flex-direction: column;
    align-items: center;
  }

  .casino-card__left-block {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .casino-card__logo-rating {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    text-align: center;
  }
  .casino-card__rating {
    margin: 0;
    line-height: 1;
  }

  .casino-card__logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .casino-card__stars {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 70px;
    line-height: 1;
  }

  .casino-card__stars img {
    width: 70px;
    height: auto;
  }

  .casino-card__name-link {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
  }

  .casino-card__middle {
    padding: 20px 10px;
    text-align: center;
  }
  .casino-card__features {
    width: 250px;
    text-align: center;
    padding-left: 0; 
  }

  .casino-card__features li {

    text-align: left;
    gap: 8px; 
  }
  .checkmark,
  .crossmark {
    margin-right: 0;
  }

  .casino-card__title-mobile {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff4d4f;
    text-align: center;
    text-decoration: none;
    flex-grow: 1;
  }

  .casino-card__title-desktop {
    display: none;
  }

  .casino-card__columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .casino-card__payments {
    border: none;
    margin-bottom: 30px;
    margin: 20px 0 20px 0;
    padding: 0;
  }

  .casino-card__right {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .casino-card__button-block {
    text-align: center;
    margin-top: 20px;
  }

  .casino-card__cta {
    width: 90%;
    max-width: 280px;
    display: inline-block;
  }
  .casino-review-card__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .casino-review-card__badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .casino-review-card__badge img {
    width: 50px;
    height: auto;
  }

  .casino-review-card__logo {
    flex-shrink: 0;
    text-align: center;
  }

  .casino-review-card__logo img {
    width: 130px;
    height: auto;
  }

  .casino-review-card__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .casino-review-card__rating-value {
    font-size: 0.9rem;
  }

  .casino-review-card__rating img {
    width: 60px;
    height: auto;
  }
  .styled-table thead {
 
  }

  .styled-table,
  .styled-table tbody,
  .styled-table tr,
  .styled-table td {

  }

  .styled-table tr {
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
  padding: 10px;
}


  .styled-table td {

  }

  .styled-table th, .styled-table td {
    padding: 12px 8px;
    font-size: 10px;
}

  .styled-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: 600;
    text-align: left;
    color: #facc15;
  }
}
}

@media screen and (min-width: 767px) and (max-width: 1400px) {
  .casino-card-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.casino-card {
  max-width: 49%;
  width: 100%;
}
.casino-card__features {
  width: auto;
}
}

/* New style */

.main_wrap{
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 0 15px;
  align-items: flex-start;
}

.main_wrap main{
  flex: 1;
  min-width: 0;
  padding-right: 24px;
}

/* прибираємо центрування bootstrap container */
.main_wrap main .container{
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0;
  padding-right: 0;
}


/* ===== ASIDE: Recommended Casinos ===== */
.aside-casinos {
  position: sticky;
  top: 30px;
  min-width: 240px;
  width: 19%;
  margin-right: 20px;
  margin-top: 15px;
  margin-bottom: 40px;

  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

/* Header */
.aside-casinos__header {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.aside-casinos__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  text-align: center;
}

.aside-casinos__subtitle {
  margin: 6px 0 0;
  font-size: 0.85rem;
  line-height: 1.3;
  color: rgba(17, 24, 39, 0.65);
  text-align: center;
}

/* List */
.aside-casinos__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Mini card */
.casino-mini {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.casino-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.10);
  border-color: rgba(17, 24, 39, 0.14);
}

.casino-mini__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.casino-mini__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.casino-mini__name {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 800;
  color: #111827;
}

.casino-mini__bonus {
  margin: 0 0 10px;
  font-size: 0.86rem;
  line-height: 1.35;
  color: rgba(17, 24, 39, 0.72);
}

.casino-mini__bonus strong {
  color: #111827;
  font-weight: 800;
}

/* CTA */
.casino-mini__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0px;
  border-radius: 10px;
  text-decoration: none;

  background: #FF1F7A;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.casino-mini__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}



/* ===== Mobile behavior: reuse your show/hide idea ===== */
@media screen and (max-width: 767px) {
  .aside-casinos {
    display: none;
    position: fixed;
    top: 0;
    left: -999px;
    bottom: 0;
    height: 100%;
    overflow: auto;
    width: 78%;
    margin: 0;
    border-radius: 0;
    z-index: 9999;
    transition: 0.5s;
  }
  .aside-casinos.show { left: 0; display: block; }
  main { width: 100%; }

  /* твою кнопку-бургер .aside_toggle можна залишити як є */
}
@media (max-width: 768px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .footer-right{
    text-align:left;
  }
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}

@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}
.play-block {
  display: grid;
  grid-template-areas: "play-block__left" "content-section" "play-block__right";
  max-width: 1110px;
  width: 100%;
  margin: 40px auto 100px;
}
@media only screen and (max-width: 1200px) {
  .play-block {
    padding: 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .play-block {
    margin: 20px auto 60px;
  }
}
@media only screen and (min-width: 992px) {
  .play-block {
    grid-template-areas: "play-block__left play-block__right" "content-section content-section";
    grid-template-columns: 100% 0%;
  }
}
.play-block__left {
  grid-area: play-block__left;
  width: 100%;
  padding-right: 0;
}
.play-block__left h1, .play-block__left h2 {
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: var(--title-color);
  margin: 0 0 28px;
}
@media only screen and (max-width: 767px) {
  .play-block__left h1, .play-block__left h2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 110%;
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 992px) {
  .play-block__left {
    margin: 0;
    padding-right: 20px;
  }
}
.play-block__right {
  grid-area: play-block__right;
  margin: 24px 0 0;
  width: 100%;
}
.play-block__right h1 {
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  color: var(--title-color);
  margin: 0 0 28px;
}
@media only screen and (max-width: 767px) {
  .play-block__right h1 {
    font-weight: 700;
    font-size: 26px;
    line-height: 110%;
    margin-bottom: 16px;
  }
}
.play-block__right h2 {
  display: flex;
  align-items: center;
  min-height: 68px;
  font-size: 26px;
  line-height: normal;
  font-weight: 700;
  color: var(--title-color);
  margin: 0 0 6px;
}
@media only screen and (max-width: 767px) {
  .play-block__right h2 {
    font-size: 24px;
    line-height: 110%;
    margin-bottom: 16px;
    min-height: auto;
  }
}
.play-block__right table {
  border-radius: 10px;
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 0 1px var(--border-color);
}
.play-block__right table tr td {
  padding: 12px 28px;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  background: var(--table-1-color);
  border-top: none;
  border-left: none;
  border-right: none;
}
@media only screen and (max-width: 767px) {
  .play-block__right table tr td {
    padding: 12px 4px;
  }
}
.play-block__right table tr th {
  padding: 12px 28px;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  background: var(--table-1-color);
  border-top: none;
  border-left: none;
  border-right: none;
}
@media only screen and (max-width: 767px) {
  .play-block__right table tr th {
    padding: 12px 4px;
  }
}
.play-block__right table tr:last-of-type td {
  border-bottom: none;
}
@media only screen and (min-width: 992px) {
  .play-block__right {
    margin: 0;
  }
}
.play-block__box {
  width: 100%;
  min-height: 700px;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .play-block__box {
    min-height: 190px;
  }
}
.play-block__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: blur(5px);
}
.play-block__bg::before {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  content: "";
}
.play-block__box-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.play-block__box-inner.hide {
  display: none;
}
.play-block__iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
}
.play-block__iframe iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.play-block__iframe iframe.isFullscreen {
  position: fixed;
  inset: 0px;
  width: 100vw;
  height: 100vh;
  margin: 0px;
}
.play-block__iframe.show {
  opacity: 1;
  pointer-events: all;
}
.play-block__button {
  border: none;
  cursor: pointer;
  text-decoration: none;
  max-width: 252px;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #C2C0CE;
  margin: 0 auto;
  color: #090909;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s ease-in-out;
}
.play-block__button svg {
  margin-right: 10px;
}
.play-block__button + .play-block__button {
  margin-top: 14px;
}
@media only screen and (min-width: 1025px) {
  .play-block__button:hover {
    background: #a8a6b3;
  }
}
.play-block__button--casino {
  background: linear-gradient(180deg, #fdcc06 0%, #ffea00 100%);
}
@media only screen and (min-width: 1025px) {
  .play-block__button--casino:hover {
    background: linear-gradient(180deg, #ffea00 0%, #fdcc06 100%);
  }
}
@media only screen and (max-width: 767px) {
  .play-block__button {
    height: 42px;
    max-width: 220px;
  }
}
.play-block .content-section {
  padding: 0;
  grid-area: content-section;
  width: 100%;
  margin: 24px 0 0;
}
.play-block .content-section h1, .play-block .content-section h2 {
  color: var(--title-color);
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 28px;
}
@media only screen and (max-width: 767px) {
  .play-block .content-section h1, .play-block .content-section h2 {
    font-size: 26px;
    margin: 0 0 18px;
  }
}
@media only screen and (min-width: 991px) {
  .play-block .content-section {
    margin: 28px 0 0;
  }
}
/* ===== Content section with image ===== */
.content-section-img {
  padding: 40px 0;
}

.content-section-img__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 32px;
  align-items: center;
}

/* TEXT */
.content-section-img__text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--title-color);
}

.content-section-img__text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 16px;
}

/* IMAGE */
.content-section-img__image {
  text-align: center;
}

.content-section-img__image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .content-section-img__grid {
    grid-template-columns: 1fr;
  }

  .content-section-img__image {
    order: -1;
  }

  .content-section-img__text h2 {
    font-size: 28px;
  }
}

/* New style */ 

.aside_toggle {
display: none;
}
.footer-right {
  display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 24px;
}
.footer-nav {
    display: flex;
}
.footer__social-links a svg path {
  transition: 0.5s;
}
.footer__social-links a:hover svg path {
fill: #fff
}
@media screen and (max-width: 1200px) {
  .play-block {
    padding: 0;
  }
  .play-block__left {
    margin: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
.play-right {
width: 100%;
}
.play-layout {
  display: block;
}
.aside-casinos {
  display: none;
}
}
@media screen and (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 0.5fr 1fr;
}
.footer-left {
    max-width: 220px;
}
.footer-right {
    gap: 40px 4px;
}

}
@media screen and (max-width: 767px) {
      .footer-left {
        margin: 0 auto;
        text-align: center;
    }
    .footer-trust {
    justify-content: center;
}
.footer-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
}
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


.language-dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #f1f1f1;
    color: black;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropbtn img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.dropdown-content a img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}
