:root {
  --bg-main: #0a1726;
  --bg-content: #0e1e30;
  --bg-card: #152940;
  --bg-card-hover: #1c3654;
  --border-color: #213c5e;
  --text-main: #9cb1c9;
  --text-white: #ffffff;
  --accent-blue: #0076e6;
  --accent-blue-hover: #0088ff;
  --accent-green: #48b826;
  --accent-green-hover: #55cf2e;
  --accent-cyan: #00c3ff;
  --font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  font-size: 15px;
  padding-bottom: 70px;
}


.content,
.wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Remove text decoration for a tags serving as buttons */
a.btn-link {
  text-decoration: none;
  display: inline-block;
}

/* SVG Icon utility */
.icon-svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: currentColor;
  vertical-align: middle;
}

/* HEADER */
.header {
  background: #06101b;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  
}
.headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-badge {
  background: var(--accent-blue);
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.logo-text {
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.header .buttons {
  display: flex;
  gap: 12px;
}

.btn-reg,
.btn-log {
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-reg {
  background: linear-gradient(180deg, #58d62b 0%, #43a720 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(72, 184, 38, 0.4);
}
.btn-reg:hover {
  background: linear-gradient(180deg, #62ee30 0%, #4cb824 100%);
  color: #fff;
}
.btn-log {
  background: linear-gradient(180deg, #0088ff 0%, #005bb5 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 118, 230, 0.4);
}
.btn-log:hover {
  background: linear-gradient(180deg, #1aa0ff 0%, #006cd6 100%);
  color: #fff;
}

/* DUAL BANNER (1xBet Style) */
.universalBanner {
  margin: 24px 0;
}
.banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.banner_left,
.banner_right {
  background: linear-gradient(135deg, #14283e 0%, #0a1624 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  align-items: center;
}
.banner_left {
  border-left: 1px solid var(--border-color);
}
.banner_right {
  border-left: 1px solid var(--border-color);
}

.banner-graphic {
  position: absolute;
  right: -15px;
  bottom: -15px;
  opacity: 0.15;
  width: 160px;
  height: 160px;
  pointer-events: none;
}

.tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-cyan);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(0, 195, 255, 0.3);
  width: fit-content;
  margin-bottom: 12px;
}
.banner_right .tag {
  color: var(--accent-green);
  border-color: rgba(72, 184, 38, 0.3);
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.bonus_bonus {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.bonus_text {
  color: var(--text-main);
  font-size: 14px;
  margin-bottom: 20px;
}

.banner-casino,
.banner-bonus {
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: 0.2s;
  display: inline-block;
  text-decoration: none;
}
.banner-casino {
  background: var(--accent-blue);
  color: #fff;
}
.banner-casino:hover {
  background: var(--accent-blue-hover);
  color: #fff;
}
.banner-bonus {
  background: var(--accent-green);
  color: #fff;
}
.banner-bonus:hover {
  background: var(--accent-green-hover);
  color: #fff;
}

/* ICONS CAROUSEL */
.icons {
  margin-bottom: 24px;
}
.icons_inner {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 12px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 8px;
  justify-content: space-between;
}
.icons_inner::-webkit-scrollbar {
  display: none;
}
.icon_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 85px;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  padding: 6px;
  border-radius: 6px;
}
.icon_item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.icon_item_icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0c1826;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}
.icon_item span {
  font-size: 12px;
  color: var(--text-white);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.icon_divider {
  width: 1px;
  background: var(--border-color);
  height: 35px;
  align-self: center;
  flex-shrink: 0;
}

/* ANDROID PROMO BLOCK */
.androidBtnBlock {
  background: linear-gradient(90deg, #11263c 0%, #0a1624 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.android-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.android-logo-svg {
  width: 38px;
  height: 38px;
  fill: var(--accent-green);
}
.androidBtn-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.androidBtn-text-app {
  color: var(--text-main);
  font-size: 13px;
}
.androidBtn {
  background: var(--accent-blue);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
}
.androidBtn:hover {
  background: var(--accent-blue-hover);
  color: #fff;
}

/* TEXT BLOCK & CONTENT */
.section {
  background: var(--bg-content);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
/* REMOVED BLUE LEFT BORDER & PADDING FROM H1 */
h1.general-h1 {
  font-size: 24px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
h2 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin: 32px 0 16px 0;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}
h3 {
  font-size: 16px;
  color: var(--accent-cyan);
  font-weight: 700;
  margin: 20px 0 8px 0;
}
p.general-p,
p {
  margin-bottom: 16px;
  color: var(--text-main);
  line-height: 1.7;
}
ul.general-ul,
ol.general-ol,
ul {
  margin: 0 0 20px 20px;
  color: var(--text-main);
}
li {
  margin-bottom: 8px;
}

/* TOC STYLES */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}
.toc p.big {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.toc li a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.toc li a:hover {
  color: #fff;
}
.toc li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
}

/* TABLES STYLES */
.general-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}
.general-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  text-align: left;
  font-size: 14px;
}
.general-tr {
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s;
}
.general-tr:last-child {
  border-bottom: none;
}
.general-tr:hover {
  background: var(--bg-card-hover);
}
.general-th {
  background: #0c1826;
  color: #fff;
  font-weight: 700;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.general-td {
  padding: 14px 18px;
  color: var(--text-main);
  vertical-align: middle;
}
.general-td:first-child {
  color: #fff;
  font-weight: 600;
}

/* SLOTS & CARDS GRID */
.slots {
  margin: 30px 0;
}
.slots-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.slot__item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.slot__item:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.slot__item-icon-wrapper {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px auto;
  background: #0c1826;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  border: 1px solid var(--border-color);
}
.slot__item p {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.slot__item p.game {
  font-size: 12px;
  color: var(--text-main);
  margin: 0;
}

/* FOOTER & BUTTONS */
.footer {
  background: #06101b;
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px 0;
  margin-top: 40px;
}
.footerInner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer p.big {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.footer .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
}
.footer .menu a {
  color: var(--text-main);
  font-size: 13px;
  text-decoration: none;
}
.footer .menu a:hover {
  color: var(--accent-cyan);
}
.copyright {
  color: #587291;
  font-size: 13px;
  margin-top: 10px;
  border-top: 1px solid #142436;
  padding-top: 20px;
}

.scrollTop {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 900;
  transition: 0.2s;
}
.scrollTop:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-3px);
}

.footer-block-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #06101b;
  border-top: 1px solid var(--border-color);
  padding: 12px 16px;
  z-index: 999;
}
.footer-block-btn .buttons {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
      justify-content: center;
    align-items: center;
}
.footer-block-btn a.btn-link {
  flex: 1;
}

@media (max-width: 900px) {
  .banner-inner {
    grid-template-columns: 1fr;
  }
  .slots-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .toc ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .slots-list {
    grid-template-columns: 1fr;
  }
  .androidBtnBlock {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .androidBtn {
    width: 100%;
    text-align: center;
  }
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
