@charset "UTF-8";

/* ========================================================================== */
/* Base Styles */
/* ========================================================================== */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --header-height: 15vh;
  --innerFooter-height: 5vh;
  --outerFooter-height: 2vh;
  --main-height: calc(
    100vh - (var(--header-height) + var(--innerFooter-height))
  );
  --aspect-width: 45.02732240437158vh;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "inter-variable", sans-serif;
  line-height: 1;
  background-color: #000 !important;
  background-repeat: no-repeat;
  background-position: center -1%;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ========================================================================== */
/* Layout */
/* ========================================================================== */

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 1) calc(0% - 1px),
      rgba(0, 0, 0, 0) 10%,
      rgba(0, 0, 0, 0) 90%,
      rgba(0, 0, 0, 1) calc(100% + 1px)
    ),
    url("img/bg.jpg"), #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1 {
  font-size: 2.666vh;
  margin: 0;
}

header {
  width: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1vh;
  padding-top: 1.349325vh;
  padding-bottom: 2.398801vh;
}

header .logo {
  width: auto;
  height: 16.893553vh;
}

header > div,
.content-wrapper {
  max-width: var(--aspect-width);
  width: 100%;
}

main {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.content-wrapper {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lower-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 2.4vh;
}

/* ========================================================================== */
/* Video */
/* ========================================================================== */

.video-holder {
  padding: 0.555556vh;
  background: linear-gradient(
    to top,
    rgba(252, 213, 111, 1) 0%,
    rgba(152, 121, 39, 1) 7%,
    rgba(220, 182, 83, 1) 72%,
    rgba(252, 213, 111, 1) 100%
  );
  border-radius: 2.671756vh;
  box-shadow: rgba(0, 0, 0, 0.8) 0 0 2.544529vh;
  width: calc(((var(--aspect-width) / 9) * 16) - (0.555556vh * 4));
  height: calc(var(--aspect-width) - (0.555556vh * 4));
  margin: 0 calc(((var(--aspect-width) / 9) * -3.5) + (0.555556vh * 2));
  position: relative;
}

.video-holder video {
  width: calc(((var(--aspect-width) / 9) * 16) - (0.555556vh * 6));
  height: calc(var(--aspect-width) - (0.555556vh * 6));
  margin: 0;
  padding: 0;
  border-radius: 2.290076vh;
  object-fit: fill;
}

#video-poster {
  position: absolute;
  left: 0.555556vh;
  top: 0.555556vh;
  width: calc(100% - (2 * 0.555556vh));
  height: calc(100% - (2 * 0.555556vh));
  border-radius: 2.290076vh;
  background-size: cover;
}

.hidden-sm {
  display: block;
}

.visible-sm {
  display: none;
}

@media screen and (max-width: 991px) {
  .video-holder {
    width: calc(var(--aspect-width) - (0.555556vh * 4));
    height: calc(var(--aspect-width) - (0.555556vh * 4));
    margin: 0 calc(0.555556vh * 2);
    max-width: calc(100vw - (4 * 0.555556vh));
    max-height: calc(100vw - (4 * 0.555556vh));
  }

  .video-holder video {
    height: calc(var(--aspect-width) - (0.555556vh * 6));
    width: calc(var(--aspect-width) - (0.555556vh * 6));
    max-width: calc(100vw - (6 * 0.555556vh));
    max-height: calc(100vw - (6 * 0.555556vh));
    object-fit: cover;
  }

  .hidden-sm {
    display: none;
  }

  .visible-sm {
    display: block;
  }
}

main h2 {
  font-size: 5.6vh;
  font-weight: 700;
  -webkit-text-stroke: 0.16vh yellow;
  paint-order: stroke fill;
  filter: drop-shadow(0.4vh 0.4vh 0.4vh rgba(0, 0, 0, 0.3));
}

main h2 sup {
  font-size: 2.8vh;
}

main p {
  font-size: 2.1vh;
}

