<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&amp;display=swap');
}

body {
  font-family: "Open Sans", sans-serif !important;
    
}
* {
  box-sizing: border-box;
  margin: 0;
}
.clear {
  clear: both;
}
.table-of-contents {
  float: right;
  margin-left: 20px;
    max-height: 200px;
    overflow: auto;
}
.table-of-contents ul {
  padding: 0;
}
.table-of-contents ul li {
  margin: 0;
  padding: 0;
}
.table-of-contents a {
 color: #1a564d;
    /* background: #b2761f; */
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
    /* text-decoration: none; */
    margin: 2px;
}
/* Fullscreen simulation */
.fullscreenFallback {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000; /* Optional: to blend with iframe */
  display: flex;
  justify-content: center;
  align-items: center;
}
.noScroll {
  overflow: hidden; /* Disable scrolling when fullscreen is active */
}
.gameFrame {
  width: 100%; /* Ensures the iframe scales correctly */
  height: auto;
  min-height: 80vh; /* 80% of the viewport height */
  border: none;
}
.backButton {
  float: right;
  color: #222;
  font-size: 13px;
  margin-top: -20px;
}
.gameFrameContainer {
  position: relative;
}
/* Fullscreen simulation */
.fullscreenFallback {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #000; /* Optional: to blend with iframe */
}
.noScroll {
  overflow: hidden; /* Disable scrolling when fullscreen is active */
}
/* Reset on exit */
.fullscreenFallback .fullscreenButton {
  position: absolute;
  top: 10px;
  right: 10px;
}
.fullscreenButton {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.fullscreenIcon {
  width: 24px;
  height: 24px;
  fill: #007BFF;
  transition: fill 0.2s ease;
}
.fullscreenButton:hover .fullscreenIcon {
  fill: #0056b3;
}
.freeSlotItem {
  width: calc(20% - 20px);
  min-width: 200px;
  display: inline-block;
  margin: 4px;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(to bottom, #1a564d 0%, #0c2a2b 100%);
  background-size: 200% 200%;
  animation: subtleBackground 15s ease-in-out infinite;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.freeSlotItem:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}
.freeSlotItem h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px; /* Default size */
  font-size: 16px;
}
.freeSlotItem:before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  transform: skewX(-20deg);
  animation: subtleShinyEffect 20s linear 2; /* Updated to loop twice */
}
.freeSlotsContainer {
  margin: 20px 0;
}
@keyframes subtleBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes subtleShinyEffect {
  0% {
    left: -150%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 150%;
  }
}
.freeSlotItem img {
  width: calc(100% - 20px);
  border-radius: 10px;
  margin-top: 10px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-family: Arial, sans-serif;
}
.pagination a, .pagination span {
  margin: 0 5px;
  padding: 10px 15px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #007bff; /* Bootstrap-like blue color for links */
  transition: background-color 0.3s, color 0.3s;
}
.pagination a:hover {
  background-color: #007bff;
  color: white;
}
.pagination a:active {
  background-color: #0056b3; /* Darker blue for active click */
  color: white;
}
.pagination .current-page {
  background-color: #007bff;
  color: white;
  border: 1px solid #007bff;
  cursor: default;
  pointer-events: none;
}
.pagination a.previous, .pagination a.next {
  font-weight: bold;
}
.pagination a.disabled {
  pointer-events: none;
  color: #ccc;
  border-color: #ccc;
}
#searchForm {
  padding: 10px;
}
#searchForm input[type="text"] {
  width: 200px;
}
.iframeFix {
  float: right; /* Float the &lt;p&gt; to the right */
  width: 35%; /* Set the width of the &lt;p&gt; */
  margin: 20px; /* Add margin around the &lt;p&gt; */
  padding: 0; /* Remove any padding from the &lt;p&gt; */
  border: 15px solid #0c2a2b; /* Add a border to the &lt;p&gt; */
  border-radius: 4px; /* Add rounded corners */
  aspect-ratio: 16 / 9; /* Maintain aspect ratio */
  max-width: 100%; /* Ensure responsiveness */
  overflow: hidden; /* Contain floated content */
}
.iframeFix iframe {
  width: 100%; /* Make the iframe fill the parent &lt;p&gt; */
  height: 100%; /* Ensure full height inside the parent */
  border: none; /* Remove any default iframe border */
}
/* Clearfix class for the container */
.clearfix::after {
  content: '';
  display: block;
  clear: both; /* Clear the float */
}
.preTitle {
  color: #fff;
}
html {
  font-family: "Open Sans", sans-serif !important;
  color: #1d2a3b;
  margin: 0;
  padding: 0;
  background: #0c2a2b;
  font-size: 13px;
  scroll-behavior: smooth;
}
a{  color: #1a564d; }
h2 {
  margin-bottom: 10px;
}
h4 {
  margin: 10px 0 10px 0;
  font-size: 17px;
}
ul, ol {
  margin-bottom: 15px;
  list-style: none;
}
p {
  margin: 10px;
  padding: 10px;
}
li p {
  margin: 0 !important;
  padding: 0 !important;
}
li {
  padding: 5px;
  border-radius: 5px;
  margin: 3px;
}
hr {
  margin: 10px;
  display: block;
  clear: both;
  height: 1px;
  opacity: 0;
}
.container {
  max-width: 1300px;
  width: 95%;
  margin: 0 auto;
}
.container.card {
  margin-top: 0.7rem;
  margin-bottom: 10px;
  background-color: #ffffff;
  padding: 1.6rem;
  border-radius: 10px;
  text-align: left;
  font-size: 14px;
  /* padding-bottom: 3.6rem; */
}
.itemPageLoader {
  text-align: left;
  padding-left: 1rem;
  margin: 0 auto;
  width: calc(100% - 60px);
  margin-bottom: 20px;
}
.pre-img-thumbnail {
  float: left;
  position: relative;
  margin-right: 15px;
  margin-bottom: 10px;
}
.img-thumbnail {
  float: left; /* or right */
  margin: 10px 20px 10px 10px; /* adds space around the image */
  max-height: 150px;
  width: auto;
  border-radius: 5%;
}
.img-responsive {
  width: calc(100% - 20px);
  height: auto;
  border-radius: 15px;
}
.pre-img-thumbnail a {
  background: rgba(80, 171, 14, 1.00);
  width: calc(100% - 10px);
  text-align: center;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  clear: both;
}
.container.card.small {
  padding: 10px;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  width: calc(33% - 10px);
  margin: 10px 2px 0px 2px;
  vertical-align: top;
  background: linear-gradient(to bottom, #1a564d 0%, #0c2a2b 100%);
  position: relative;
  text-decoration: none;
  /* padding-bottom: 3.6rem; */
}
.container.card.small .timeStamp {
  font-size: 0.6rem;
  color: #ccc;
  position: absolute;
  right: 10px;
  bottom: 5px;
}
.container.card .preContent {
  display: block;
  white-space: normal;
  /* padding-bottom: 3.6rem; */
}
.container.card .preContent .blogIcon {
  float: left;
  height: 70px;
  border-radius: 5px;
  margin-right: 10px;
  /* padding-bottom: 3.6rem; */
}
.container.card.small.slotItem {
  width: calc(20% - 10px);
  text-align: center;
  position: relative;
  /* padding-bottom: 3.6rem; */
}
.container.card.small .catIcon {
  max-width: 60%;
  /* padding-bottom: 3.6rem; */
}
.container.card.small.slotItem .catIcon {
  max-width: 90%;
  border-radius: 5%;
  max-height: 150px;
  /* padding-bottom: 3.6rem; */
}
.container.card.small.slotItem a {
  font-size: 1rem;
  width: 100%;
  padding: 3px;
  margin: 3px;
  display: block;
  border: 2px solid #b2761f;
  border-radius: 5px;
  background: #b2761f;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.container.card.small.slotItem a.blue {
  border-color: #0e5053;
  background: #0e5053;
}
.container.card.small.slotItem .headerBg {
  height: 120px;
  width: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  border-radius: 5%;
  overflow: hidden;
  margin-bottom: 5px;
}
.contentConstrictor {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  width: 95%;
     font-display: swap;
}
.default-card .header {
  padding: 14px;
  display: block;
}
.default-card .header .innerHeader {
  max-width: 1300px;
  width: 95%;
  margin: 10px auto 10px auto;
}
.default-card .header .logo {
  font-weight: 700;
  color: #fff;
  float: left;
  margin-left: 15px;
  font-size: 1.6rem;
}
.default-card .header .logo a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.default-card .header .logo img {
  height: 2.2rem;
  vertical-align: middle;
  animation: spin 5s linear infinite;
}
.slotsContainerMain {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  white-space: nowrap; /* Ensures items don't wrap */
  scroll-behavior: smooth; /* Optional for smooth scrolling */
  width: calc(100% - 60px);
  margin: 0 auto;
}
.slotsContainerMain &gt; * {
  flex: 0 0 auto; /* Prevents items from shrinking and keeps them aligned in a row */
  margin-right: 10px; /* Adjust spacing as needed */
}
.blogContainerMain {
  display: flex;
  flex-direction: row;
  width: calc(100% - 60px);
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap; /* Ensures items don't wrap */
  scroll-behavior: smooth; /* Optional for smooth scrolling */
}
.blogContainerMain &gt; * {
  flex: 0 0 auto; /* Prevents items from shrinking and keeps them aligned in a row */
  margin-right: 10px; /* Adjust spacing as needed */
}
.adminPage {
  font-size: 13px;
}
.homeHeading {
  color: #fff;
  padding: 10px;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.default-card .header .menu {
  display: block;
  float: right;
  vertical-align: top;
}
.default-card .header .menu a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  padding: 6px;
  border-radius: 5px;
  margin: 0 5px;
  text-decoration: none;
  -webkit-box-shadow: inset 0px -1px 10px -6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 0px -1px 10px -6px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px -1px 10px -6px rgba(0, 0, 0, 0.25);
}
.default-card .header .menu a.adminUrl {
  background: rgba(80, 171, 14, 1.00);
}
.default-card .header .menu a:hover {
  background: rgba(255, 255, 255, 0.18);
}
.main-image svg {
  max-width: 61rem;
  margin-bottom: 2rem;
}
.subheading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  padding: 0;
  text-align: center;
}
.slotItem .subheading {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  padding: 5px;
  background: rgba(0, 0, 0, 0.51);
  position: absolute;
  margin: 0;
  width: 100%;
  bottom: 0;
  right: 0;
  left: 0;
}
.card .text {
  font-size: 13px;
  letter-spacing: 0.26px;
}
footer {
  color: #b1b1b1;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.7rem;
}
footer .logo img {
  width: 30px;
  padding-left: 11px;
  margin-right: 10px;
}
footer .logo a {
  text-decoration: none;
}
footer .left-side {
  display: flex;
  align-items: center;
}
input[type="text"], input[type="email"], input[type="password"], textarea, select {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  font-size: 13px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  border-color: #66afe9;
  box-shadow: inset 0 0 10px rgba(102, 175, 233, 0.6);
}
/* Optional styling for aesthetic */
input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="password"]::placeholder, textarea::placeholder {
  color: #aaa;
  opacity: 1;
}
button {
  padding: 10px 20px;
  border: 2px solid rgba(80, 171, 14, 1.00);
  border-radius: 5px;
  background: rgba(80, 171, 14, 1.00);
  font-size: 1.3rem;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}
