:root {
  --c-bg: #f8f2e9;           
  --c-h123: #000000;         
  --c-text: #000000;          
  --c-grey: #333333;          
  --c-white: #ffffff;
  --c-red: #f19700;           
  --c-red-hover: #ffac33;    
  --c-header-bg: #2E4A60;     
  --c-nav-bg: #e7dccb;        
  --c-hero-mid: #ffecec;     
  --c-border: #d2c6b7;        /
  --c-shadow: rgba(0, 0, 0, 0.1);      
  --c-gallery-shadow: rgba(241, 151, 0, 0.7); 
  --c-overlay: rgba(255, 255, 255, 0.7);      
  --c-cookie-bg: rgba(248, 242, 233, 0.95);  
  --c-faq-open-bg: #f0e8d9;        
  --container: 1200px;         
}




/* --------- base --------- */
/* --------- headings --------- */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  margin: 1.5rem 0 1.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }    
h3 { font-size: 1.5rem; }

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

body {
  background: var(--c-bg);
  color: var(--c-text);
  font: 17px/1.5 "Inter", Arial, sans-serif;
}
a[tb-on\:click] {
  cursor: pointer;
}
/* --------- layout --------- */
.main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
.container .container {
  padding-left: 0;
  padding-right: 0;
}

.site-header,
.site-footer {
  background: var(--c-header-bg);
}

.site-footer {
  padding: 2rem 1rem;
  text-align: center;
  font-size: .875rem;
  color: var(--c-grey);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* --------- nav --------- */
.logo {
  color: var(--c-red);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  margin-right: 2rem;
}

/* burger / cross */
.nav-toggle {
  display: none;
}

.burger {
  position: relative;
  width: 28px;
  height: 22px;
  cursor: pointer;
  margin-right: 1rem; 
  z-index: 1001;
}
.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--c-red);
  transition: transform .3s, opacity .3s;
}
.burger span {
  top: 50%;
  transform: translateY(-50%);
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}

.nav-toggle:checked + .burger::before {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle:checked + .burger::after {
  transform: translateY(-9px) rotate(-45deg);
}
.nav-toggle:checked + .burger span {
  opacity: 0;
}


.menu {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}
.menu > li {
  position: relative;
}
.menu a,
.menu span {
  color: var(--c-white);
  text-decoration: none;
  font-weight: 500;
}
.menu a:hover {
  color: var(--c-red);
}
.has-children > span {
  cursor: default;
}
.submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--c-nav-bg);
  padding: .5rem 0;
  min-width: 180px;
}
.submenu li {
  padding: .5rem 1rem;
}
.menu li:hover > .submenu {
  display: block;
}

.menu li.active > a,
.menu li.current > a,
.menu li.active > span,
.menu li.current > span {
  color: var(--c-red);
}
.menu li.active > a:hover,
.menu li.current > a:hover {
  color: var(--c-red);
}

/* --------- hero --------- */
.hero {
  padding: 5rem 0;
  text-align: center;
  background: radial-gradient(
    circle at center,
    var(--c-red) 0%,
    var(--c-hero-mid) 60%,
    var(--c-bg) 100%
  );
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.125rem;
  color: var(--c-grey);
}



/* --------- responsive --------- */
/* desktop */
@media (min-width: 1024px) {
  .burger { display: none; }
  .main-nav { position: static !important; display: block !important; }
}

@media (max-width: 1024px) {
  .burger { display: block; order: 3;}
  .header-buttons { order: 2; margin-right: 1rem; }
  .main-nav       { order: 1; flex: 2; text-align: center; }
  .logo           { flex: 1; }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .btn-primary {margin-right: 1rem;}
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--c-header-bg);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 4rem 2rem 2rem;
    overflow-y: auto;
  }
  #nav-toggle:checked ~ .main-nav {
    display: flex;
  }

  .menu {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
  }
  .submenu {
    position: static;
    background: transparent;
    padding: 0;
  }
  .player-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 0;
  }
}

/* ---------- sections ---------- */
.section {
  padding: 4rem 0;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--c-h123);
}

/* info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--c-text);
  margin: 0 auto;
}
.info-table th,
.info-table td {
  padding: .75rem 1rem;
  border: 1px solid var(--c-border);
}
.info-table th {
  background: var(--c-nav-bg);
  text-align: left;
  color: var(--c-grey);
}

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .3s, box-shadow .3s, filter .3s;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--c-gallery-shadow);
  filter: brightness(1.05);
}

@media (max-width: 1024px) {
  .gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .gallery img {
    flex: 0 0 auto;
    width: 70vw;
    max-width: none;
    scroll-snap-align: center;
  }
  .btn-primary {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    padding: .65rem 1rem;
    white-space: normal;
    text-align: center;
  }  
}

/* ------- Download Section ------- */
.download-section {
    max-width: 795px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    cursor: pointer;
}

