* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

body {
	background-color: #171824;
	background-image: url("main-bg.svg");
	color: #fff;
	background-size: 100%;
	font-size: 14px;
	padding-top: 85px;
}

@media (max-width: 850px) {
	body {
		padding-top: 135px;
	}
}

.table-col {
	max-width: 100%;
	overflow-x: scroll;
}
img {
	max-width: 100%;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px;
}

.header {
	position: fixed;
	width: 100%;
	margin-bottom: 30px;
	background: #171824;
	top: 0;
	z-index: 111;
}

.header .header-top-row {
	min-height: 50px;
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
}

.header .header-top-row .btn {
	margin-left: 10px;
}

.header .header-top-row .container {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	text-transform: uppercase;
	background: #ffc400;
	border-radius: 10px;
	height: 40px;
	font-size: 14px;
	border: 2px solid transparent;
	color: #000;
	padding: 0 20px;
	cursor: pointer;
}

.btn:last-child {
	background-color: transparent;
	border-color: #ffc400;
	color: #fff;
}

.image-wrapper {
	text-align: center;
}

.image-wrapper img {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 15px 0 25px;
	padding: 0;
}

main {
	margin: 0 15px;
	border-radius: 20px;
	background-color: #222335;
	padding-top: 40px;
}

.text-container table {
	width: 100%;
	border-radius: 12px;
}

.text-container th {
	padding: 4px;
}

.text-container td {
	padding: 8px;
}

.text-container tr:nth-child(odd) {
	background-color: #171824;
}

.text-container p,
.text-container ul,
.text-container ol {
	padding-bottom: 10px;
	line-height: 1.8;
}

.text-container ul,
.text-container ol {
	list-style-position: inside;
	padding-left: 15px;
}

h1 {
	font-size: 30px;
	padding: 0 0 15px;
}

h2 {
	font-size: 25px;
}

h3 {
	font-size: 20px;
}

h2,
h3 {
	padding: 15px 0 10px;
}

h1,
h2,
h3 {
	color: #fff;
	font-weight: 100;
	text-align: center;
}

.text-container a {
	color: #00a3ff;
	text-decoration: none;
}

.text-container a:hover {
	text-decoration: underline;
}

.text-container a:visited {
	color: #800080;
}

.site-logo {
	margin-right: auto;
}

.site-logo {
	font-size: 12px;
	text-transform: uppercase;
}

.site-logo span {
	color: #f0f;
	font-size: 24px;
	text-transform: uppercase;
}

@media only screen and (max-width: 850px) {
	.header .header-top-row .btn {
		margin: 0 5px;
	}
	.header .header-top-row .container {
		justify-content: center;
	}
	.site-logo {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
}

@media only screen and (max-width: 340px) {
	body {
		padding-top: 130px;
	}
}

#ctoc-list-captions {
	padding: 0;
	border: none;
}

.ctoc-body {
	padding: 10px;
}

.ctoc-body ul {
	margin-top: 0;
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
}

.ctoc-body ul li {
	margin-bottom: 10px;
}

.ctoc-body a {
	color: #ffc400;
	display: inline-block;
}

.ctoc-body a:hover {
	text-decoration: none;
}

.footer {
	background: url(footer-bg.png)
	repeat, #0a0a14;
	width: 100%;
	border-top: 1px dashed #303036;
}

.footer-copy {
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	padding: 15px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.footer-copy {
		flex-direction: column-reverse;
	}
}

.copy {
	width: 35%;
}

@media (max-width: 768px) {
	.copy {
		width: 100%;
		text-align: center;
	}
}

.age {
	display: flex;
	flex-direction: row;
	width: 40%;
	font-size: 12px;
	margin-top: 20px;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.age {
		width: 100%;
		text-align: center;
		flex-direction: column;
	}
}

.lang {
	width: 150px;
}
.text-box {
	border: 2px solid #00bcd4;   /* цвет рамки */
	border-radius: 10px;         /* скругление углов */
	padding: 20px;               /* отступы внутри */
	margin: 20px auto;           /* отступы снаружи */
	background: rgba(255, 255, 255, 0.05); /* лёгкий фон */
	box-shadow: 0 0 10px rgba(0, 188, 212, 0.3); /* свечение */
	max-width: 900px;            /* ширина блока */
  }
  .cat-nav {
	display: inline-block;
	margin: 15px auto;
	padding: 10px 15px;
	border: 1px solid #00bcd4;
	border-radius: 8px;
	background: rgba(0, 188, 212, 0.05);
  }
  
  .cat-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	justify-content: center;
  }
  
  .cat-nav li {
	margin: 0;
  }
  
  .cat-nav a {
	padding: 6px 10px;
	border-radius: 6px;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s ease;
	white-space: nowrap;
  }
  
  .cat-nav a:hover {
	background: rgba(0, 188, 212, 0.2);
	color: #00e5ff;
  }
