:root {
  --site-primary: #0056B3; /* Blue */
  --site-secondary: #FFD700; /* Gold */
  --site-accent: #FF6600; /* Orange - a common vibrant accent */

  /* Neon base colors - will be animated */
  --neon-primary-base: var(--site-primary);
  --neon-secondary-base: var(--site-secondary);
  --neon-accent-base: var(--site-accent);
}

/* Keyframe Animations */
@keyframes theme-colors {
  0%, 100% {
    border-color: var(--neon-primary-base);
    box-shadow:
      0 0 10px var(--neon-primary-base),
      0 0 20px var(--neon-primary-base),
      inset 0 0 10px rgba(0, 86, 179, 0.3);
  }
  33% {
    border-color: var(--neon-secondary-base);
    box-shadow:
      0 0 10px var(--neon-secondary-base),
      0 0 20px var(--neon-secondary-base),
      inset 0 0 10px rgba(255, 215, 0, 0.3);
  }
  66% {
    border-color: var(--neon-accent-base);
    box-shadow:
      0 0 10px var(--neon-accent-base),
      0 0 20px var(--neon-accent-base),
      inset 0 0 10px rgba(255, 102, 0, 0.3);
  }
}

@keyframes alternate-colors {
  0% {
    border-color: var(--neon-primary-base);
    box-shadow:
      0 0 10px var(--neon-primary-base),
      0 0 20px var(--neon-primary-base);
  }
  100% {
    border-color: var(--neon-secondary-base);
    box-shadow:
      0 0 10px var(--neon-secondary-base),
      0 0 20px var(--neon-secondary-base);
  }
}

@keyframes text-glow-flow {
  0% {
    text-shadow:
      0 0 5px var(--neon-primary-base),
      0 0 10px var(--neon-primary-base),
      0 0 15px var(--neon-primary-base);
    color: #ffffff;
  }
  50% {
    text-shadow:
      0 0 5px var(--neon-secondary-base),
      0 0 10px var(--neon-secondary-base),
      0 0 15px var(--neon-secondary-base);
    color: #ffffff;
  }
  100% {
    text-shadow:
      0 0 5px var(--neon-accent-base),
      0 0 10px var(--neon-accent-base),
      0 0 15px var(--neon-accent-base);
    color: #ffffff;
  }
}

@keyframes pulse-glow {
  from {
    box-shadow:
      0 0 5px currentColor,
      0 0 10px currentColor;
  }
  to {
    box-shadow:
      0 0 15px currentColor,
      0 0 30px currentColor,
      0 0 45px currentColor;
  }
}

/* Global Reset/Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  padding-top: 150px; /* Adjusted for fixed header height */
}

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

/* Header - Desktop Styles (Global) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  min-height: auto;
  background-color: transparent;
}

.header-top {
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
  padding: 15px 0;
  border-bottom: 2px solid var(--neon-primary-base);
  animation: theme-colors 6s ease-in-out infinite;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  animation: text-glow-flow 3s ease-in-out infinite alternate;
  white-space: nowrap;
}

.desktop-nav-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  position: relative;
  background: linear-gradient(135deg, var(--neon-primary-base), var(--neon-secondary-base));
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  border: 2px solid;
  animation: theme-colors 4s ease-in-out infinite;
  text-shadow:
    0 0 5px #ffffff,
    0 0 10px var(--neon-primary-base);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn:hover {
  animation-duration: 2s;
  transform: translateY(-2px);
}

.main-nav {
  background: linear-gradient(135deg, #16213e, #0f3460, #0a0a0a);
  padding: 10px 0;
  border-top: 2px solid var(--neon-secondary-base);
  border-bottom: 2px solid var(--neon-secondary-base);
  animation: alternate-colors 6s ease-in-out infinite alternate;
  display: flex;
  flex-direction: row;
  position: static;
  width: 100%;
  justify-content: center;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 20px;
}

.nav-link {
  color: #ccc;
  font-size: 1.1em;
  padding: 5px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--neon-primary-base);
}

/* Hamburger menu (hidden on desktop) */
.hamburger-menu {
  display: none;
}

.mobile-nav-buttons {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

/* Footer Styles (Regular, no neon) */
.site-footer {
  background-color: #1a1a1a;
  color: #bbb;
  padding: 40px 20px 20px;
  font-size: 0.9em;
}

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

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.footer-about .footer-logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
}

.footer-about .footer-description {
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav ul {
  list-style: none;
}

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

.footer-nav ul li a {
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #eee;
}

.payment-methods .payment-icons,
.game-providers-section .game-providers-icons,
.social-media-section .social-media-icons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.payment-methods .payment-icons img,
.game-providers-section .game-providers-icons img,
.social-media-section .social-media-icons img {
  max-height: 50px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.game-providers-section,
.social-media-section {
  padding: 20px 0;
  border-bottom: 1px solid #333;
}
.social-media-section {
    border-bottom: none; /* Last section doesn't need border */
}

.copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85em;
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    padding-top: 130px; /* Adjusted for mobile header height */
  }

  .site-header {
    flex-direction: column;
  }

  .header-top {
    padding: 10px 0;
    border-bottom: none;
    animation: none; /* Subtle glow is fine, but removing animation for header-top background on mobile for simplicity */
  }

  .header-container {
    padding: 0 15px;
    width: 100%;
    max-width: none;
    justify-content: space-between;
  }

  .logo {
    flex-grow: 1;
    text-align: center;
    font-size: 1.5em;
    order: 2;
  }

  .hamburger-menu {
    display: flex;
    order: 1;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    border: 2px solid var(--neon-primary-base);
    border-radius: 5px;
    animation: pulse-glow 2s ease-in-out infinite alternate;
    position: relative;
    background-color: transparent;
    transition: all 0.3s ease;
  }

  .hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--neon-primary-base);
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
  }

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

  .desktop-nav-buttons {
    display: none;
  }

  .mobile-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    width: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .main-nav {
    display: none; /* Mobile: hidden by default */
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(135deg, #16213e, #0f3460, #0a0a0a);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%); /* Off-screen by default */
    transition: transform 0.3s ease;
    border: none;
    animation: none; /* No dynamic glow for mobile menu itself */
    overflow-y: auto;
  }
  .main-nav.active {
    display: flex; /* Show when active */
    transform: translateX(0); /* Slide in */
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 80px 20px 20px;
    width: 100%;
    max-width: none;
  }

  .nav-link {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Footer Mobile */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-col {
    text-align: center;
  }
  .footer-about .footer-logo,
  .footer-col h4 {
    text-align: center;
  }
  .payment-methods .payment-icons,
  .game-providers-section .game-providers-icons,
  .social-media-section .social-media-icons {
    justify-content: center;
  }
  .footer-nav ul {
    padding-left: 0;
  }
}

/* Prevent body scroll when mobile menu is active */
body.no-scroll {
  overflow: hidden;
}