@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;
  justify-content: center; 
  align-items: center;
  width: 100%;
  padding: 0 1.25rem;
}

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

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

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

.main-content {
  padding-top: 10rem;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
  padding-bottom: 2rem;
  gap: 20px; 
}

.info-container {
  flex: 1;
  background: linear-gradient(135deg, rgba(58, 63, 71, 0.5), rgba(143, 147, 154, 0.5));
  color: #fefefe; 
  padding: 20px;
  border-radius: 8px;
  margin-right: 1rem;
  margin-left: 5rem;
  box-sizing: border-box;
  border: 0.125rem solid #e2b53a;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
  opacity: 0.8;
}

.skinrave-image {
  width: auto;
  height: 30px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  transform: scale(1.5); 
  transition: transform 0.3s ease; 
}

.roobet-image {
  width: auto;
  height: 30px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  transform: scale(1.5); 
  transition: transform 0.3s ease; 
}

.xfun-image {
  width: auto;
  height: 30px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  transform: scale(1.5); 
  transition: transform 0.3s ease; 
}

.rain-image {
  width: auto;
  height: 30px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  transform: scale(1.5); 
  transition: transform 0.3s ease; 
}

.button-section {
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}

.button-description {
  font-family: 'Geogrotesque Sharp', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
}

.styled-button {
  font-family: 'Sunglory', sans-serif;
  font-size: 1.75rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem 3rem;
  width: 300px;
  border-radius: 10px;
  background: #4e6a76;
  color: #fefefe;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.styled-button:hover {
  background: #8f5d49;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-7px);
}

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

.styled-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.styled-button-glow {
  position: relative;
  background: linear-gradient(135deg, #3b597f, #af6b46);
  width: 350px;
  padding: 1.2rem 3rem;
  border-radius: 10px;
  color: #fefefe;
  font-family: 'Sunglory', sans-serif;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease, transform 0.3s ease;
}

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

.styled-button-glow:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-7px);
}

.divider {
  border: none; 
  height: 1px; 
  background-color: #ddd; 
  margin: 0.1rem 0; 
  width: 80%; 
}

.embeds-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px; 
}

.youtube-embed, .twitch-embed {
  background: linear-gradient(135deg, rgba(58, 63, 71, 0.5), rgba(143, 147, 154, 0.5));
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  margin-right: 5rem; 
  border: 0.125rem solid #e2b53a;
  height: 100%; 
}

.youtube-embed iframe {
  flex-grow: 1; 
  width: 100%;
}

.video-title {
  width: 200px; 
  height: auto; 
  display: block; 
  margin: 0 auto 0.5rem; 
}

.mobile-header {
	display: none;
}

@media (max-width: 768px) {
  body {
    font-family: 'Geogrotesque Sharp', sans-serif;
    background-color: #e5e5f7;
    opacity: 0.95; 
    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; 
    padding: 0; 
  }

  
  .sticky-header {
    display: none; 
  }

  
  .mobile-header {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0.5rem 1rem; 
    background-color: #222; 
    width: 100%; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
    position: relative; 
    z-index: 1000; 
  }

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

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

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

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

  .nav-menu li {
    width: 100%; 
    margin: 0.5rem 0; 
    position: relative; 
  }

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

  .info-container {
    margin: 0 auto; 
    padding-left: 1rem; 
    padding-right: 1rem;
    margin-left: 0; 
  }

  .youtube-embed, .twitch-embed {
    margin-right: 0; 
  }

  .embeds-container iframe {
    height: 250px; 
  }
  
  .main-content {
	padding-top: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
 
.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:hover .dropdown-content,
  .dropdown .dropdown-content.active {
    display: block !important; 
  }

  .footer {
    width: 100%; 
    padding: 1rem; 
    background-color: #333; 
    color: #fff; 
    text-align: center; 
    position: relative; 
    box-sizing: border-box; 
  }
  
    .footer-section.offers,
    .footer-section.disclaimer {
        display: none; 
    }
  
    .responsive-links li.desktop {
        display: none; 
    }

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

  .styled-button {
    width: 200px; 
    font-size: 1.5rem; 
    padding: 1rem 2rem; 
  }
 
  .button-description {
    text-align: center; 
  }
}

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