.download-section__inner {
  align-items: flex-start;
}

.download-section__left {
  flex: 0 0 auto;
  max-width: 350px;
}
.download-section__img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.download-section__right {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;      
}

.download-section__title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: var(--c-h123);
}

.download-section__info {
  display: flex;
  flex-wrap: wrap;      
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.download-section__info li {
  flex: 1 1 0;          
  min-width: 0;         
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; 
}
.download-section__info span {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-text);
}
.download-section__info small {
  margin-top: .25rem;
  font-size: .875rem;
  color: var(--c-grey);
}

.download-section__info span,
.download-section__info small {
  display: block;          
}

.download-section__buttons {
  display: flex;
  flex-wrap: wrap;           
  gap: 1rem;
  margin-top: auto;         
  justify-content: flex-start;
}
.download-section__info,
.download-section__buttons {
  width: 100%;         
}
.download-section__button {
  flex: 1 1 120px; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  color: var(--c-text);
  padding: .65rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: none;     
  transform: none;
}
.download-section__button:hover,
.download-section__button:focus {
  background: var(--c-white);  
  transform: none;
  outline: none;               
}
.download-section__button img {
  display: block;
  width: auto;
}

@media (max-width: 768px) {
  .download-section__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .download-section__left {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .download-section__title {
    font-size: 1.75rem;
  }
  .download-section__buttons {
    justify-content: center;
  }
}


/* platforms */
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
}
.platforms a {
  display: block;
  padding: .75rem 1.25rem;
  background: var(--c-nav-bg);
  border-radius: 6px;
  color: var(--c-text);
  text-decoration: none;
}
.platforms a:hover {
  background: var(--c-red);
}

/* ---------- generic two-column ---------- */
.two-col {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.col-text { flex: 1; }
.col-img {
  flex: 1;
  display: flex;
  justify-content: center;
}
.col-img img {
  max-width: 100%;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .two-col { flex-direction: column; }
}

/* ---------- buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--c-red);
  color: var(--c-text);
  padding: .65rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  animation: btnPulse 2s infinite ease-in-out;
}
.btn-primary:hover {
  background: var(--c-red-hover);
}
@keyframes btnPulse {
  0%   { transform: scale(1); box-shadow: 0 0 0 rgba(241,215,55,0); }
  50%  {transform: scale(1.05);box-shadow: 0 0 24px rgba(241,151,0,0.7);}
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(241,215,55,0); }
}

/* ---------- menu cards ---------- */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  list-style: none;
  margin-top: 2rem;
}
.menu-cards li {
  background: var(--c-nav-bg);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}
.menu-cards strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--c-red);
}
.menu-cards span {
  color: var(--c-grey);
  font-size: .9rem;
}

/* ---------- casino-list ---------- */
.casino-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin-top: 2rem;
}
.casino-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  color: var(--c-text);
  border: 2px solid transparent;
  transition: .2s;
}
.casino-list a:hover {
  border-color: var(--c-red);
  transform: translateY(-2px);
}

/* ---------- numbered steps ---------- */
.steps {
  counter-reset: step;
  list-style: none;
  margin-top: 2rem;
}
.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  background: var(--c-red);
  color: var(--c-text);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.steps span { flex: 1; }

/* ---------- toc menu ---------- */
.toc {
  border: 2px solid var(--c-red);
  border-radius: 8px;
  padding: 1rem;
}
.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  justify-content: center;
}
.toc-list a {
  display: inline-block;
  padding: .5rem 1rem;
  background: var(--c-nav-bg);
  border-radius: 6px;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
}
.toc-list a:hover,
.toc-list a:focus {
  background: var(--c-red);
}

/* --------- simple lightbox --------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s;
  z-index: 2000;
}
.lightbox.open {
  visibility: visible;
  opacity: 1;
}
.lightbox__img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .5);
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--c-white);
  cursor: pointer;
  user-select: none;
}

/* ---------- breadcrumbs --------- */
.breadcrumbs {
  font-size: 1rem;
  margin: 1rem 0;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
}
.breadcrumbs__item a {
  color: var(--c-text);
  text-decoration: none;
}
.breadcrumbs__item a:hover {
  color: var(--c-red);
}
.breadcrumbs__item--current {
  color: var(--c-red);
  cursor: default;
}
.breadcrumbs__list > * + *::before {
  content: "/";
  margin-right: .5rem;
  color: var(--c-text);
}

