* {
	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;
}

