@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/asset-003.woff2') format('woff2'),
       url('assets/asset-004.woff') format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/asset-005.woff2') format('woff2'),
       url('assets/asset-006.woff') format('woff');
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #333;
  background: #1a0a2e;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

#topHeader {
  background: #1a0a2e;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.logo_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.logo_wrapper .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo_wrapper .btn.mobile {
  position: absolute;
  right: 16px;
}

.logo_wrapper .burger-nav {
  position: absolute;
  right: 16px;
}

.logo .brand {
  height: 60px;
  width: auto;
}

.burger-nav {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  cursor: pointer;
  padding: 2px;
}
.burger-nav span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger-nav.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger-nav.open span:nth-child(2) { opacity: 0; }
.burger-nav.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.burger-nav.open span:nth-child(4) { opacity: 0; }

.nav_wrapper {
  background: #1a0a2e;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 48px;
}

.secondary-nav { flex: none; }
.secondary-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.secondary_menu_item > a {
  color: #ccc;
  font-size: 0.85rem;
  padding: 8px 10px;
  display: block;
  white-space: nowrap;
  transition: color 0.2s;
}
.secondary_menu_item > a:hover { color: #fff; }

.secondary_menu_item.dropdown-menu { position: relative; }
.secondary_menu_item.dropdown-menu > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #2d1a4e;
  border-radius: 4px;
  min-width: 160px;
  padding: 8px 0;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.secondary_menu_item.dropdown-menu:hover > ul { display: block; }
.secondary_menu_item.dropdown-menu > ul li a {
  display: block;
  padding: 8px 16px;
  color: #ccc;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.secondary_menu_item.dropdown-menu > ul li a:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.lang_dropdown, .languageDrop { display: none; }

.mobile_down_angle { display: none; }

.header-user-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  border: none;
}
.btn:active { transform: scale(0.97); }

.btn-register {
  background: transparent;
  color: #e8c55a;
  border: 2px solid #e8c55a;
}
.btn-register:hover { background: #e8c55a; color: #1a0a2e; }

.btn-login, .btn-primary {
  background: #c0392b;
  color: #fff;
}
.btn-login:hover, .btn-primary:hover { background: #a93226; }

.btn.mobile { display: none; }

.help_menu_item .help-centre {
  color: #ccc;
  font-size: 0.85rem;
}

.offer-area {
  background: url('assets/asset-008.jpg') center/cover no-repeat;
  padding: 48px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  pointer-events: none;
}

.offer-area-block { position: relative; z-index: 1; }

.offer_bg_wrap p {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.offer_bg_wrap p b { font-size: 1.8rem; }
.offer_bg_wrap p b span { color: #e8c55a; }

.btn.play_now {
  background: linear-gradient(135deg, #e8c55a, #d4a017);
  color: #1a0a2e;
  font-size: 1.1rem;
  padding: 14px 40px;
  border-radius: 6px;
  font-weight: 700;
  margin: 16px 0;
  box-shadow: 0 4px 15px rgba(232,197,90,0.4);
}
.btn.play_now:hover { background: linear-gradient(135deg, #f0d070, #e8c55a); }

.significant_offers {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 8px auto 0;
  line-height: 1.6;
}
.significant_offers a { color: rgba(255,255,255,0.9); text-decoration: underline; }

.jackpot__ticker__text {
  background: linear-gradient(90deg, #1a0a2e, #2d1a4e, #1a0a2e);
  text-align: center;
  padding: 16px;
  border-bottom: 1px solid rgba(232,197,90,0.3);
}
.jp__total__text {
  color: #e8c55a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}
.jackpot_value {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  letter-spacing: 1px;
}

.content-area { background: #f5f5f5; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.content-full { padding: 0; }

.webpart_container.Dark { background: #1a0a2e; padding: 24px 0; }
.tabs { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

.game-filters {
  display: flex;
  gap: 4px;
  list-style: none;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
  margin-bottom: 20px;
}
.game-filters::-webkit-scrollbar { height: 4px; }
.game-filters::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.game__filter { flex-shrink: 0; }
.game__filter label, .game__filter a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.game__filter label svg, .game__filter a svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.game__filter label:hover, .game__filter a:hover,
.game__filter.active label {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #e8c55a;
}

.tabs input[type="radio"] { display: none; }

.tabs .content { overflow: hidden; }
.tabs .content ul {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  padding: 4px 0;
}
.tabs .content ul.new-and-exclusive,
#tab1:checked ~ .content ul.new-and-exclusive,
.new-and-exclusive[style*="display: block"] { display: grid !important; }

#tab1:checked ~ .content ul.new-and-exclusive { display: grid; }
#tab2:checked ~ .content ul.popular { display: grid; }
#tab3:checked ~ .content ul.slots { display: grid; }
#tab4:checked ~ .content ul.tables { display: grid; }
#tab5:checked ~ .content ul.video-poker { display: grid; }
#tab6:checked ~ .content ul { display: none; }

.tabs .content ul li a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #2d1a4e;
}
.image_wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.image_wrap .fa-play-circle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0);
  background: rgba(0,0,0,0);
  transition: all 0.2s;
  z-index: 1;
}
.image_wrap:hover .fa-play-circle {
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.5);
}
.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
}

.webpart_container {
  background: #fff;
  padding: 40px 0;
}
.webpart_container .container,
main.container { max-width: 960px; margin: 0 auto; padding: 0 20px; }

.webpart_container h1 {
  font-size: 1.8rem;
  color: #1a0a2e;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.webpart_container h2 {
  font-size: 1.4rem;
  color: #1a0a2e;
  font-weight: 700;
  margin: 32px 0 12px;
  border-left: 4px solid #c0392b;
  padding-left: 12px;
}
.webpart_container h3 {
  font-size: 1.1rem;
  color: #2d1a4e;
  font-weight: 600;
  margin: 20px 0 8px;
}
.webpart_container p {
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
  font-size: 0.95rem;
}
.webpart_container ul, .webpart_container ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.webpart_container li {
  line-height: 1.7;
  margin-bottom: 6px;
  color: #444;
  font-size: 0.95rem;
}
.webpart_container ul { list-style: disc; }
.webpart_container ol { list-style: decimal; }
.webpart_container a { color: #c0392b; text-decoration: underline; }
.webpart_container strong, .webpart_container em { color: #1a0a2e; }

.seo-text-block {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid #eee;
}
.seo-text-block .container { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.seo-text-block h1 { font-size: 1.8rem; color: #1a0a2e; margin-bottom: 16px; }
.seo-text-block h2 { font-size: 1.4rem; color: #1a0a2e; margin: 28px 0 10px; border-left: 4px solid #c0392b; padding-left: 12px; }
.seo-text-block h3 { font-size: 1.1rem; color: #2d1a4e; margin: 18px 0 8px; }
.seo-text-block p { line-height: 1.75; margin-bottom: 14px; color: #444; font-size: 0.95rem; }
.seo-text-block ul, .seo-text-block ol { padding-left: 24px; margin-bottom: 16px; }
.seo-text-block li { line-height: 1.7; margin-bottom: 6px; color: #444; font-size: 0.95rem; }
.seo-text-block ul { list-style: disc; }
.seo-text-block ol { list-style: decimal; }
.seo-text-block a { color: #c0392b; text-decoration: underline; }
.seo-text-block figure { overflow-x: auto; margin: 16px 0; }
.seo-text-block table { border-collapse: collapse; width: 100%; min-width: 320px; }
.seo-text-block td { padding: 10px 14px; border: 1px solid #ddd; font-size: 0.9rem; color: #444; }
.seo-text-block tr:first-child td { background: #f0eaf8; font-weight: 600; color: #1a0a2e; }
.seo-text-block tr:nth-child(even) td { background: #fafafa; }

footer.footer {
  background: #0f0620;
  color: #aaa;
  padding: 40px 0 24px;
  border-top: 2px solid rgba(232,197,90,0.3);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 32px;
}
.footer-links-list h3 {
  color: #e8c55a;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-links-list ul { list-style: none; padding: 0; }
.footer-links-list li { margin-bottom: 8px; }
.footer-links-list a {
  color: #aaa;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links-list a:hover { color: #fff; }

.footer-icons {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.footer-icons img {
  height: 32px;
  width: auto;
  opacity: 0.75;
  filter: brightness(0.9) contrast(1.1);
}
.footer-icons img:hover { opacity: 1; }
.footer-icons img.kahnawake { height: 40px; }
.footer-icons img.ecogra { height: 32px; }
.footer-icons img.visa-mastercard { height: 28px; }
.footer-icons img.interac { height: 28px; }

.disclaimer {
  background: #080112;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
}
.casino-disclaimer {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.help-center-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.help-center-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #c0392b;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: background 0.2s, transform 0.2s;
}
.help-center-icon a:hover { background: #a93226; transform: scale(1.05); }
.help-center-icon img { width: 28px; height: 28px; }

.breadcrumbs {
  background: #f0eaf8;
  padding: 10px 0;
  border-bottom: 1px solid #e0d8f0;
}
.breadcrumbs .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  font-size: 0.82rem;
  color: #666;
}
.breadcrumbs li + li::before { content: '›'; margin-right: 4px; color: #aaa; }
.breadcrumbs a { color: #c0392b; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs li:last-child { color: #333; font-weight: 600; }

.page-hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1a4e 100%);
  padding: 32px 16px;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.fa, .far, .fas {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.far { font-family: 'Font Awesome 5 Free'; font-weight: 400; }
.fas { font-family: 'Font Awesome 5 Free'; font-weight: 900; }

.tabs .game-filters .game__filter svg path,
.tabs .game-filters .game__filter svg polygon {
  fill: currentColor;
  stroke: none;
}
.st0 { fill: currentColor; }

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.overlay.active { display: block; }


@media (max-width: 900px) {
  .nav_wrapper { display: none; }
  .burger-nav { display: flex; }
  .btn.mobile { display: inline-flex; }

  .logo_wrapper {
    justify-content: space-between;
    height: 64px;
  }
  .logo_wrapper .logo {
    position: static;
    transform: none;
  }
  .logo_wrapper .btn.mobile {
    position: static;
  }
  .logo_wrapper .burger-nav {
    position: static;
  }
  .logo .brand {
    height: 44px;
  }

  .nav_wrapper.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a0a2e;
    z-index: 999;
    overflow-y: auto;
    height: calc(100vh - 64px);
    padding: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .secondary-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .secondary_menu_item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .secondary_menu_item > a { padding: 14px 8px; font-size: 1rem; }
  .secondary_menu_item.dropdown-menu > ul {
    display: block;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 16px;
  }

  .header-user-actions {
    margin-top: 16px;
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .header-user-actions .btn { width: 100%; justify-content: center; padding: 12px; }

  .lang_dropdown, .languageDrop { display: none; }

  .mobile_down_angle { display: inline-block; font-size: 0.75rem; margin-left: 4px; }

  .tabs .content ul {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .logo_wrapper { padding: 0 12px; }

  .offer-area { padding: 32px 12px; min-height: 220px; }
  .offer_bg_wrap p { font-size: 1rem; }
  .offer_bg_wrap p b { font-size: 1.4rem; }
  .btn.play_now { padding: 12px 28px; font-size: 1rem; }

  .jackpot_value { font-size: 1.5rem; }

  .webpart_container { padding: 24px 0; }
  .webpart_container h1 { font-size: 1.4rem; }
  .webpart_container h2 { font-size: 1.2rem; }

  .tabs .content ul {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
  }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .help-center-icon { bottom: 12px; right: 12px; }
  .help-center-icon a { width: 48px; height: 48px; }

  .page-hero h1 { font-size: 1.3rem; }
}

@media (max-width: 400px) {
  .footer-links { grid-template-columns: 1fr; }
}

.image_wrap { contain: layout size; }
.logo .brand { aspect-ratio: auto; }
.footer-icons img { aspect-ratio: auto; }