/* СБРОС СТИЛЕЙ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ОБЩИЕ СТИЛИ */
body {
  color: #494949;
  padding-top: 80px; /* Отступ под фиксированную шапку */
  line-height: 1.6;
  counter-reset: section;
}

/* КОНТЕЙНЕР */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 40px; /* Дополнительный отступ снизу */
}

/* ОФОРМЛЕНИЕ ТЕКСТОВОГО БЛОКА (text-container) */
.text-container {
             /* Чуть более светлый оттенок фона для контента */
  padding: 30px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* ЗАГОЛОВКИ */
h1, h2, h3 {
  text-align: center;
  font-weight: bold;
  color: #f0c419;
  line-height: 1.3;
  margin-top: 20px;
  margin-bottom: 20px; /* Увеличенный отступ снизу для визуальной «воздушности» */
}

h1 { font-size: 32px; 
    text-transform:uppercase;
}
h2 { font-size: 26px; }
h3 { font-size: 20px; margin-bottom: 10px; }

h2.promo_headline, h2{
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: #333333;
    margin-top: 0;
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

h3{
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: #333333;
    margin-top: 0;
    margin-bottom: 16px;
    margin-bottom: 1rem;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
  color: #333; /* Немного светлее для контраста */
}

/* СТИЛИ ДЛЯ СПИСКОВ В ТЕКСТОВОМ БЛОКЕ */
ol, ul {
  margin: 15px 0 15px 40px; /* Отступы сверху/снизу и слева */
  line-height: 1.8;
}

li {
  margin-bottom: 8px;
}

/* ЯРКОЕ ВЫДЕЛЕНИЕ ССЫЛОК В ТЕКСТЕ */
a {
  color: #ffcc00;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ffd633;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #3344aa;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ВНУТРЕННЯЯ ОБЁРТКА HEADER (если есть) */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ЛОГОТИП */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  justify-content: center;
}

.logo-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(to right, #159968, #1db67e);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  line-height: 35px;
}
.logo-text{
    text-transform:uppercase;
}
/*РЕЙТИНГ*/

.casinosss-item-wrapper{
	margin-bottom:1em;
}
.casinosss-item-inner{
	display: flex;
  align-items: center;
	position:relative;
	background-color: #f7f7f7;
    box-shadow: 0 3px 8px rgb(0 0 0 / 2%), 0 5px 6px rgb(0 0 0 / 4%), 0 1px 5px rgb(0 0 0 / 10%);
	justify-content: space-between;
	padding:0 20px 0 30px;
	border: 1px solid #ededed;
    border-radius: 5px;
}
.casinosss-item-inner .item-image{
    padding: 7px 10px 7px 10px;
}
.casinosss-item-inner .item-image img{
   max-width:220px;
   height: auto;
}
.casinosss-item-inner .casino-place-icons{
	position: absolute;
    top: 0;
    left: 6px;
    z-index: 2;
}
.casinosss-item-inner:before{
	content: "" counter(section) "";
    counter-increment: section;
    text-align: center;
    position: absolute;
    top: 8px;
    left: 6px;
    width: 34px;
    font-size: 18px;
    font-family: 'circularMedium', Helvetica, Arial, sans-serif;
    color: #FFF;
    z-index: 3;
	font-weight:bold;
}
.item-flex-div{
	display:flex;
	flex-direction:column;
	text-align:center;
}
.item-flex-div-h{
	color: #586974;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 0.5em;
}
.promo-block{
	padding:5px 7px;
	border:1px dashed grey;
	border-radius:5px;
	cursor:pointer;
}
.promo-block .promo-value{
	color:#e91f1b;
	text-transform:uppercase;
	font-size:16px;
	margin-right:0.25em;
	font-weight:bold;
}
.bonus-value, .nodep-value{
	display:inline-block;
	padding:6px 7px;
	font-size:16px;
	font-weight:bold;
	color:#1db67e;
}

.item-button .item-button-play{
	display:block;
	background: #1db67e;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 10px;
	min-width:120px;
	transition:all ease 0.5s;
}
.item-button .item-button-play:hover{
  background-color:#159968;
	text-decoration:none;
	color:#fff;
}
/*КОНЕЦ РЕЙТИНГ*/

.custom-note{
    clear: both;
    margin: 20px 0px 25px;
    margin: 1.25rem 0px 1.5625rem;
    box-shadow: 2px 2px 13px #eeeeee;
    border: 1px solid #e9e9e9;
    border-left: 4px solid #46a28d;
    padding: 20px 25px;
    padding: 1.25rem 1.5625rem;
}

@keyframes glow {
  0% { box-shadow: 0 0 10px rgba(255, 204, 0, 0.6); }
  100% { box-shadow: 0 0 20px rgba(255, 204, 0, 1); }
}

/* НАВИГАЦИЯ (ЕСЛИ ИСПОЛЬЗУЕТСЯ) */
.main-nav {
  background: #1a1f2f;
  padding: 10px 0;
  border-bottom: 2px solid #2c3e50;
}

.nav-container ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.nav-container ul li {
  margin: 0 15px;
}

.nav-container ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 15px;
  transition: 0.3s ease-in-out;
}

.nav-container ul li a:hover {
  color: #ffcc00;
}

/* PROMO BLOCK */
.header-promo-block {
  background: linear-gradient(to right, #3344aa, #5771f1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.header-promo-block p{
    color:#fff;
}
/* КНОПКИ */
.goto-action-btn {
  background: #1db67e;
  color: #fff;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s;
  margin-top: 20px;
}
.goto-action-btn:hover {
  background-color: #159968;
  color: #fff;
}

/* ТАБЛИЦА КАЗИНО */
.casino-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: center;
  background: #232735;
  border-radius: 12px;
  overflow: hidden;
}

.casino-table th, .casino-table td {
  border: 1px solid #444;
  padding: 12px;
}

.casino-table th {
  background: linear-gradient(to right, #1db67e, #159968);
  color: #fff;
  font-weight: bold;
  /* Fix для прилипшей шапки при желании
     position: sticky;
     top: 0; */
}

.casino-table tbody tr {
  background: #f7f7f7;;
}


/* ЛОГОТИП КАЗИНО */
.casino-table img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
}

/* КНОПКИ (оранжевые) */
.btn-orange {
  background-color: #ff7f00;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}
.btn-orange:hover {
  background-color: #e76a00;
}

/* ТАБЛИЦА / РЕСПОНСИВНОСТЬ */
.responsive-table {
  overflow-x: auto; /* Прокрутка на мобильных */
  margin-bottom: 20px;
}

/* СОДЕРЖАНИЕ/ОГЛАВЛЕНИЕ (ЕСЛИ ЕСТЬ) */
.table-of-contents {
  background: linear-gradient(to right, #3344aa, #5771f1);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.table-of-contents h2 {
  margin-bottom: 10px;
}
.table-of-contents ol {
  margin-left: 20px;
}
.table-of-contents li {
  margin-bottom: 8px;
}
.table-of-contents li a {
  color: #ffcc00;
  font-weight: normal;
}
.table-of-contents li a:hover {
  text-decoration: underline;
}




/* ФУТЕР */
.site-footer {
  background: #3344aa;
  padding: 40px 0;
  font-size: 14px;
  color: #ffffff;
  text-align: center; /* Центрирование текста */
  width: 100%; /* Гарантированно растягиваем на всю ширину */
  display: flex;
  flex-direction: column;
  align-items: center; /* Центрируем содержимое */
  justify-content: center;
}

/* Нижняя часть футера */
.footer-bottom {
  width: 100%;
  max-width: 800px; /* Ограничиваем ширину для лучшего визуального баланса */
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #fff;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 5px 0;
  text-align: center;
  color:#fff;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* АДАПТИВНОСТЬ */
@media screen and (max-width: 768px) {
    
    .casinosss-item-inner{
		flex-direction:column;
	}
	.casinosss-item-inner .item-image{
		padding:0;
	}
	.casinosss-item-inner .item-image img{
		min-width:100%;
	}
	.item-flex-div{
		margin-bottom:0.5em;
	}
	.item-button{
		width:90%;
		margin-bottom:1em;
	}
	
  .casino-table th, .casino-table td {
    padding: 10px;
    font-size: 14px;
  }

  .casino-table img {
    width: 40px;
    height: 40px;
  }

  .btn-orange {
    padding: 8px 12px;
    font-size: 14px;
  }

  .goto-action-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  
  .container{
      width:100%;
  }
  .text-container{
      padding: 10px;
      margin-top:0;
  }
  body{
      padding-top: 55px;
  }
}