* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

.hero {
  display: block;
  height: clamp(260px, 33.3vw, 615px);
  width: 100%;
  background-color: #000;
  overflow: hidden;
}

.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.header {
  position: fixed;
  transform: translateY(-200px);
  transition: 0.2s all;
  width: 100%;
  z-index: 1000;
}
.header--active {
  position: fixed;
  transform: translateY(0px);
}
.header-navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  background-color: #0f0f0f;
  width: 100%;
}

.btn {
  width: 100%;
  display: block;
  background: #c9f2f2;
  color: #000 !important;
  border: 1px solid #0f0f0f;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 1px 0px 3px 2px#4e4e4e84;
  transition: 0.2s all;
  min-width: 250px;
  text-align: center;
}
.btn:hover {
  background: #000;
  color: #c9f2f2 !important;
  border: 1px solid #c9f2f2;
  transform: translateY(-2px);
  box-shadow: 1px 0px 8px 3px#4e4e4e;
}
.btn--reg {
  background: #00c853;
  color: #000;
  border: 1px solid #00c853;
  box-shadow: 1px 0px 3px 2px#38573a8e;
}
.btn--reg:hover {
  background: #000;
  color: #00c853;
  border: 1px solid #000;
  box-shadow: 1px 0px 8px 3px#38573a;
}
.btn--login {
  background: #f7ed2a;
  color: #000;
  border: 1px solid #f7ed2a;
  box-shadow: 1px 0px 3px 2px#7c793875;
}
.btn--login:hover {
  background: #000;
  color: #f7ed2a;
  border: 1px solid #f7ed2a;
  box-shadow: 1px 0px 8px 3px#F7ED2A;
}
.btn--invite {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  box-shadow: 1px 0px 3px 2px#7c793875;
}
.btn--invite:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 1px 0px 8px 3px#fff;
}

.content {
  max-width: 900px;
  margin: 20px auto;
  padding: 1px 20px;
  /* background-color: #0f0f0f; */
  border-radius: 10px;
}

.content h1,
.content h2,
.content h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  padding-bottom: 10px;
}
.content h4,
.content h5,
.content h6 {
  margin-bottom: 5px;
  margin-top: 15px;
  padding-bottom: 2px;
}
.content h1 {
  font-size: clamp(30px, 5vw, 40px);
  line-height: clamp(35px, 5vw, 45px);
  color: #f7ed2a;
  padding-bottom: 10px;
  border-bottom: 1px solid #f7ed2a;
}
.content h2 {
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
}
.content h3 {
  font-size: clamp(20px, 5vw, 30px);
  line-height: clamp(25px, 5vw, 35px);
}
.content h4 {
  font-size: clamp(18px, 5vw, 25px);
  line-height: clamp(23px, 5vw, 30px);
}
.content h5 {
  font-size: clamp(16px, 5vw, 20px);
  line-height: clamp(21px, 5vw, 25px);
}
.content h6 {
  font-size: clamp(16px, 5vw, 18px);
  line-height: clamp(21px, 5vw, 23px);
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: #00c853;
  border-bottom: 1px solid #00c853;
}
.content p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: clamp(25px, 2vw, 30px);
}
.content a {
  color: #4a4cfa;
}
.content a:hover {
  color: #37399c;
}
.content ol,
.content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.content table {
  width: 100%;
  display: table;
  margin-bottom: 20px;
  border-collapse: collapse;
  table-layout: auto;
}
.content thead {
  color: #00c853;
}
.content thead,
.content tbody {
  display: table-row-group;
  width: auto;
}
.content tr {
  display: table-row;
  width: auto;
}
.content th {
  font-size: clamp(17px, 2vw, 22px);
  line-height: clamp(25px, 2vw, 30px);
}
.content td {
  font-size: clamp(14px, 2vw, 18px);
  line-height: clamp(21px, 2vw, 25px);
}
.content thead tr {
  border-bottom: 1px solid #00c853;
}
.content tbody tr:nth-last-child(2n + 1) {
  background-color: #4e4e4e;
}
.content th,
.content td {
  min-width: 100px;
  padding: 10px;
}
.content img {
  width: 100%;
}
.сards {
  margin: 20px auto;
  max-width: 900px;
  padding: 1px 20px;
}
.cards__title {
  color: #00c853;
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
  margin-bottom: 20px;
}
.cards__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, minmax(150px, 1fr));
  grid-template-rows: repeat(6, minmax(100px, 1fr));
}
.cards__item {
  transition: 0.2s all;
  background: linear-gradient(90deg, #313392, #5052d6);
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px;
  text-decoration: none;
}
.cards__item:hover {
  background: linear-gradient(180deg, #313392, #5052d6);
  scale: 1.01;
}
.cards__icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  object-fit: contain;
}
.cards__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.start {
  margin: 20px auto;
  max-width: 860px;
  padding: 40px 20px;
  background-color: #00c853;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 0;
}
.start__title {
  color: #fff;
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
  margin-bottom: 10px;
}
.start__description {
  font-weight: 600;
  max-width: 500px;
  text-align: center;
}
.footer {
  background-color: #0f0f0f;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer__disclaimer,
.footer__text {
  max-width: 300px;
  font-size: 14px;
}
.footer__text {
  margin-bottom: 10px;
}
@media (min-width: 375px) {
  .cards__grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    grid-template-rows: repeat(3, minmax(100px, 1fr));
  }
}
@media (min-width: 575px) {
  .btn {
    width: auto;
  }
  .hero__img {
    display: block;
  }
}
@media (min-width: 768px) {
  .content thead,
  .content tbody {
    display: table-row-group;
  }
  .cards__grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    grid-template-rows: repeat(2, minmax(100px, 1fr));
  }
}
@media (min-width: 860px) {
  .start {
    border-radius: 10px;
    margin-bottom: 20px;
  }
}