button.blue {
  border-color: #37b5fa;
  background: #37b5fa;
}
button:hover {
  background-color: #37b5fa;
  border-color: #37b5fa;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1em;
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
th, td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
  font-weight: 100;
}
th.end {
  width: auto;
}
tr:nth-child(even) {
  background-color: #f2f2f2;
}
tr:hover {
  background-color: #e2e2e2;
}
.m-l-5 {
  margin-left: 5px;
}
.m-b-5 {
  margin-bottom: 5px;
}
.m-t-20 {
  margin-top: 20px !important;
}
.f-right {
  float: right;
}
.keywordList {
  width: 30%;
  padding: 5px;
  display: inline-block;
  vertical-align: top;
}
.casinoBanner {
  display: block;
  border-radius: 10px;
  min-height: 100px;
  width: calc(100% - 60px);
  padding: 20px;
  text-decoration: none;
  text-align: left;
  background: linear-gradient(to bottom, #1a564d 0%, #0c2a2b 100%);
  color: #fff;
  margin: 0 auto;
  position: relative; /* Required for the ::before pseudo-element */
  overflow: hidden; /* Ensures the shiny effect stays within the element */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}
.casinoBanner:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}
.casinoBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03); /* Subtle white overlay */
  transform: skewX(-20deg); /* Creates the slanted stripe */
  animation: subtleShinyEffect 30s linear infinite; /* Shiny effect animation */
}
.casinoBanner strong {
  font-size: 1.6rem;
}
.casinoBanner .innerBanner .joinNow {
  font-size: 1.4rem;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(to bottom, #50AB0C 0%, #468e0f 100%);
}
.casinoBanner .innerBanner .joinNow:hover {
  background: #222;
}
.casinoBanner ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.casinoBanner ul li {
  background: none;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}
.casinoBanner .innerBanner {
  display: inline-block;
  width: calc(25% - 25px);
  margin: 10px;
}
.casinoBanner .innerBanner img {
  height: 90px;
}
/* Medias */
@media screen and (max-width: 1024px) {
  .fullscreenButtonActive {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: inherit;
  }
  .itemPageLoader {
    text-align: center;
    margin: 0 0 0.7rem 0;
    padding: 0;
    width: 100%;
  }
  .slotsContainerMain, .blogContainerMain {
    width: calc(100% - 10px);
  }
  .casinoBanner {
    border-radius: 0px;
    width: 100%;
  }
  .casinoBanner .innerBanner:nth-of-type(2), .casinoBanner .innerBanner:nth-of-type(3) {
    display: none;
  }
  .casinoBanner .innerBanner {
    width: calc(50% - 25px);
  }
  .container.card.small.blogItem {
    width: 350px !important;
  }
  .default-card .header .logo {
    text-align: center;
    width: calc(100% - 40px);
  }
  .default-card .header .menu {
    float: left;
    display: block;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .default-card .header .menu a {
    background: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
  }
  .container.card {
    width: 100%;
    margin-top: 2rem;
    padding: 1.2rem;
    font-size: 0.9rem;
    text-align: left;
    border-radius: 0;
  }
  .container.card.small.slotItem {
    min-width: 150px;
    /* padding-bottom: 3.6rem; */
  }
  .contentConstrictor {
    width: auto;
  }
}
/* Mobile styles */
@media (max-width: 768px) {
  .backButton {
    float: none;
    display: block;
    margin: 5px;
  }
  .gameFrame {
    width: 100%; /* Ensures the iframe scales correctly */
    height: 100%;
    min-height: inherit;
  }
  .iframeFix {
    float: none; /* Disable float on mobile */
    width: 100%; /* Make the &lt;p&gt; full width */
    margin: 0 auto; /* Center align the &lt;p&gt; */
    height: 100%;
  }
  .iframeFix iframe {
    width: 100%; /* Make the iframe fill the parent */
  }
    .table-of-contents {
  float: left;
  margin: 10px;
        width: 100%; clear: both;
}
}
@media screen and (max-width: 480px) {
  .container.card {
    width: 100%;
    margin-top: 0.7rem;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: left;
  }
  .container.card.small {
    width: calc(50% - 26px);
    margin: 5px;
    padding: 8px;
    font-size: 0.8rem;
  }
  .container.card.small .subheading {
    font-size: 0.8rem;
  }
}</pre></body></html>