.cat-banner {
  max-width: 600px;
  margin: 30px auto;
  padding: 25px;
  border-radius: 18px;
  background: linear-gradient(145deg, #1c1b2e, #242040);
  border: 2px solid #00bcd4;
  box-shadow: 0 0 25px rgba(0, 188, 212, 0.35);
  text-align: center;
  color: #fff;
}

.cat-banner h3 {
  font-size: 20px;
  font-weight: 600;
  color: #00e5ff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cat-banner .bonus {
  font-size: 48px;
  font-weight: 800;
  color: #00ffcc;
  margin: 10px 0;
}

.cat-banner .note {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.cat-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  background: #03353c;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.cat-btn:hover {
  background: #00e5ff;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}
.highlight-text {
	background: hsl(191, 52%, 94%);        /* нежно-зелёный фон */
	padding: 10px 14px;
	border-radius: 6px;
	font-family: "Georgia", serif; /* другой шрифт */
	font-style: italic;          /* курсив */
	font-weight: 300;            /* полужирный */
	font-size: 16px;
	color: #1a1a1a;
	display: inline-block;
  }
  .cat-logo{
  width:160px;       /* сделай больше/меньше по желанию */
  max-width:40vw;    /* чтобы не разъезжалось на мобилках */
  height:auto;
  display:block;
  margin:10px auto;
  border-radius:12px;
}
/* Контейнер плитки с бонусами Cat */
.cat-bonuses {
  margin: 24px 0 32px;
  padding: 20px;
  border-radius: 12px;
  background: #12151f;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Заголовок блока */
.cat-bonuses__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cat-bonuses__logo {
  flex-shrink: 0;
  width: 72px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #1b2030;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-bonuses__logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.cat-bonuses__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-bonuses__title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.cat-bonuses__subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.cat-bonuses__updated {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* Сетка карточек */
.cat-bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .cat-bonuses__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .cat-bonuses__grid {
    grid-template-columns: 1fr;
  }

  .cat-bonuses__header {
    flex-wrap: wrap;
  }

  .cat-bonuses__updated {
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
  }
}

/* Карточка бонуса */
.cat-bonus-card {
  position: relative;
  padding: 14px 14px 12px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, #2b3250, #171a25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Тип бонуса (чип) */
.cat-bonus-card__type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.cat-bonus-card__type-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb300;
}

/* Название бонуса */
.cat-bonus-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

/* Список параметров */
.cat-bonus-card__params {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.cat-bonus-card__params li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3px;
}

.cat-bonus-card__params span {
  font-weight: 600;
  color: #ffffff;
}

/* Нижняя строка: промокод + кнопка */
.cat-bonus-card__bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.cat-bonus-card__code {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.cat-bonus-card__code-link {
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

/* Чтобы использовалась твоя существующая .btn.btn-orange */
.cat-bonus-card__btn {
  margin-left: auto;
  font-size: 12px;
  padding: 7px 12px;
  white-space: nowrap;
}

/* Блок "условия" */
.cat-bonus-card__details {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.cat-bonus-card__summary {
  cursor: pointer;
  list-style: none;
  outline: none;
}

.cat-bonus-card__summary::-webkit-details-marker {
  display: none;
}

.cat-bonus-card__summary-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #a2c5ff;
  border-bottom: 1px dashed rgba(162, 197, 255, 0.6);
}

.cat-bonus-card__summary-icon {
  font-size: 12px;
  transform: translateY(1px);
}

.cat-bonus-card__details-inner {
  margin-top: 6px;
}/* Блок с бонусами Cat Casino */
.cat-bonus-section {
  margin: 32px 0;
  padding: 24px 20px;
  border-radius: 16px;
  background: #050814;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.cat-bonus-section-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.cat-bonus-section-title {
  font-size: 20px;
  font-weight: 600;
}

.cat-bonus-section-subtitle {
  font-size: 14px;
  opacity: 0.8;
}

.cat-bonus-section-updated {
  font-size: 12px;
  opacity: 0.7;
}

/* Сетка из трёх плиток */
.cat-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

/* Карточка бонуса */
.cat-bonus-card {
  position: relative;
  padding: 16px 16px 18px;
  border-radius: 14px;
  background: #070b19;
  border: 1px solid #ffcc33;
  box-shadow: 0 0 0 1px rgba(255, 204, 51, 0.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Тип бонуса */
.cat-bonus-type {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

/* Название бонуса */
.cat-bonus-name {
  font-size: 15px;
  line-height: 1.4;
  margin: 4px 0 0;
}

/* Список параметров */
.cat-bonus-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: 13px;
}

.cat-bonus-list li {
  margin-bottom: 2px;
}

.cat-bonus-list span {
  color: #ffcc33;
}

/* Промокод */
.cat-bonus-code {
  margin-top: 6px;
  font-size: 13px;
}

.cat-bonus-code a {
  color: #ffcc33;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 204, 51, 0.6);
}

/* Кнопка */
.cat-bonus-cta {
  margin-top: 10px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid #ffcc33;
  color: #ffcc33;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease,
    transform 0.1s ease;
}

.cat-bonus-cta:hover {
  background: #ffcc33;
  color: #111320;
  box-shadow: 0 0 18px rgba(255, 204, 51, 0.5);
  transform: translateY(-1px);
}

.cat-bonus-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Условия получения (аккордеон на чекбоксе) */
.cat-bonus-terms-container {
  margin-top: 6px;
  font-size: 12px;
}

.cat-bonus-terms-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #9ea6ff;
}

.cat-bonus-terms-toggle span {
  text-decoration: underline;
}

.cat-bonus-terms-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cat-bonus-terms {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  margin-top: 4px;
  opacity: 0;
}

.cat-bonus-terms-text {
  padding-top: 4px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  margin-top: 4px;
  line-height: 1.5;
}

/* раскрытие */
.cat-bonus-terms-checkbox:checked ~ .cat-bonus-terms {
  max-height: 120px;
  opacity: 1;
}



