:root {
  --dark-bg: #121212;
  --header-bg: #1c1c1c;
  --light-text: #ffffff;
  --accent-color: #ff6f00;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--dark-bg);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--light-text);
}
.header {
  background-color: var(--header-bg);
  width: 100%;
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  align-items: center;
  height: 70px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  display: flex;
  justify-content: center;
}
.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--light-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  text-wrap: nowrap;
}
.logo img {
  width: 55px;
  height: auto;
  margin-right: 5px;
}
.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav ul li a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s;
}
.nav ul li a:hover {
  color: var(--accent-color);
}
.menu-toggle {
  display: none;
}
.burger {
  display: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--light-text);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .header {
      grid-template-columns: 1fr 1fr;
  }
  .burger {
      display: block;
      justify-content: flex-end;
  }
  .nav {
      position: fixed;
      top: 70px;
      right: 0;
      width: 100%;
      height: calc(100% - 70px);
      background-color: var(--header-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 1001;
  }
  .nav ul {
      flex-direction: column;
      gap: 30px;
  }
  .bg-cont {
      display: flex;
      justify-content: flex-end;
  }
  .nav ul li a {
      font-size: 1.2rem;
  }
  .menu-toggle:checked ~ .nav {
      transform: translateX(0);
  }
  .menu-toggle:checked ~ .burger span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle:checked ~ .burger span:nth-child(2) {
      opacity: 0;
  }
  .menu-toggle:checked ~ .burger span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
  }
  .nav ul {
      display: none;
  }
  .menu-toggle:checked ~ .nav ul {
      display: flex;
  }
}
.banner {
  width: 100%;
  height: 40vh;
  background: url("/assets/img/baner.webp") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #121212 100%);
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.banner-content span {
  display: inline-block;
  color: var(--light-text);
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .banner {
      height: 50vh;
  }
  .banner-content span {
      font-size: 1.5rem;
  }
}
.casino-review {
  display: flex;
  justify-content: center;
  padding: 30px;
}
.casino-card {
  display: grid;
  grid-template-columns: auto auto auto 0.7fr auto;
  gap: 20px;
  align-items: center;
  background-color: #242424;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  max-width: 1200px;
  width: 100%;
  color: #fff;
}
.casino-logo {
  width: 60px;
  height: auto;
  border-radius: 6px;
}
.casino-name {
  font-size: 1.4rem;
  margin: 0;
}
.rating-badge {
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
}
.stars {
  color: #ffcc00;
  font-size: 1.2rem;
}
.casino-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #ccc;
}
.casino-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.casino-features li::before {
  content: "✔";
  color: #00b050;
  font-weight: bold;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
  color: #fff;
}
.btn-play {
  background-color: #00b050;
}
.btn-play:hover {
  background-color: #008c43;
}
.btn-review {
  background-color: #007bff;
}
.btn-review:hover {
  background-color: #0056cc;
}
@media (max-width: 992px) {
  .casino-card {
      grid-template-columns: auto auto auto auto auto;
      grid-template-rows: auto auto;
      grid-auto-flow: row;
  }
  .logo-col {
      grid-column: 1/2;
      grid-row: 1/2;
  }
  .name-col {
      grid-column: 2/3;
      grid-row: 1/2;
  }
  .rating-col {
      grid-column: 3/4;
      grid-row: 1/2;
  }
  .features-col {
      grid-column: 4/5;
      grid-row: 1/2;
  }
  .actions-col {
      grid-column: 5/6;
      grid-row: 1/2;
  }
  .casino-card > div {
      justify-self: center;
  }
}
@media (max-width: 600px) {
  .casino-card {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto auto auto;
      text-align: center;
  }
  .logo-col,
  .name-col,
  .rating-col,
  .features-col,
  .actions-col {
      grid-column: 1/2;
      grid-row: auto;
  }
  .casino-features {
      text-align: center;
      margin: 10px auto;
      justify-content: center;
  }
  .actions-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
  }
}
.content-dynamic {
  max-width: 1200px;
  margin: 0px auto;
  padding: 30px;
  background-color: #242424;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 1.6;
}
.content-dynamic h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 10px;
}
.content-dynamic h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  text-align: center;
  border-bottom: 1px solid #555;
  padding-bottom: 8px;
}
.content-dynamic p {
  margin-bottom: 1rem;
  text-align: justify;
}
.content-dynamic img:first-of-type {
  display: block;
  width: 512px;
  height: 512px;
  margin: 20px auto;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.content-dynamic img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.content-dynamic ul {
  margin: 1rem 0;
  padding-left: 20px;
}
.content-dynamic li {
  margin-bottom: 0.5rem;
}
.content-dynamic table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #1e1e1e;
}
.content-dynamic td {
  border: 1px solid #333;
  padding: 12px 16px;
  vertical-align: top;
}
.content-dynamic tr:nth-child(even) {
  background-color: #2a2a2a;
}
.content-dynamic tr:nth-child(odd) {
  background-color: #1e1e1e;
}
.content-dynamic reviews-block {
  display: block;
  margin-top: 40px;
  padding: 20px;
  background-color: #242424;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  color: #fff;
}
.content-dynamic reviews-block h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid #555;
  padding-bottom: 8px;
}
.content-dynamic reviews-block > div {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #1c1c1c;
  border-radius: 6px;
}
.content-dynamic reviews-block > div p:first-of-type {
  margin: 0;
  font-weight: bold;
  color: #ffcc00;
}
.content-dynamic reviews-block > div p + p {
  margin-top: 8px;
  color: #ccc;
  text-align: justify;
}
.content-dynamic reviews-block > div:last-child {
  margin-bottom: 0;
  text-align: center;
  background-color: transparent;
  padding: 0;
}
.content-dynamic reviews-block > div:last-child a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00b050;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.content-dynamic reviews-block > div:last-child a:hover {
  background-color: #008c43;
}
.content-dynamic faq-section {
  display: block;
  margin-top: 40px;
  padding: 20px;
  background-color: #242424;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  color: #fff;
}
.content-dynamic faq-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid #555;
  padding-bottom: 8px;
}
.content-dynamic faq-section details {
  background-color: #1c1c1c;
  border: 1px solid #333;
  border-radius: 6px;
  margin-bottom: 10px;
  padding: 10px;
  transition: background-color 0.3s ease;
}
.content-dynamic faq-section details[open] {
  background-color: #2a2a2a;
}
.content-dynamic faq-section details summary {
  cursor: pointer;
  padding: 8px;
  font-weight: bold;
  color: #ffcc00;
  outline: none;
}
.content-dynamic faq-section details summary::-webkit-details-marker {
  display: none;
}
.content-dynamic faq-section details summary:after {
  content: "";
  float: right;
  transition: transform 0.3s ease;
}
.content-dynamic faq-section details[open] summary:after {
  transform: rotate(-180deg);
}
.content-dynamic faq-section details p {
  margin: 10px 0 0;
  padding: 0 8px;
  color: #ccc;
  text-align: justify;
}
.content-dynamic nav {
  display: block;
  margin-top: 40px;
  padding: 20px;
  background-color: #242424;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  color: #fff;
}
.content-dynamic nav h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 1px solid #555;
  padding-bottom: 8px;
}
.content-dynamic nav h2 ~ a {
  display: inline-block;
  margin: 6px;
  padding: 6px 12px;
  background-color: #1c1c1c;
  border: 1px solid #333;
  border-radius: 6px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.content-dynamic nav h2 ~ a:hover {
  background-color: #2a2a2a;
  color: #fff;
}
.site-footer {
  margin-top: 30px;
  background-color: #1c1c1c;
  color: #fff;
  padding: 30px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.footer-logo img {
  width: 60px;
  height: auto;
  border-radius: 6px;
}
.footer-info {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: #ffcc00;
}
@media (max-width: 768px) {
  .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
  }
  .footer-links {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
  }
  .footer-info {
      margin: 10px 0;
  }
}
