body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  background-color: #111a1a;
  color: white;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  background-color: #121212;
  padding: 15px 0;
}
.site-header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header-container .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .header-container .logo img {
  height: 50px;
  width: 200px;
}
.site-header .header-container .logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-header .header-container .logo .logo-text .bold {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}
.site-header .header-container .logo .logo-text .thin {
  font-weight: 400;
  font-size: 12px;
  color: #f8d4d1;
}
.site-header .header-container .notification {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
}
.site-header .header-container .notification .dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  background: #c36e6b;
  border-radius: 50%;
}
.site-header .header-container .notification i {
  transition: color 0.3s ease;
}
.site-header .header-container .notification:hover i {
  color: #f8d4d1;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: right 0.4s ease;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar.open {
  right: 0;
}
.sidebar .sidebar-header {
  background-color: #121212;
  color: #ffffff;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 16px;
}
.sidebar .sidebar-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sidebar .sidebar-header .close-btn {
  font-size: 22px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.sidebar .sidebar-header .close-btn:hover {
  transform: rotate(90deg);
  color: #f0f0f0;
}
.sidebar .sidebar-buttons {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  background-color: #fafafa;
}
.sidebar .sidebar-buttons .play-btn {
  background: #121212;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 24px;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.sidebar .sidebar-buttons .play-btn:hover {
  background-color: #ffffff;
  color: #121212;
  border: 2px solid #121212;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .sidebar {
    width: 100%;
    border-radius: 0;
  }
}

.nav-item {
  position: relative;
}
.nav-item > a {
  position: relative;
  padding-right: 16px;
  display: inline-block;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.nav-item > a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #ccc;
  transition: transform 0.3s ease, border-top-color 0.3s ease;
}
.nav-item > a:hover {
  color: #fff;
}
.nav-item > a:hover::after {
  border-top-color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

.hero-section {
  background-color: #121212;
  color: #ffffff;
  padding: 30px 0;
}
.hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-section .hero-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-section .hero-content p {
  font-size: 18px;
  max-width: 900px;
  line-height: 1.6;
}
.hero-section .hero-content p .more-text {
  display: none;
}
.hero-section .hero-content p .toggle {
  cursor: pointer;
  color: #97dba8;
  font-weight: 600;
  margin-left: 8px;
}
.hero-section .hero-content p .toggle:hover {
  color: #51d973;
}
.hero-section .hero-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.hero-section .hero-footer .hero-note {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  color: #97dba8;
}
.hero-section .hero-footer .hero-icons {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-section .hero-footer .hero-icons li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
}
.hero-section .hero-footer .hero-icons li i {
  color: #3f6e4e;
  font-size: 16px;
}
.hero-section .hero-footer .hero-icons li .icon-square {
  width: 14px;
  height: 14px;
  background-color: #3f6e4e;
  display: inline-block;
  border-radius: 2px;
}
.hero-section .hero-footer .hero-icons li .date-badge {
  border: 1px solid #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .hero-section .hero-content h1 {
    font-size: 20px;
    text-align: center;
  }
  .hero-section .hero-content p .short-text {
    display: none;
  }
  .hero-section .hero-content p .more-text {
    display: none !important;
  }
  .hero-section .hero-content p .toggle {
    display: none;
  }
  .hero-section .hero-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-section .hero-footer .hero-note {
    display: none;
  }
  .hero-section .hero-footer .hero-icons {
    flex-direction: column;
    gap: 10px 15px;
    justify-content: center;
  }
  .hero-section .hero-footer .hero-icons li {
    justify-content: center;
    font-size: 12px;
  }
  .hero-section .hero-footer .hero-icons li i {
    font-size: 18px;
  }
  .hero-section .hero-footer .hero-icons li .icon-square {
    width: 16px;
    height: 16px;
  }
  .hero-section .hero-footer .hero-icons li .date-badge {
    font-size: 12px;
    padding: 2px 6px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0px !important;
  }
}
.casino-list {
  background-color: #121212;
  padding: 30px 0;
}
.casino-list .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.casino-list .casino-top-header {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr;
  padding: 16px 24px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.casino-list .casino-top-header span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.casino-list .casino-top-header span:nth-child(4) {
  justify-content: center;
}
@media (max-width: 768px) {
  .casino-list .casino-top-header {
    display: none;
  }
}
.casino-list .casino-card {
  background: rgb(255, 255, 255);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 5px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(18, 18, 18, 0.05);
  overflow: hidden;
  border: 4px solid #3f6e4e;
}
.casino-list .casino-card .ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: #c36e6b;
  color: #ffffff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  border-bottom-right-radius: 6px;
  text-transform: uppercase;
  z-index: 1;
}
.casino-list .casino-card .ribbon.blue {
  background-color: #23d34f;
}
.casino-list .casino-card .card-content {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1.2fr 1.5fr;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .casino-list .casino-card .card-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.casino-list .casino-card .logo {
  max-height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.casino-list .casino-card .bonus {
  font-weight: 500;
  font-size: 15px;
  color: #222222;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.casino-list .casino-card .bonus strong {
  color: #121212;
}
.casino-list .casino-card .rating {
  text-align: center;
}
.casino-list .casino-card .rating span {
  display: block;
  font-size: 14px;
  color: #121212;
  margin-bottom: 6px;
}
.casino-list .casino-card .rating .stars {
  color: #f9c200;
  font-size: 18px;
}
.casino-list .casino-card .score {
  font-size: 28px;
  font-weight: bold;
  color: #121212;
  text-align: center;
}
.casino-list .casino-card .actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.casino-list .casino-card .actions .btn {
  background-color: #111818;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.casino-list .casino-card .actions .btn:hover {
  background-color: black;
}
.casino-list .casino-card .actions .visit {
  font-size: 14px;
  color: #11842d;
  text-decoration: underline;
}
.casino-list .casino-card .actions .visit:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .casino-list .casino-card .actions {
    align-items: center;
  }
}
@media (max-width: 500px) {
  .casino-list .casino-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
.casino-list .disclaimer {
  margin-top: 0px;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  color: #fff;
}
@media (max-width: 768px) {
  .casino-list .disclaimer {
    text-align: center;
  }
}

.site-footer {
  background-color: #121212;
  color: #ffffff;
  padding: 40px 20px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.site-footer .footer-top {
  text-align: center;
  margin-bottom: 20px;
}
.site-footer .footer-top a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  margin: 0 6px;
}
.site-footer .footer-top a:hover {
  text-decoration: underline;
}
.site-footer .footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
}
.site-footer .footer-logos img {
  height: 52px;
  max-width: 280px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.site-footer .footer-logos img:hover {
  transform: scale(1.05);
}
.site-footer .footer-text {
  max-width: 900px;
  margin: 0 auto;
  color: #dddddd;
  font-size: 13px;
}
.site-footer .footer-text p {
  margin-bottom: 14px;
}
.site-footer .footer-text p a {
  color: #ffffff;
  text-decoration: underline;
}
.site-footer .footer-text p a:hover {
  text-decoration: none;
}
.site-footer .footer-text strong {
  color: #ffffff;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 15px;
  }
  .site-footer .footer-logos {
    gap: 14px;
  }
  .site-footer .footer-text {
    font-size: 12px;
  }
}

.legal-disclaimer {
  background-color: #ffffff;
  color: #121212;
  padding: 60px 20px;
  font-family: 'Work Sans', sans-serif;
}
.legal-disclaimer .container {
  max-width: 860px;
  margin: 0 auto;
}
.legal-disclaimer h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #c36e6b;
  border-bottom: 2px solid #f8d4d1;
  padding-bottom: 10px;
}
.legal-disclaimer p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #2a2a2a;
}
.legal-disclaimer p strong {
  font-weight: 600;
  color: #000;
}
.legal-disclaimer p a {
  color: #c36e6b;
  text-decoration: underline;
}
.legal-disclaimer p a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .legal-disclaimer {
    padding: 40px 16px;
  }
  .legal-disclaimer h2 {
    font-size: 22px;
  }
  .legal-disclaimer p {
    font-size: 15px;
  }
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 20px 0;
}
.footer-menu li a {
  color: #fff;
  text-decoration: none;
}
.footer-menu li a:hover {
  text-decoration: underline;
}