.site-home { display: flex; flex: 0 0 auto; align-items: center; width: 180px; max-width: 40vw; margin-right: auto; overflow: hidden; }
.site-home .header-logo { display: block !important; width: 180px !important; max-width: 100% !important; height: auto !important; max-height: 62px !important; object-fit: contain !important; }
.header + .content { padding-top: 120px; }
.footer { height: auto; min-height: 100px; padding: 24px 20px; text-align: center; gap: 10px; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
.footer__nav a { color: #c9f2f2; }
.footer__text, .footer__disclaimer { max-width: 760px; margin: 0; }
.toc { padding: 18px 20px; margin: 20px 0; background: #0f0f0f; border-radius: 10px; }
.toc__title { color: #00c853; font-size: clamp(25px, 5vw, 35px); font-weight: 700; margin: 0 0 10px; }
.faq-accordion details { background: #0f0f0f; border: 1px solid #4e4e4e; border-radius: 8px; margin: 10px 0; padding: 12px 16px; }
.faq-accordion summary { color: #00c853; cursor: pointer; font-size: 18px; font-weight: 700; }
.faq-accordion p { margin: 12px 0 0; }
.error-page { min-height: 70vh; padding-top: 120px; }
@media (max-width: 574px) {
  .site-home { width: 160px; max-width: 70vw; justify-content: center; margin-right: 0; }
  .site-home .header-logo { width: 160px !important; }
  .header + .content { padding-top: 250px; }
}

/* Roby Casino visual theme */
.hero { position: relative; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 3, 24, 0.94) 0%, rgba(17, 8, 49, 0.76) 34%, rgba(17, 8, 49, 0.08) 68%);
  pointer-events: none;
}
.hero__offer {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(24px, calc((100vw - 1180px) / 2));
  width: min(510px, 44vw);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}
.hero__eyebrow {
  margin-bottom: 8px;
  color: #ff9a45;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__offer strong {
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.05;
  background: linear-gradient(90deg, #ff9a45, #ff38d1 55%, #9e5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__spins { font-size: clamp(22px, 2.7vw, 40px); font-weight: 800; line-height: 1.15; }
.hero__terms { margin-top: 12px; color: #ddd2ff; font-size: clamp(13px, 1.2vw, 17px); }
.hero__button {
  margin-top: 20px;
  padding: 12px 26px;
  border: 1px solid #ff5dd8;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff2fbe, #7a42ff);
  box-shadow: 0 8px 26px rgba(220, 42, 255, 0.36);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.btn { background: linear-gradient(135deg, #5a2cad, #9d277f); border-color: #8e64ff; color: #fff !important; }
.btn:hover { background: #160b25; border-color: #c45cff; color: #f0d9ff !important; }
.btn--reg { background: linear-gradient(135deg, #ff2fbe, #ff6b77); border-color: #ff4fc9; color: #fff !important; box-shadow: 0 4px 18px rgba(255, 47, 190, 0.3); }
.btn--reg:hover { background: #160b25; border-color: #ff4fc9; color: #ff72dc !important; }
.btn--login { background: linear-gradient(135deg, #7a42ff, #4f7cff); border-color: #8e64ff; color: #fff !important; box-shadow: 0 4px 18px rgba(111, 72, 255, 0.32); }
.btn--login:hover { background: #160b25; border-color: #8e64ff; color: #bda8ff !important; }
.content h1 { color: #ff70dc; border-bottom-color: #8c46ff; }
.content h2, .content h3, .content h4, .content h5, .content h6 { color: #c88cff; border-bottom-color: #57308b; }
.content a { color: #e764ff; }
.content a:hover { color: #ff9a45; }
.toc { background: linear-gradient(145deg, #130b20, #201034); border: 1px solid #512b7b; }
.toc__title, .faq-accordion summary, .cards__title { color: #e66aff; }
.faq-accordion details { background: #140c21; border-color: #4f2a72; }
.cards__item { background: linear-gradient(135deg, #35136d, #b51dab); }
.cards__item:hover { background: linear-gradient(135deg, #4c1a95, #e12bc9); }
.start { background: linear-gradient(135deg, #40147f, #d027b7); }
.footer__nav a { color: #e6a4ff; }

.table-wrap {
  width: 100%;
  margin: 20px 0 28px;
  overflow-x: auto;
  border: 1px solid #513172;
  border-radius: 12px;
  background: #100918;
  box-shadow: 0 12px 32px rgba(56, 20, 91, 0.3);
  scrollbar-color: #a24cce #180d25;
}
.content .table-wrap table {
  display: table;
  width: 100%;
  min-width: 680px;
  margin: 0;
  overflow: visible;
  border: 0;
  border-collapse: collapse;
  table-layout: auto;
}
.content .table-wrap thead,
.content .table-wrap tbody { display: table-row-group; width: auto; }
.content .table-wrap tr { display: table-row; width: auto; }
.content .table-wrap thead tr { border-bottom-color: #7d3ca8; }
.content .table-wrap th,
.content .table-wrap td {
  min-width: 0;
  padding: 13px 16px;
  border: 0;
  border-right: 1px solid #42275e;
  border-bottom: 1px solid #42275e;
  vertical-align: top;
  text-align: left;
  overflow-wrap: normal;
}
.content .table-wrap th:last-child,
.content .table-wrap td:last-child { border-right: 0; }
.content .table-wrap tr:last-child > * { border-bottom: 0; }
.content .table-wrap tr:first-child th,
.content .table-wrap tr:first-child td {
  background: linear-gradient(135deg, #4b1c82, #9d277f);
  color: #fff;
  font-weight: 800;
}
.content .table-wrap tr:nth-child(even) td { background: #1b1028; }
.content .table-wrap tr:nth-child(odd) td { background: #120b1d; }
.content .table-wrap tr:hover td { background: #28143b; }

@media (max-width: 700px) {
  .hero { height: 390px; }
  .hero__img { object-position: 72% center; }
  .hero::after { background: linear-gradient(90deg, rgba(7, 3, 24, 0.96) 0%, rgba(17, 8, 49, 0.72) 58%, rgba(17, 8, 49, 0.15) 100%); }
  .hero__offer { left: 20px; width: calc(100% - 40px); }
  .hero__button { margin-top: 16px; padding: 11px 22px; }
  .content .table-wrap table { min-width: 620px; }
}
