* {
  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%;
  background-repeat: no-repeat;
  font-size: 14px;
  padding-top: 85px;
}

@media (max-width: 850px) {
  body {
    padding-top: 135px;
  }
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  margin-bottom: 30px;
  background: #171824;
  top: 0;
  z-index: 111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header .header-top-row {
  min-height: 50px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.header .header-top-row .container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.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;
}

.site-logo {
  margin-right: auto;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.05;
}

.site-logo span {
  color: #f0f;
  font-size: 24px;
  text-transform: uppercase;
}

@media only screen and (max-width: 850px) {
  .header .header-top-row .container {
    justify-content: center;
  }

  .site-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .btn {
    margin: 0 5px;
  }
}

@media only screen and (max-width: 340px) {
  body {
    padding-top: 130px;
  }
}

/* Main */
main {
  margin: 0 15px;
  border-radius: 20px;
  background-color: #222335;
  padding-top: 40px;
  padding-bottom: 20px;
}

.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;
}

/* Sections spacing */
.section {
  margin-top: 18px;
  padding-top: 8px;
}

/* Table responsive */
.table-col {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 10px;
  border-radius: 12px;
}

.text-container table {
  width: 100%;
  border-radius: 12px;
  border-collapse: collapse;
  overflow: hidden;
}

.text-container th {
  padding: 10px;
  background: rgba(255, 196, 0, 0.10);
}

.text-container td {
  padding: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.text-container tr:nth-child(odd) {
  background-color: #171824;
}

/* Nav */
.cat-nav {
  display: block;
  margin: 15px auto 20px;
  padding: 10px 15px;
  border: 1px solid #00bcd4;
  border-radius: 12px;
  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 a {
  padding: 6px 10px;
  border-radius: 8px;
  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;
  text-decoration: none;
}

/* Banner */
.cat-banner {
  max-width: 600px;
  margin: 22px auto 10px;
  padding: 22px;
  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: 18px;
  font-weight: 600;
  color: #00e5ff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cat-banner .bonus {
  font-size: 44px;
  font-weight: 800;
  color: #00ffcc;
  margin: 10px 0;
}

.cat-banner .note {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 18px;
}

.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;
  color: #001417;
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
  text-decoration: none;
}

/* FAQ */
.faq-item {
  margin: 10px 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
}

.faq-item > summary {
  cursor: pointer;
  font-weight: 600;
  outline: none;
}

.faq-body {
  margin-top: 8px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: url(footer-bg.png) repeat, #0a0a14;
  width: 100%;
  border-top: 1px dashed #303036;
  margin-top: 20px;
}

.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;
  gap: 15px;
}

@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;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .age {
    width: 100%;
    text-align: center;
    flex-direction: column;
  }
}

.lang {
  width: 150px;
}