/* General Body & Typography */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header Styles */
.site-header {
  background-color: #1A202C; /* Primary dark color */
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo {
  font-family: 'Impact', sans-serif; /* Creative font for logo */
  font-size: 32px;
  font-weight: bold;
  color: #FFD700; /* Accent gold color */
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.site-header .logo:hover {
  color: #e0b800; /* Slightly darker gold on hover */
}

.site-header .main-nav ul {
  display: flex;
  gap: 25px;
}

.site-header .main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active {
  color: #FFD700; /* Accent gold on hover/active */
}

.site-header .main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.site-header .main-nav a:hover::after,
.site-header .main-nav a.active::after {
  width: 100%;
}

.hamburger-menu {
  display: none; /* Hidden by default on desktop */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #FFD700;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Footer Styles */
.site-footer {
  background-color: #1A202C; /* Primary dark color */
  color: #f0f0f0;
  padding: 40px 0 20px;
  font-size: 14px;
}

.site-footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.site-footer .footer-col {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
  padding-right: 20px;
}

.site-footer .footer-col:last-child {
  padding-right: 0;
}

.site-footer h3 {
  color: #FFD700; /* Accent gold for headings */
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 10px;
}

.site-footer a {
  color: #fff;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #FFD700; /* Accent gold on hover */
}

.site-footer .footer-nav ul li {
  margin-bottom: 8px;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-footer .responsible-gambling-note {
  font-size: 12px;
  opacity: 0.8;
}

/* Back to Top Button */
#backToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position */
  bottom: 30px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button at the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #FFD700; /* Set a background color */
  color: #1A202C; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px 15px; /* Some padding */
  border-radius: 5px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #e0b800; /* Darker gold on hover */
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .site-header .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    background-color: #1A202C;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    text-align: center;
  }

  .site-header .main-nav.active {
    display: flex;
  }

  .site-header .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .site-header .main-nav a {
    padding: 10px 0;
    display: block;
  }
  
  .site-header .main-nav a::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hamburger-menu {
    display: block; /* Show hamburger on mobile */
  }

  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-footer .footer-columns {
    flex-direction: column;
  }

  .site-footer .footer-col {
    min-width: unset;
    padding-right: 0;
    text-align: center;
  }
  
  .site-footer .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px; /* Add some gap between links */
  }
  
  .site-footer .footer-nav ul li {
    margin-bottom: 0; /* Remove vertical margin for inline links */
  }

  .site-footer .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header .logo {
    font-size: 28px;
  }
}