@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: 'Sunglory';
    src: url('Sunglory.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.hidden {
  opacity: 0;
}

* {
  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;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  background: linear-gradient(to bottom, #0c223a, #335370); /* Gradient background */
  background-attachment: fixed;
}

main {
  flex-grow: 1;
}

::-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);
}

.sunglory-title {
    font-family: 'Sunglory', sans-serif;
    font-size: 2rem;
    font-weight: normal;
	text-align: center;
}

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

:root {
  font-size: 16px;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #ffa800, #ff8f2d, #ffa800);
  height: 125px;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  border-bottom: 0.250rem solid;
  border-image: linear-gradient(to right, #0c223a, #0c223a, #335370, #0c223a, #0c223a) 1;
  text-shadow: 0 0 4px black, 0 0 10px black;
  font-size: 24px;
}

.sticky-header.shrink {
  padding: 0 1.25rem;
  box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.2);
  opacity: 0.8;
}

.nav-container {
  width: 100%; 
  max-width: 75rem; 
  margin: 0 auto; 
  position: relative; /* Ensure that absolutely positioned elements inside are relative to this container */
}

nav {
  display: flex;
  justify-content: center; 
  align-items: center;
  width: 100%;
  padding: 0 1.25rem;
  position: relative; /* Make nav positioned relative to its container */
}

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

.nav-left {
  position: absolute;
  left: 150px;
  text-align: right;
}

.nav-right {
  position: absolute;
  right: 175px;
  text-align: left;
}

.nav-right .hidden-placeholder {
  visibility: hidden;
  pointer-events: none;
}

.logo {
  position: absolute; /* Use absolute positioning to control the logo’s position */
  top: 50%; /* Vertically center the logo */
  left: 50%; /* Horizontally center the logo */
  transform: translate(-50%, -50%); /* Adjust position by half the logo’s width and height */
  text-align: center;
}

.logo img {
  height: auto;
  width: 6.25rem;
}

.invisible {
  opacity: 0;
}

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

nav ul li {
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  padding: 0.625rem 0.9375rem;
  display: block;
  border-radius: 0.9375rem;
  font-size: 36px;
}

nav ul li a:hover {
  background-color: #8f5d49;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 0.9375rem;
  min-width: 10rem;
}

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

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

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

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

ul li a i {
	font-size: 2rem; 
}
footer {
  background: linear-gradient(to right, #ffa800, #ff8f2d, #ffa800);
  color: #fff;
  padding: 20px 0;
  width: 100%;
  position: relative;
  z-index: 1;
  border-top: 0.250rem solid;
  border-image: linear-gradient(to right, #0c223a, #0c223a, #335370, #0c223a, #0c223a) 1;
  text-shadow: 0 0 2px black, 0 0 5px black;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  max-height: 400px;
}

.footer-section {
  flex: 1;
  text-align: center; 
  padding: 15px; 
  border-radius: 8px; 
  transition: background-color 0.3s; 
  position: relative;
}

.footer-section:hover {
  background: linear-gradient(135deg, #997402, #5b4500);
}

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

.footer-section ul li.desktop {
  flex: 0 0 30%;
  max-width: 90%;
  margin: 10px;
  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: 150px; 
  height: auto; 
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: white; 
  text-shadow: 0 0 4px black, 0 0 10px black;
}

.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;
}

.footer-section.offers img {
	background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Horizontal, Vertical, Blur, Spread, Color */
    border-radius: 10px; /* Optional: Rounds the corners slightly */
    transition: transform 0.3s ease; /* Optional: Adds a hover effect */
	padding: 5px;
}

.disclaimer {
  display: flex;
  justify-content: space-between; 
}

.gambleaware-logo {
  width: 100px;
  margin-left: 10px; 
}

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

.offer-box {
  background-color: #333;
  border-radius: 8px;
  text-align: center;
  padding: 15px;
  width: 300px; /* Set fixed width */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Ensures content is evenly spaced */
}

.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);
}

.big-box:hover .offer-image,
.big-box:hover .styled-button {
  box-shadow: 0 0 15px 5px rgba(255,215,0, 0.8);
}

.roll-box:hover .offer-image,
.roll-box:hover .styled-button {
  box-shadow: 0 0 15px 5px rgba(139, 0, 0, 0.8);
}

.skinrave-box:hover .offer-image,
.skinrave-box:hover .styled-button {
  box-shadow: 0 0 15px 5px rgba(80, 200, 120, 0.8);
}

.clash-box:hover .offer-image,
.clash-box:hover .styled-button {
  box-shadow: 0 0 15px 5px rgba(255, 165, 0, 0.8);
}

.mobile-header {
	display: none;
}