/* ========================================================================== */
/* Slider */
/* ========================================================================== */

div.tns-inner {
  position: relative;
  z-index: -1;
}

div.my-slider div > img {
  width: var(--aspect-width);
  height: 32.5vh;
}

.tns-outer::after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: -1px;
  width: calc(var(--aspect-width) + 2px);
  height: 42vh;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 1) 100%
  );
  overflow: hidden;
}

/* ========================================================================== */
/* CTA */
/* ========================================================================== */
@keyframes cta-pulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0.7vh rgba(0, 0, 0, 1),
      inset 0 0 1.667vh rgba(93, 228, 48, 1);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 0 2.5vh rgba(93, 228, 48, 0.6),
      inset 0 0 2.2vh rgba(93, 228, 48, 1);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0.7vh rgba(0, 0, 0, 1),
      inset 0 0 1.667vh rgba(93, 228, 48, 1);
  }
}

button.cta-btn,
a.cta-button {
  background: rgba(30, 96, 14, 1);
  box-shadow:
    0 0 0.7vh rgba(0, 0, 0, 1),
    inset 0 0 1.667vh rgba(93, 228, 48, 1);
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  margin: 2.667vh auto;
  padding: 0;
  color: white;
  text-decoration: none;
  font-family: "inter-variable", sans-serif;
  font-weight: 700;
  transition: background 0.3s ease;
  font-size: 2.4vh;
  line-height: 6.481481vh;
  text-shadow: 0 0.278vh 0 rgba(0, 0, 0, 1);
  position: relative;
  z-index: 1;
  line-height: 1;
  /* opacity: 0;
  visibility: hidden; */
  /* pointer-events: none; */
  transition: opacity 0.4s ease;
}

.cta-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: cta-pulse 2s ease-in-out infinite;
}

button.cta-btn::after,
a.cta-button::after {
  position: absolute;
  content: "";
  background: linear-gradient(
    30deg,
    rgba(255, 128, 0, 1) 0%,
    rgba(238, 174, 11, 1) 15%,
    rgba(244, 236, 34, 1) 25%,
    rgba(219, 136, 0, 1) 40%,
    rgba(255, 251, 35, 1) 50%
  );
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: 5px;
  margin: -6px;
}

button.cta-btn::before,
a.cta-button::before {
  position: absolute;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(255, 128, 0, 1) 0%,
    rgba(238, 174, 11, 1) 15%,
    rgba(244, 236, 34, 1) 50%,
    rgba(219, 136, 0, 1) 75%,
    rgba(255, 251, 35, 1) 100%
  );
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -12px;
  z-index: 0;
  border-radius: 5px;
}

button.cta-btn:hover,
a.cta-button:hover {
  background-color: #005bb5;
  background: linear-gradient(
    to bottom,
    rgba(15, 94, 23, 1) 0,
    rgba(17, 244, 60, 1) 100%
  );
  box-shadow: inset 0 0 3.704vh rgba(0, 0, 0, 1);
}

.cta-content {
  position: relative;
  z-index: 1;
  background: rgba(30, 96, 14, 1);
  box-shadow:
    0 0 0.7vh rgba(0, 0, 0, 1),
    inset 0 0 1.667vh rgba(93, 228, 48, 1);
  padding: 10px;
  margin: 0;
  display: inline-block;
  line-height: 1.2;
}

@media screen and (max-width: 575px) {
  .cta-content {
    font-size: 4.5vw;
  }
}

/* ========================================================================== */
/* Modal */
/* ========================================================================== */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 50;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.7);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-body {
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  border: 6px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(30deg, #fcd871, #aa8a33, #f4cd68) border-box;
}

.modal-header {
  position: relative;
  z-index: 1;
}

.modal-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.75);
}