/* ---------- casino-item (v2) ---------- */
.casino-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--c-nav-bg);
  padding: 1rem 1.25rem;
  border-radius: 8px;
}
.casino-item__img {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--c-header-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.casino-item__img svg,
.casino-item__img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  fill: var(--c-text);
}
.casino-item__body { flex: 1; }
.casino-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: .25rem;
}
.casino-item__desc {
  font-size: .9rem;
  color: var(--c-grey);
  line-height: 1.4;
  margin: 0;
}
.casino-item__bonus {
  text-align: right;
  min-width: 180px;
}
.bonus-text {
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-red);
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.bonus-text span {
  font-weight: 400;
  color: var(--c-text);
}
.btn-play {
  display: inline-block;
  padding: .6rem 1.5rem;
  border-radius: 6px;
  background: var(--c-red);
  color: var(--c-text);
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-play:hover {
  background: var(--c-red-hover);
  transform: translateY(-2px);
}

/* ---------- back-to-top ---------- */
.to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px var(--c-shadow);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, transform .3s;
  z-index: 2500;
}
.to-top:hover {
  transform: translateY(-2px);
  background: var(--c-red-hover);
}
.to-top--show {
  opacity: 1; visibility: visible;
}

/* ---------- footer layout ---------- */
.site-footer {
  background: var(--c-header-bg);
  color: var(--c-white);
  padding: 3rem 1rem 2rem;
  font-size: .9rem;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
.footer-col {
  flex: 1 1 160px;
  min-width: 130px;
}
.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: .75rem;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.footer-list a {
  color: var(--c-white);
  text-decoration: none;
  transition: color .2s;
}
.footer-list a:hover {
  color: var(--c-red);
}
.share-links {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  justify-content: center;
}
.share-icon {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: var(--c-nav-bg);
  border-radius: 50%;
  transition: background .2s;
}
.share-icon:hover {
  background: var(--c-red);
}
.share-icon svg {
  fill: var(--c-text);
  width: 20px; height: 20px;
}
.footer-bottom {
  border-top: 1px solid var(--c-border);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: .8rem;
}

.footer-col--logo {
  flex: 1 1 280px;         
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}


.socials {
  display: flex;
  gap: .5rem;
  list-style: none;
  margin: .5rem 0 0;
  padding: 0;
}
.socials img { width: 36px; height: 36px; display: block; }


.footer-images {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.footer-images img {
  width: 96px; height: 56px;
  object-fit: contain;
  display: block;
}


@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .site-footer {
    padding: 2.5rem 1rem 1.5rem;
    text-align: center;
  }
  .footer-col {
    max-width: 320px;
  }
  .footer-col--logo { order: -1; }
}

/* ---------- FAQ (accordion) ---------- */
.faq {
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: var(--c-nav-bg);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--c-text);
  overflow: hidden;
  transition: background .25s;
}
.faq-item[open] {
  background: var(--c-faq-open-bg);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-weight: 700; font-size: 1.25rem;
  color: var(--c-red);
  transition: transform .25s;
}
.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}
.faq-item p {
  margin: .75rem 0 0;
  color: var(--c-grey);
  line-height: 1.5;
  font-size: .9375rem;
}

