@font-face {
    font-family: 'Geogrotesque Sharp';
    src: url('Geogrotesque_Sharp_VF_TRIAL.woff2') format('woff2'),
         url('Geogrotesque_Sharp_VF_TRIAL.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'geogrotesque_widebold';
    src: url('geogrotesque-wide-bold-webfont.woff2') format('woff2'),
         url('geogrotesque-wide-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'geogrotesque_widemedium';
    src: url('geogrotesque-wide-medium-webfont.woff2') format('woff2'),
         url('geogrotesque-wide-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'geogrotesque_widesemibold';
    src: url('geogrotesque-wide-semi-bold-webfont.woff2') format('woff2'),
         url('geogrotesque-wide-semi-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

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

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  font-family: 'Geogrotesque Sharp', sans-serif;
  font-size: 1.5em;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, #184076, #325788);
  background-attachment: fixed;
  background-size: cover;
}

.canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

main {
  flex-grow: 1;
}

.sticky-header {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #254f8e;
  height: 200px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  background-size: 300% 300%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 75rem;
  position: relative;
  padding: 0 1rem; /* Adjust padding if necessary */
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.logo {
  flex: none;
  margin-right: 2rem; /* Adjust margin to control space */
  text-align: left;
}

.logo img {
  filter: drop-shadow(0 0 10px #a0ccd3);
  padding: 5px;
  height: auto;
  width: 8rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin: 0 0.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #d1d1d1;
  padding: 0.625rem 0.9375rem;
  display: block;
  font-size: 1.8vw;
}

.offers {
  color: white;
}

nav ul li a:hover {
  color: white;
}


.hidden {
  display: block;
  opacity: 0.0;
  pointer-events: none;
}

.hidethis {
  opacity: 0.0;
  pointer-events: none;
}

.dropdown {
  position: relative;
  z-index: 5000;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #5A4975, #2A1E44);
  border: 0.25rem solid transparent;
  border-image: linear-gradient(135deg, rgba(105, 23, 23, 1), rgba(127, 44, 44, 1), rgba(105, 23, 23, 1));
  border-image-slice: 1;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 0.9375rem;
  min-width: 10rem;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s ease-in-out;
}

.dropdown:hover .dropdown-content {
  display: block;
  visibility: visible;
  opacity: 1;
}

.dropdown:hover .dropbtn {
  background-color: #8f5d49;
}

.dropdown-content a img {
  width: 152px;
  height: 39px;
  object-fit: cover;
}

.dropdown-content a {
  color: #000000;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  text-align: center;
}

.dropdown-content a:hover {
  background-color: #232127;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #8f5d49;
}

ul li a i {
  font-size: 1rem;
}

.nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
    background-color: #333;
    border-radius: 5px;
	color: black;
}


::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.6);
}

::-webkit-scrollbar-corner {
  background: rgba(255, 255, 255, 0.1);
}

:root {
  font-size: 16px;
}

ul li a i {
	font-size: 2rem; 
}

footer {
  background: #254f8e;
  color: #fff;
  padding: 20px 0;
  width: 100%;
  position: relative;
  z-index: 1;
  border-top: 0.250rem solid;
  border-image: linear-gradient(to right, #c0a14d, #c0a14d, #c0a14d) 1;
  text-shadow: 0 0 2px black, 0 0 5px black;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 48%;
  text-align: center;
  border-radius: 8px;
  transition: background-color 0.3s;
  position: relative;
  box-sizing: border-box;
  align-items: center;
}

.footer-container .socials {
  margin-right: 2%;
  padding-bottom: 20px;
  font-size: 30px;
}

.footer-section.socials ul li a .fab {
  font-size: 48px;
  transition: transform 0.3s ease;
}

.footer-section.socials ul li a .fab:hover {
  transform: scale(1.1);
}

.footer-section.socials ul li {
  display: inline-block;
  margin: 0 10px;
}

.footer-container .disclaimer {
  width: 100%;
  text-align: center;
  clear: both;
}

.footer-section .disclaimer a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.footer-section .disclaimer a:hover {
  color: #be80cb;
  text-decoration: underline;
}

.footer-section .made-by-steph {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.footer-section .made-by-steph .steph {
    font-weight: bold;
}

.footer-section .made-by-steph:hover {
	transform: scale(1.10);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.footer-section ul li {
  margin: 0 10px;
}

.footer-section ul li a {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-section ul li img {
  width: 200px;
  height: auto;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: white;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section p {
  margin: 10px 0;
  text-shadow: 0 0 4px black, 0 0 10px black;
  font-size: 18px;
}

.footer-section.offers img {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 70px;
  width: 270px;
  padding: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-section.offers img:hover {
  transform: scale(1.1);
}

.offers-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.offer-box {
  background: #254f8e;
  border-radius: 8px;
  text-align: center;
  padding: 15px;
  width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.offer-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.offer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.offer-benefits li {
  display: flex;
  align-items: center;
  color: #fff;
}

.checkmark {
  margin-right: 0.5rem; /* Spacing between checkmark and text */
  color: #4CAF50; /* Change checkmark color (green) */
}

.styled-button {
  font-family: 'Sunglory', sans-serif;
  font-size: 1.75rem;
  text-transform: uppercase; /* Uppercase letters */
  text-decoration: none; /* Remove underline */
  padding: 1.2rem 3rem; /* Adjust button padding */
  width: 200px; /* Set a fixed width for wider buttons */
  border-radius: 10px; /* Less rounded edges for a squared look */
  background: linear-gradient(to right, #ffa800, #ffc000, #ffa800);
  color: #fff; /* Button text color */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Add a more prominent shadow */
  transition: all 0.3s ease, transform 0.3s ease; /* Smooth transition effect */
  position: relative;
  overflow: hidden; /* Hide any overflow effects */
  text-align: center; /* Ensure text is centered */
}

.styled-button:hover {
  background: linear-gradient(593101, #d37f1b, #593101); /* Darker shades for hover effect */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
  transform: translateY(-7px); /* Lift the button higher */
}

.styled-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.styled-button:hover::before {
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.3); /* Highlight effect on hover */
}

.styled-button:active {
  transform: translateY(0); /* Reset the button on click */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Reduced shadow on click */
}

.styled-button-glow {
  position: relative;
  background: linear-gradient(135deg, #f6ad47, #6f3f89); /* Gradient background */
  width: 350px; /* Wider button with glow effect */
}

.styled-button-glow::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
  transition: all 0.5s ease;
}

.styled-button-glow:hover::after {
  transform: scale(1.2); /* Glow effect on hover */
  opacity: 0.8;
}


.rain-box:hover .offer-image,
.rain-box:hover .styled-button {
  box-shadow: 0 0 15px 5px rgba(135, 206, 250, 0.8);
}

.skinrave-box:hover .offer-image,
.skinrave-box:hover .styled-button {
  box-shadow: 0 0 15px 5px #0a5845;
}

.mobile-header {
	display: none;
}

@media (max-width: 768px) {
  body {
	font-family: 'geogrotesque_widebold';
    font-size: 1em;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  #background-video {
	  display: none;
  }

  .sticky-header {
    display: none;
  }

  .header-border {
    display: none;
  }
  
  .sky-container {
	display: none;
  }
  
  .mobile-header {
	height: 5rem;
    display: flex;
	top: 0;
    justify-content: space-between;
    align-items: center;
	background: #254f8e;
    padding: 0.5rem 1rem;
    border-bottom: 0.250rem solid;
    border-image: linear-gradient(to right, #232323, #232323, #232323) 1;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
  }

  .mobile-header .logo img {
    height: auto;
    width: 8rem;
  }

  .mobile-header .menu-icon {
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
  }

  .nav-menu {
	top: 0;
    position: relative;
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
	background: #254f8e;
    border-image: linear-gradient(to right, #232323, #232323, #232323) 1;
    border-radius: 5px;
	z-index: 5000;
  }

  .nav-menu.active {
    display: flex; 
  }

  .nav-menu li {
    width: 100%;
    margin: 0.5rem 0;
    position: relative;
    border-bottom: 0.125rem solid transparent;
	border-image: linear-gradient(to right, #232323, #232323, #232323) 1;
	border-image-slice: 1;
  }

  .nav-menu a {
    display: block;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
	color: #fff;
    transition: background-color 0.3s, transform 0.2s;
  }

  .nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
  }

  .responsive-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }

  .responsive-links li {
    margin-right: 10px;
  }

  .responsive-links li img {
    max-width: 100%;
    height: auto;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    justify-content: center;
    align-items: center;
    background-color: #222;
    z-index: 1001;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .dropdown-content a {
    color: #ffffff !important;
    padding: 1rem;
    display: block;
    text-align: left;
    background-color: #333;
    border-bottom: 1px solid #555;
  }

  .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff !important;
  }

  .dropdown-content a:hover {
    background-color: rgba(200, 200, 200, 0.1);
  }

  .footer {
    width: 100%;
    padding: 1rem;
    background-color: #333;
    color: #fff;
    text-align: center;
    position: relative;
    box-sizing: border-box;
  }
  
  .footer-section.offers ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: center;
  }

  .footer-section.offers ul li {
    margin: 0;
    text-align: center;
  }

  .footer-section.offers ul li img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }
  
  .responsive-links li.desktop {
	display: none;
  }

  .responsive-links li.mobile {
	display: block;
  }

  .header .title-text {
    display: none;
  }

  .header .logo {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }

  .logo-container {
    text-align: center;
    margin-bottom: 20px;
  }

  .main-logo {
    max-width: 60%;
    height: auto;
  }
  .gambleaware-logo {
    width: 120px;
  }
}

@media (min-width: 769px) {
  .responsive-links li.mobile {
	display: none;
  }
}