.terms-conditions {
  background-color: #ffffff;
  color: #121212;
  padding: 60px 20px;
  font-family: 'Work Sans', sans-serif;
}
.terms-conditions .container {
  max-width: 900px;
  margin: 0 auto;
}
.terms-conditions h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #188e36;
  border-bottom: 2px solid #97dba8;
  padding-bottom: 10px;
}
.terms-conditions h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #188e36;
}
.terms-conditions p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #2a2a2a;
}
.terms-conditions p strong {
  font-weight: 600;
  color: #000;
}
.terms-conditions p a {
  color: #c36e6b;
  text-decoration: underline;
}
.terms-conditions p a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .terms-conditions {
    padding: 40px 16px;
  }
  .terms-conditions h2 {
    font-size: 22px;
  }
  .terms-conditions h3 {
    font-size: 17px;
  }
  .terms-conditions p {
    font-size: 14px;
  }
}

.cookies-policy {
  background-color: #ffffff;
  color: #121212;
  padding: 60px 20px;
  font-family: 'Work Sans', sans-serif;
}
.cookies-policy .container {
  max-width: 900px;
  margin: 0 auto;
}
.cookies-policy h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #c36e6b;
  border-bottom: 2px solid #f8d4d1;
  padding-bottom: 10px;
}
.cookies-policy h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #c36e6b;
}
.cookies-policy p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #2a2a2a;
}
.cookies-policy p strong {
  font-weight: 600;
  color: #000;
}
.cookies-policy ul {
  margin: 0 0 20px 20px;
  padding-left: 0;
}
.cookies-policy ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #2a2a2a;
}
.cookies-policy ul li strong {
  color: #000;
}
@media (max-width: 768px) {
  .cookies-policy {
    padding: 40px 16px;
  }
  .cookies-policy h2 {
    font-size: 22px;
  }
  .cookies-policy h3 {
    font-size: 17px;
  }
  .cookies-policy p,
  .cookies-policy li {
    font-size: 14px;
  }
}

.privacy-policy {
  background-color: #ffffff;
  color: #121212;
  padding: 60px 20px;
  font-family: 'Work Sans', sans-serif;
}
.privacy-policy .container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-policy h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #c36e6b;
  border-bottom: 2px solid #f8d4d1;
  padding-bottom: 10px;
}
.privacy-policy h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #c36e6b;
}
.privacy-policy p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: #2a2a2a;
}
.privacy-policy p strong {
  font-weight: 600;
  color: #000;
}
@media (max-width: 768px) {
  .privacy-policy {
    padding: 40px 16px;
  }
  .privacy-policy h2 {
    font-size: 22px;
  }
  .privacy-policy h3 {
    font-size: 17px;
  }
  .privacy-policy p {
    font-size: 14px;
  }
} /*# sourceMappingURL=style.css.map */
.text-section p {
  max-width: 100% !important;
}