/* ---------- promo box (hero) ---------- */
.promo-box {
  --c-promo-bg: var(--c-nav-bg);
  --c-promo-border: var(--c-red);
  background: var(--c-promo-bg);
  border: 2px dashed var(--c-promo-border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.promo-sub {
  font-size: .85rem;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.promo-code {
  display: flex;
  width: 100%;
  border: 2px solid var(--c-red);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: .75rem;
}
.promo-code__text {
  flex: 1;
  font-weight: 700;
  font-size: 1.25rem;
  padding: .65rem .75rem;
  background: var(--c-white);
}
.promo-code__copy {
  width: 80px;
  text-align: center;
  background: var(--c-red);
  color: var(--c-text);
  font-weight: 600;
  padding: 0 .9rem;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.promo-code__copy:hover {
  background: var(--c-red-hover);
}
.promo-desc {
  font-size: .9rem;
  line-height: 1.4;
  color: var(--c-grey);
  margin: 0;
}

/* ---------- game player ---------- */
.player-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--bg) center / cover no-repeat;
  border-radius: 12px;
  overflow: hidden;
}
.player-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-overlay);
  backdrop-filter: blur(2px);
}
.player-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s;
}
.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.btn-play {
  display: inline-block;
  padding: .9rem 2.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background .25s, transform .25s;
}
.btn-play--primary {
  background: var(--c-red);
  color: var(--c-text);
}
.btn-play--primary:hover {
  background: var(--c-red-hover);
  transform: translateY(-2px);
}
.btn-play--ghost {
  background: transparent;
  border: 2px solid var(--c-red);
  color: var(--c-red);
}
.btn-play--ghost:hover {
  background: var(--c-red);
  color: var(--c-text);
  transform: translateY(-2px);
}
.player-full {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-bg);
  border: 2px solid var(--c-red);
  border-radius: 6px;
  color: var(--c-text);
  cursor: pointer;
  z-index: 3;
  transition: background .25s;
}
.player-full:hover {
  background: var(--c-red);
}

.player-box.fullscreen {
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  padding: 0; border-radius: 0;
  z-index: 3000;
}
.player-box.fullscreen .player-full {
  bottom: 1.25rem; right: 1.25rem;
}
@media (max-width: 768px) {
  .btn-play { width: 90%; }
}

.btn-play--primary:hover,
.btn-play--ghost:hover {
  transform: none;
}

/* author page */
.author-header {
  align-items: center;
  gap: 2.5rem;
}
.author-photo {
  flex: 0 0 180px;
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-nav-bg);
}
.author-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.author-name { font-size: 2rem; margin: 0 0 .3rem; }
.author-role {
  color: var(--c-grey);
  margin: 0 0 1rem;
  font-size: 1rem;
}
.author-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: .4rem;
}
.author-meta strong { color: var(--c-text); }
.author-social {
  display: flex;
  gap: .75rem;
}
.author-social a {
  display: inline-flex;
  width: 40px; height: 40px;
  background: var(--c-nav-bg);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.author-social a:hover {
  background: var(--c-red);
}
.author-social svg {
  fill: var(--c-text);
  width: 20px; height: 20px;
}
.author-bio {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-grey);
}
.article-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: .75rem;
}
.article-list a {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
}
.article-list time {
  display: block;
  font-size: .875rem;
  color: var(--c-grey);
}
.article-list a:hover {
  color: var(--c-red);
}

/* cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: var(--c-cookie-bg);
  color: var(--c-text);
  font-size: .875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  z-index: 4000;
  transform: translateY(100%);
  transition: transform .4s;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner a {
  color: var(--c-red);
}
.cookie-btn {
  background: var(--c-red);
  color: var(--c-text);
  border: none;
  border-radius: 4px;
  padding: .5rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.cookie-btn:hover {
  background: var(--c-red-hover);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  .player-box {
    width: calc(100% + 2rem) !important;
    margin: 0 -1rem !important;
    border-radius: 0 !important;
    min-height: 280px;
  }
  .player-iframe {
    border-radius: 0 !important;
  }
  
/*   casino-item — mobile layout (≤ 600 px)                            */
  .casino-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
  }

  .casino-item > * {
    flex: 0 1 100%;
    width: 100%;
    max-width: 100%;
  }

  .casino-item__img {
    flex: none; 
    width: clamp(80px, 34vw, 120px);
    height: clamp(80px, 34vw, 120px);
    margin-bottom: 1rem;
  }
  
  .casino-item__title {text-align:center}
  
  .casino-item__body {
    margin-bottom: 1rem;
    min-width: 0;
  }

  .casino-item__bonus {
    min-width: 0;
  }

  .btn-primary {
    width: 100%;
    padding: .65rem 1rem;
  }  
  
}

.header-buttons {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 380px) {
  .hero-welcome .cont {
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0 1rem !important;
  }

  .hero-welcome .two-col {
    display: flex;
    flex-direction: column !important;
    gap: 1rem;
  }

  .hero-welcome .col-text,
  .hero-welcome .col-img {
    flex: none;
    width: 100%;
  }

  .hero-welcome .col-img img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .hero-welcome .section-title {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    word-break: break-word;
    hyphens: auto;
  }

  .hero-welcome .lead {
    font-size: 0.85rem;
  }
  
  .header-buttons .btn-primary {
    display: block;
    width: 100% !important;       
    max-width: none !important;   
    padding: 0.5rem 0.75rem !important; 
    font-size: 0.9rem !important;  
    white-space: normal !important;
    text-align: center;            
    margin-right: 0 !important;    
    box-sizing: border-box;        
  }  
  
}
.slot-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* base table */
.slot-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: .9375rem;
  color: var(--c-text);
  min-width: 600px;          /* keeps columns readable on big screens */
}