@media (max-width: 768px) {
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #e5e5f7;
    opacity: 0.95; /* Slightly higher opacity for better visibility */
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #222 25px), repeating-linear-gradient(#000000, #222);
    min-height: 100vh;
    background-size: 400% 400%;
    display: flex;
    flex-direction: column;
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
  }

  /* Hide the existing sticky header */
  .sticky-header {
    display: none; /* Hides the sticky header */
  }

  /* Mobile header styles */
  .mobile-header {
    display: flex; /* Use flexbox for alignment */
    justify-content: space-between; /* Space items */
    align-items: center; /* Center items */
    padding: 0.5rem 1rem; /* Padding for the header */
    background-color: #222; /* Background color for visibility */
    width: 100%; /* Full width */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Enhanced shadow for depth */
    position: relative; /* Positioning */
    z-index: 1000; /* Ensure it stays on top */
  }

  .mobile-header .logo img {
    height: auto;
    width: 6rem; /* Adjust logo size */
    max-height: auto; /* Limit height for better aesthetics */
  }

  .mobile-header .menu-icon {
    cursor: pointer; /* Change cursor to pointer */
    font-size: 1.5rem; /* Adjust icon size */
    color: #fff; /* Icon color for visibility */
  }

  .nav-menu {
    display: none; /* Initially hide the menu */
    flex-direction: column; /* Stack items vertically */
    width: 100%; /* Full width */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    text-align: left; /* Align text to the left */
    background-color: #333; /* Background color for better contrast */
    border-radius: 5px; /* Rounded corners for the menu */
  }

  .nav-menu.active {
    display: flex; /* Show menu when active */
  }

  .nav-menu li {
    width: 100%; /* Full width for each item */
    margin: 0.5rem 0; /* Margin between items */
    position: relative; /* Needed for dropdown positioning */
  }

  .nav-menu a {
    display: block; /* Make link a block for full click area */
    padding: 1rem; /* Add padding for larger clickable area */
    background-color: rgba(255, 255, 255, 0.1); /* Light background for better visibility */
    border-radius: 5px; /* Rounded corners */
	color: #fff; /* Set text color to white */
    transition: background-color 0.3s, transform 0.2s; /* Smooth transition for hover effect */
  }

  .nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Slightly lighter on hover */
    transform: scale(1.02); /* Slight scale effect on hover for depth */
  }

.responsive-links {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    display: flex; /* Align items horizontally */
}

.responsive-links li {
    margin-right: 10px; /* Space between items */
}

.responsive-links li img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
}

  /* Add styles for dropdown */
  .dropdown-content {
    display: none; /* Hide dropdown by default */
    position: absolute; /* Position it absolutely */
    justify-content: center; /* Center the items vertically */
    align-items: center; /* Center the items horizontally */
    background-color: #222; /* Dark background for contrast */
    z-index: 1001; /* Ensure it is above other elements */
    width: 100%; /* Full width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow for depth */
  }

  .dropdown-content a {
    color: #ffffff !important; /* Make text white for clear visibility */
    padding: 1rem; /* Add padding for a clickable area */
    display: block; /* Make links full-width */
    text-align: left; /* Align text to the left */
    background-color: #333; /* Darker background for dropdown items */
    border-bottom: 1px solid #555; /* Light border between items */
  }

  .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Lighter background on hover */
    color: #fff !important; /* Ensure text stays white on hover */
  }

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

  .offers-container {
    display: flex;
    flex-direction: column; /* Stack boxes vertically */
    width: 100%; /* Full width */
    padding: 0 1rem; /* Add some horizontal padding */
    gap: 20px; /* Space between boxes */
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .offer-box {
    width: 100%; /* Full width on mobile */
    padding: 20px; /* Increase padding for more space */
    background-color: #333; /* Background color for each box */
    border-radius: 8px; /* Rounded corners */
    text-align: center; /* Center text inside boxes */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
  }

  .offer-image {
    width: 100%; /* Make the image fill the box */
    object-fit: cover; /* Crop the image to fit */
    border-radius: 8px; /* Rounded corners for the image */
  }

  .offer-content {
    width: 100%; /* Ensure content takes full width */
    display: flex; /* Flexbox for vertical layout */
    flex-direction: column; /* Stack text and button vertically */
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    text-align: center; /* Center text */
    padding-top: 10px; /* Add some spacing between image and content */
  }

  .offer-content p {
    font-size: 1rem; /* Increase font size */
    color: #fff; /* Set text color to white */
    margin: 10px 0; /* Add some margin around text */
  }

  .styled-button {
    display: none; /* Adjust as needed */
  }

  .footer {
    width: 100%; /* Full width for footer */
    padding: 1rem; /* Add padding */
    background-color: #333; /* Background color for footer */
    color: #fff; /* Text color for footer */
    text-align: center; /* Center align text */
    position: relative; /* Position footer relative for stacking */
    box-sizing: border-box; /* Include padding in width calculation */
  }
  
    .footer-section.offers,
    .footer-section.disclaimer {
        display: none; /* Hides the offers and disclaimer sections on mobile */
    }
  
    .responsive-links li.desktop {
        display: none; /* Hide images on mobile */
    }

    .responsive-links li.mobile {
        display: block; /* Show text links on mobile */
    }
}

@media (min-width: 769px) {
    .responsive-links li.mobile {
        display: none; /* Hide text links on desktop */
    }
}

