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

* {
  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;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;  
  z-index: -1;
  transition: top 0.2s ease-in-out; 
}

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, #000, #05321f, #000);
  max-height: 150px;
  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.125rem solid;
  border-image: linear-gradient(to right, #4c3d13, #e2b53a, #4c3d13) 1;
}

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

.nav-container {
  width: 100%; 
  max-width: 75rem; 
  margin: 0 auto; 
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 1.25rem;
  gap: 1.5rem; /* Space between .nav-left, .logo, and .nav-right */
}

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

.nav-left {
  margin-right: 0.625rem;
}

.nav-right {
  margin-left: 0.625rem;
}

.logo {
  text-align: center;
  flex-shrink: 0; /* Prevents the logo from shrinking */
}

.logo img {
  align-items: center;
  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;
}

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, #000, #05321f, #000);
  color: #fff;
  padding: 20px 0;
  width: 100%;
  position: relative;
  z-index: 1;
  border-top: 0.125rem solid;
  border-image: linear-gradient(to right, #4c3d13, #e2b53a, #4c3d13) 1;
}

.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, #3a3f47, #8f939a);
}

.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: 100px; 
  height: auto; 
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #f5b24a; 
}

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

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

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

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

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

.mobile-header {
	display: none;
}

.bounties-container {
  padding-top: 10rem;
  padding-bottom: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bounties-header {
  text-align: center;
  margin-bottom: 2rem;
}

.centered-image {
  max-width: 300px;
  height: auto;
}

.bounty-box .bounty-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

/* Skinrave coin icon styles */
.bounty-box .prize-icon {
  border: none; /* Make sure no border is applied */
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  vertical-align: middle;
  z-index: 10;
}

.golden-border img {
  border: 2px solid #ffd700; /* Gold color */
}

.red-border img {
  border: 2px solid #eb4b4b; /* Gold color */
}

/* Purple border for non-disabled boxes */
.purple-border img {
  border: 2px solid #8847ff; /* Purple color */
}

.blue-border img {
  border: 2px solid #4b69ff; /* Purple color */
}

.green-border img {
  border: 2px solid #39bd5c;
}

.default-border img {
  border: 2px solid #FFF; /* Purple color */
}

/* Disabled bounty box styles */
.bounty-box.disabled {
  background: rgba(60, 60, 60, 0.5); /* Semi-transparent background */
  border: 2px solid rgba(0, 0, 0, 0.7); /* Black semi-transparent border */
  opacity: 0.7; /* Overall transparency */
}

.bounty-box.removed {
  display: none;
}

/* Apply grayscale and lower opacity to disabled images */
.bounty-box.disabled img {
  filter: grayscale(100%); /* Make the image grayscale */
  opacity: 0.5; /* Make the image semi-transparent */
}

/* Disable hover effects for disabled boxes */
.bounty-box.disabled:hover {
  transform: none;
  box-shadow: none; /* No hover shadow */
}

/* Center the bounty boxes */
.bounties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers the rows */
  gap: 2rem; /* Space between boxes */
}

.bounty-box {
  background: linear-gradient(135deg, rgba(58, 63, 71, 0.5), rgba(143, 147, 154, 0.5));
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Depth shadow */
  flex: 1 1 250px;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hover effect: lift, stronger shadow, white glow, and lighter background */
.bounty-box:hover {
  transform: translateY(-10px); /* Lift effect */
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.8), 0 8px 16px rgba(0, 0, 0, 0.5); /* White glow & stronger shadow */
  background: linear-gradient(135deg, rgba(98, 103, 111, 0.6), rgba(183, 187, 194, 0.6)); /* Lighter gradient */
}

.styled-button {
  font-family: 'Sunglory', sans-serif; /* Use custom font */
  font-size: 1.25rem; /* Font size */
  text-transform: uppercase; /* Uppercase letters */
  text-decoration: none; /* Remove underline */
  margin-top: 10px; /* Add margin between text and button */
  padding: 1.2rem 3rem; /* Adjust button padding */
  width: 150px; /* Set a fixed width for wider buttons */
  border-radius: 50px; /* Rounded edges */
  background: linear-gradient(135deg, #a762f9, #42c3fa); /* Gradient background */
  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; /* Position for hover effects */
  overflow: hidden; /* Hide any overflow effects */
  text-align: center; /* Ensure text is centered */
  display: inline-block; /* Ensures the button dimensions are respected */
}

.styled-button:hover {
  background: linear-gradient(135deg, #9c5ee3, #5ab7e7); /* Change gradient on hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
  transform: translateY(-7px); /* Lift the button higher */
}

.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:hover {
  transform: translateY(-5px);
}

.styled-button.disabled {
  background: #aaa;
  color: #666;
  cursor: not-allowed;
  pointer-events: none; /* Disable interaction */
  box-shadow: none;
  transform: none; /* No hover effects */
}

.bounty-description {
  text-align: left;
  padding-top: 1rem;
  padding-left: 1rem; /* Adjust left padding as needed */
  padding-right: 1rem; /* Adjust right padding as needed */
  padding-bottom: 1rem;
}

/* Add a bit of color variation */
.bounty-description li:first-child {
  color: #FFF; /* Gold color for the prize */
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
  .bounties {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .bounties {
    grid-template-columns: 1fr;
  }
}

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

  .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 */
    }
}