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

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

/* Leaderboard */

.leaderboard-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  z-index: 1
}

.leaderboard-title {
    position: relative;
    text-align: center;
}

.leaderboard-image {
    opacity: 0.9;
    width: auto;
    max-height: 150px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(147, 147, 147, 0.8)) 
            drop-shadow(0 0 20px rgba(147, 147, 147, 0.6)) 
            drop-shadow(0 0 40px rgba(147, 147, 147, 0.4));
}

.leaderboard-text {
    position: block;
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-top: -10px;
    z-index: 1;
    letter-spacing: 1px;
}

.leaderboard-subtext {
    position: block;
    font-size: 3.5rem; /* Smaller size for the subtext */
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px; /* Adds space between the main text and subtext */
    z-index: 1;
    letter-spacing: 1px;
	margin-bottom: 20px;
}

.coin-title {
  width: 4rem;
  height: 4rem;
  margin-left: 15px;
  vertical-align: middle;
}

.logo-title {
  width: auto;
  height: 48px;
  margin-left: 15px;
  margin-right: 15px;
  vertical-align: middle;
}

.leaderboard-box {
  background: transparent;
  width: 1200px;
  height: auto;
  font-size: 1rem;
  padding: 20px;
  color: white;
  text-align: center;
  position: relative;
  text-align: center;
  position: relative;
}

.leaderboard-tabs {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    gap: 1rem;
}

.tab-link {
    text-decoration: none;
    padding: 0.5rem 1rem;
	background: linear-gradient(180deg, rgba(19, 34, 52, 0.6), rgba(48, 73, 102, 0.6));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
	font-size: 24px;
    transition: background-color 0.3s ease;
	width: 150px;
    max-width: 200px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.tab-link:hover {
	background: linear-gradient(180deg, rgba(35, 63, 96, 0.6), rgba(64, 97, 136, 0.6));
    transform: scale(1.10);
    transform-origin: center;
}

@keyframes snake-border {
  0% {
    border-color: #335471;
  }
  50% {
    border-color: #0c223a;
  }
  100% {
    border-color: #335471;
  }
}

.date-container {
  display: none;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-family: 'Geogrotesque Sharp', sans-serif;
  color: white;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.countdown-box {
  background: linear-gradient(180deg, rgba(19, 34, 52, 0.6), rgba(48, 73, 102, 0.6));
  font-family: 'Poppins', sans-serif;
  color: white;
  padding: 10px;
  font-size: 2rem;
  text-align: center;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.countdown-box:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, rgba(35, 63, 96, 0.6), rgba(64, 97, 136, 0.6));
}

.countdown-box p {
  font-size: 1rem;
  margin: 0;
  color: white;
  z-index: 20;
}

.countdown-box span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}

.countdown-container {
  text-align: center;
  margin: 30px;
}

.countdown-timer {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.countdown-labels {
  font-size: 18px;
  color: #ddd;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.countdown-labels span {
  margin: 0 10px;
  font-weight: 600;
}

.leaderboard {
  display: none;
  text-align: left;
}

.leaderboard.active {
  display: block;
}

.leaderboard-header {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  padding: 10px;
  font-weight: bold;
  text-align: left;
  font-size: 24px;
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.leaderboard-header .header {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  left: 5px;
  position: absolute;
}

.leaderboard-header .position {
  left: 20px;
  position: absolute;
  margin-bottom: 2px;
}


.leaderboard-header .name {
  left: 405px;
  position: absolute;
  margin-bottom: 2px;
}

.leaderboard-header .wagered {
  left: 740px;
  position: absolute;
  margin-bottom: 2px;
}

.leaderboard-header .prize {
  left: 1000px;
  position: absolute;
  margin-bottom: 2px;
}

.leaderboard-row {
    font-family: 'geogrotesque_widebold';
    display: flex;
    padding: 10px;
    margin-bottom: 10px;
	background: linear-gradient(180deg, rgba(19, 34, 52, 0.6), rgba(48, 73, 102, 0.6));
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, background-color 0.3s ease, margin-bottom 0.3s ease;
	position: relative;
}

.leaderboard-row:hover {
	background: linear-gradient(180deg, rgba(35, 63, 96, 0.6), rgba(64, 97, 136, 0.6));
    transform: scale(1.05);
    transform-origin: center;
}

.leaderboard-row .position {
}

.podium-row {
  font-family: 'geogrotesque_widebold';
  display: flex;
  justify-content: center;
  align-items: flex-end; 
  margin-bottom: 30px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  transition: transform 0.3s ease, background-color 0.3s ease, margin-bottom 0.3s ease;
}

.podium-box {
  width: 350px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: linear-gradient(180deg, rgba(19, 34, 52, 0.6), rgba(48, 73, 102, 0.6));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, background-color 0.3s ease, margin-bottom 0.3s ease;
  margin: 0 15px;
  text-align: center;
  margin-top: 40px;
  border-radius: 100px;
}

.podium-box.first-place {
  top: -40px;
  border: 5px solid gold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 10px gold);
}

.podium-box.second-place {
  border: 5px solid silver;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 10px silver);
}

.podium-box.third-place {
  border: 5px solid #CD7F32;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 10px bronze);
}