/* header row */
.slot-table thead th {
  background: var(--c-nav-bg);
  padding: .75rem 1rem;
  border: 1px solid var(--c-border);
  font-weight: 600;
  white-space: nowrap;
}

/* body cells */
.slot-table td,
.slot-table tbody th {
  padding: .65rem 1rem;
  border: 1px solid var(--c-border);
  vertical-align: top;
}

/* subtle zebra striping */
.slot-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,.025);
}

/* “Wild / Scatter” pill */
.slot-table .tag {
  display: inline-block;
  margin-left: .35rem;
  padding: .15rem .45rem;
  font-size: .75em;
  border-radius: 4px;
  background: var(--c-red);
  color: var(--c-white);
  white-space: nowrap;
}

/* caption visually hidden but screen-reader readable */
.slot-table caption {
  position: absolute;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
/* ===== language switch ===== */
.lang-switch{
  position:relative;
  font-weight:600;
  margin-left:1.25rem;
}
.lang-switch__current{
  background:none;border:0;cursor:pointer;
  font-size:1rem;text-transform:uppercase;
  display:flex;align-items:center;gap:.35rem;
  color:var(--c-white);
}
.lang-switch__current::after{
  content:'';width:.4rem;height:.4rem;
  border:.15rem solid var(--c-white);
  border-left:transparent;border-top:transparent;
  transform:rotate(45deg);transition:.3s; margin-top:.15rem;
}
.lang-switch.is-open .lang-switch__current::after{transform:rotate(-135deg);}
.lang-switch__list{
  position:absolute;right:0;top:calc(100% + .5rem);
  background:var(--c-nav-bg);border-radius:6px;min-width:8rem;
  box-shadow:0 4px 12px var(--c-shadow);
  padding:.35rem 0;list-style:none;margin:0;display:none;z-index:1100;
}
.lang-switch.is-open .lang-switch__list{display:block;}
.lang-switch__link{
  display:block;padding:.45rem 1rem;font-size:.9rem;
  white-space:nowrap;color:var(--c-text);text-decoration:none;
  transition:background .2s,color .2s;
}
.lang-switch__link:hover,
.lang-switch__link.is-active{
  background:var(--c-red);color:var(--c-text);
  cursor:default;
}

@media (max-width:1024px){
  .lang-switch{margin-left:0;}
  .lang-switch__list{
    position:static;display:flex;gap:1rem;
    background:transparent;box-shadow:none;border-radius:0;padding:0;
  }
  .lang-switch__current::after{display:none;}
  .lang-switch__link{
    padding:.3rem .6rem;color:var(--c-white);background:none;
  }
  .lang-switch__link:hover{background:none;color:var(--c-red);}
  .lang-switch__link.is-active{background:none;color:var(--c-red);}
}

/* ---------- LANG SWITCH — MOBILE FIX ---------- */


.lang-switch__list{
  position:absolute;         
  right:0;
  top:calc(100% + .5rem);
  background:var(--c-nav-bg);
  border-radius:6px;
  box-shadow:0 4px 12px var(--c-shadow);
  padding:.35rem 0;
  list-style:none;
  margin:0;
  display:none;            
  z-index:1099;             
}
.lang-switch.is-open .lang-switch__list{ display:block; }


@media (max-width:1024px){
  .lang-switch__current::after{
    content:'';                      
    width:.4rem; height:.4rem;
    border:.15rem solid var(--c-white);
    border-left:transparent; border-top:transparent;
    transform:rotate(45deg);
    margin-top:.15rem;
  }

}

/* ---------- HEADER LAYOUT FIX ---------- */

.header-inner{ flex-wrap:nowrap; }


.logo{ flex:0 0 auto; }


.header-buttons{
  display:flex;
  align-items:center;
  gap:1rem;
  max-width:40%;        
  flex:1 1 auto;        
}


.burger{
  flex:0 0 28px;        
  z-index:1101;         
}

/* (опц.) если nav-toggle (input) тоже участвует во flex-раскладке, дайте ему order:3 */
@media (max-width:1024px){
  .nav-toggle{ order:3; }
}