@media screen and (max-width: 575px) {
  .modal {
    padding: 10px;
  }

  .modal-close {
    right: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
}

.modal-header {
  padding: 30px 0 00px;
}

.header-container {
  margin: 0 auto;
  max-width: 550px;
  padding: 0 20px;
  box-sizing: border-box;
}

.header-container p {
  text-align: center;
  color: #fff;
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0px;
}

.header-container img {
  margin: 0 auto;
  display: block;
  max-width: 300px;
  margin-top: -10px;
}

.content {
  padding: 0;
  position: relative;
  z-index: 1;
}

.content-container {
  padding: 0 44px;
  box-sizing: border-box;
  margin: 0 auto;
  padding-bottom: 30px;
  margin-top: -15px;
}

.casino {
  border-radius: 36px;
  width: 100%;
  background: #ededed;
  margin-bottom: 20px;
  box-shadow: 0 0 68px rgba(0, 0, 0, 0.2);
  position: relative;
}

.content-container .casino:first-child {
  background:
    linear-gradient(to bottom, #fcd871, #aa8a33, #f4cd68) border-box,
    linear-gradient(#ededed, #ededed) padding-box;
  border: 6px solid transparent;
  box-shadow:
    0 0 15px rgba(255, 200, 0, 0.55),
    0 0 20px rgba(255, 200, 0, 0.55),
    0 0 20px rgba(255, 150, 0, 0.45),
    0 0 25px rgba(255, 150, 0, 0.15),
    0 0 40px rgba(0, 0, 0, 0.2);
}

.content-container .casino:first-child .bottom p {
  color: #fff;
}

.banner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -11px;
}

.top {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #444;
  border-radius: 31px 31px 0 0;
}

.first {
  padding-top: 32px;
  padding-bottom: 10px;
}

.casino-logo {
  margin-right: 20px;
}

.top > div {
  position: relative;
}
.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.not-available {
  position: absolute;
  left: 22px;
  top: -15px;
}

.bottom {
  height: 41px;
  background-color: #565656;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 31px 31px;
}

.bottom p {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #b5b5b5;
}

.bottom img {
  max-width: 100%;
}

.cta-btn {
  /* layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;

  /* size similar to your image */
  height: 44px;
  padding: 0 33px;
  white-space: nowrap;
  /* look */
  background: linear-gradient(to bottom, #00b900 0%, #17ff17 100%);
  border: 3px solid #00ff00;
  border-radius: 8px;
  font-size: 18px;

  /* bevel / depth */

  /* text */
  color: #fff;
  font-family: "inter-variable", sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;

  text-shadow:
    0px 2px 5px rgba(0, 0, 0, 0.72),
    0px 2px 5px rgba(0, 0, 0, 0.2);

  cursor: pointer;
  user-select: none;
}

/* arrow base */
.cta-btn::before,
.cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 16px;
  background: #e60000;
  transform: translateY(-50%);
  /* arrow with a shaft */
  clip-path: polygon(
    0% 30%,
    55% 30%,
    55% 8%,
    100% 50%,
    55% 92%,
    55% 70%,
    0% 70%
  );
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.25));
}

/* left arrow points right (inward) */
.cta-btn::before {
  left: 6px;
}

/* right arrow points left (inward) */
.cta-btn::after {
  right: 6px;
  transform: translateY(-50%) scaleX(-1);
}

/* optional hover/active states */
.cta-btn:hover {
  filter: brightness(1.05);
}
.cta-btn:active {
  transform: translateY(1px);
}
.cta-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .header-container img {
    width: 60%; /* 60% smaller */
  }

  .header-container p {
    margin-bottom: 10px;
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .content-container {
    padding: 0 4vw;
  }

  .header-container p {
    font-size: 8vw;
  }

  .cta-btn {
    font-size: 4vw;
  }

  .casino-logo {
    margin-right: 3vw;
    max-width: 23vw;
  }
  .banner {
    top: -3.5vw;
    max-width: 70%;
  }
  .header-container img {
    margin-bottom: 5vw;
  }
  .bottom p {
    font-size: 4vw;
  }
}