@keyframes water-waves {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.podium-box .position-avatar-container {
  display: flex;
  align-items: center;
  justify-content: center; 
  position: relative; 
  gap: 10px; 
  height: 100%; 
}

.podium-box .avatar-container img {
  width: 40px; 
  height: 40px;
  border-radius: 20px;
  border: 3px solid #fff;
}

.podium-box .avatar img {
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 10px 0;
  border: 3px solid #fff;
}

.podium-box .name,
.podium-box .wagered,
.podium-box .tickets,
.podium-box .prize {
  color: #fff;
  margin-top: 10px;
  display: inline-block; 
  text-align: center; 
  width: 100%;
  align-items: center;
  text-shadow: 0 0 4px black, 0 0 10px black;
  font-size: 24px;
}

.podium-box .name {
	align-items: center;
	text-align: center; 
}

.podium-box .wagered img {
  width: 24px; 
  height: 24px;
  vertical-align: middle; 
  margin-left: 5px; 
}

.podium-box .position {
  width: 100%; 
  text-align: center; 
}

.podium-box img.position-image {
  width: 70px; 
  height: auto; 
  display: block; 
  margin: 0 auto; 
  margin-bottom: 1rem;
}

.avatar-container {
  position: relative;
  display: inline-block;
  overflow: visible;
}

.avatar-image {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

@keyframes fall {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 0.8;
  }
  100% {
    transform: translateY(50px) translateX(var(--randomX));
    opacity: 0;
  }
}

/* Particle variations */
.particle:nth-child(1) { --randomX: 5px; animation-delay: 0s; }
.particle:nth-child(2) { --randomX: -15px; animation-delay: 0.3s; }
.particle:nth-child(3) { --randomX: 15px; animation-delay: 0.6s; }
.particle:nth-child(4) { --randomX: -5px; animation-delay: 0.9s; }
.particle:nth-child(5) { --randomX: 20px; animation-delay: 1.2s; }
.particle:nth-child(6) { --randomX: -25px; animation-delay: 1.5s; }
.particle:nth-child(7) { --randomX: 30px; animation-delay: 1.8s; }
.particle:nth-child(8) { --randomX: -10px; animation-delay: 2.1s; }
.particle:nth-child(9) { --randomX: 40px; animation-delay: 2.4s; }
.particle:nth-child(10) { --randomX: -35px; animation-delay: 2.7s; }
.particle:nth-child(11) { --randomX: 10px; animation-delay: 3s; }
.particle:nth-child(12) { --randomX: -40px; animation-delay: 3.3s; }
.particle:nth-child(13) { --randomX: 35px; animation-delay: 3.6s; }
.particle:nth-child(14) { --randomX: -20px; animation-delay: 3.9s; }
.particle:nth-child(15) { --randomX: 25px; animation-delay: 4.2s; }
.particle:nth-child(16) { --randomX: -30px; animation-delay: 4.5s; }

.second-place-shadow {
  box-shadow: 0px 0px 10px 3px #FFD700;
}

.third-place-shadow {
  box-shadow: 0px 0px 8px 2px #DAA520;
}

.eighth-to-tenth-place .position {
  background-image: none;
}

.position, .name, .wagered, .prize {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-shadow: 0 0 2px black, 0 0 1px black;
  font-size: 18px;
}

.position {
  width: 10%;
  text-align: left;
}

.avatar-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.name {
  width: 20%;
  text-align: left;
}

.wagered {
  width: 14%;
  text-align: left;
}

.prize {
  width: 15%;
  text-align: left;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #fff;
}

.coin-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.mobile-header {
	display: none;
}

@media (max-width: 768px) {
  body {
	font-family: 'Poppins';
    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;
  }
  
  .tab-link {
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
	font-size: 14px;
    transition: background-color 0.3s ease;
	width: 100%;
   }
  
  .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);
  }
  
  .leaderboard-title {
    font-size: 2rem;
    margin: 20px 0;
  }
  
  .leaderboard-image {
	max-height: 100px;
	width: 100%;
   }
  
  .leaderboard-text {
	font-size: 1rem;
  }
  
  .podium-row {
    flex-direction: column; 
    justify-content: flex-start;
  }
  
  .podium-box {
    width: 100%; 
    margin: 10px 0; 
	margin-top: 20px;
  }

  .podium-box.first-place {
	top: 0px;
  }
  
  .leaderboard-header {
    margin-top: -20px;
  }
  
  .leaderboard-header .position, .leaderboard-header .name, .leaderboard-header .wagered, .leaderboard-header .prize {
	display: none;
  }
  
  .leaderboard-box {
    width: 95%;
    height: auto;
    font-size: 0.7rem;
    text-align: center;
    position: relative;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
  }
  
  .coin-icon {
	display: none;
  }
  
  .countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: 'Geogrotesque Sharp', sans-serif;
    color: white;
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .date-row {
	align-items: center;
	width: 100%;
  }

  .countdown-box {
	font-size: 1rem;
    width: 50px;
    height: 50px;
  }

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

  .leaderboard-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
 
  .leaderboard-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .position, .name, .wagered, .prize {
  font-size: 12px;
  }
  
  .avatar-image {
    width: 40px;
    height: 40px;
  }

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

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