:root {
  --primary-color: #0A2240; /* Deep blue, dark background */
  --secondary-color: #FFD700; /* Gold/Yellow, for accents */
  --neon-primary: #00FFFF; /* Cyan for general neon */
  --neon-secondary: #FF00FF; /* Magenta for secondary neon */
  --neon-accent: #FFFF00; /* Yellow for accent neon */

  /* Dynamic color variables for animations */
  --neon-cycle-1: #00FFFF, #FF00FF, #FFFF00, #00FF00, #FF0000, #0000FF; /* Cyan, Magenta, Yellow, Green, Red, Blue */
  --neon-cycle-2: #FF00FF, #FFFF00, #00FFFF, #FF0000, #00FF00, #0000FF; /* Magenta, Yellow, Cyan, Red, Green, Blue */
  --neon-cycle-3: #FFFF00, #00FFFF, #FF00FF, #00FF00, #FF0000, #0000FF; /* Yellow, Cyan, Magenta, Green, Red, Blue */
}

/* Base Neon Glow Effect */
.neon-glow {
  box-shadow: 
    0 0 5px currentColor,
    0 0 10px currentColor,
    0 0 15px currentColor,
    0 0 20px currentColor,
    inset 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Dynamic Neon Text Glow */
.neon-text-dynamic {
  animation: text-glow-flow 3s ease-in-out infinite alternate;
  color: #ffffff; /* Base text color */
}

/* Dynamic Border Glow Styles */
/* Style 1: Classic Neon Tube Effect (dynamic color) */
.neon-tube {
  border: 2px solid;
  animation: neon-flicker 2s infinite alternate, theme-colors 4s ease-in-out infinite;
}

/* Style 2: Cyberpunk Grid Glow (dynamic color) */
.cyber-grid {
  background: 
    linear-gradient(90deg, transparent 95%, currentColor 100%),
    linear-gradient(180deg, transparent 95%, currentColor 100%);
  background-size: 20px 20px;
  border: 1px solid;
  animation: hue-spin 4s linear infinite;
}

/* Style 3: Pulse Breathing Effect (dynamic color) */
.neon-pulse {
  border: 2px solid;
  animation: pulse-glow 2s ease-in-out infinite alternate, theme-colors 4s ease-in-out infinite;
}

/* Style 4: Rainbow Cycle Gradient (dynamic color) */
.rainbow-flow {
  border: 2px solid;
  animation: rainbow-border 3s linear infinite;
}

/* Style 5: Hue Rotation (dynamic color) */
.hue-rotate {
  border: 2px solid;
  filter: hue-rotate(0deg);
  animation: hue-spin 4s linear infinite;
}

/* Style 6: Alternate Two Colors Glow (dynamic color) */
.alternate-glow {
  border: 2px solid;
  animation: alternate-colors 2s ease-in-out infinite alternate;
}

/* Style 7: Multi-color Flowing Light Band (dynamic color) */
.color-stream {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(45deg, 
    #ff0000, #ff8000, #ffff00, #00ff00, 
    #00ffff, #0000ff, #8000ff, #ff0080
  );
  background-size: 400% 400%;
  animation: gradient-flow 3s ease infinite;
}

/* Style 8: Random Color Change (dynamic color) */
.random-colors {
  border: 2px solid;
  animation: random-glow 5s linear infinite;
}

/* Style 9: Theme Color Dynamic Change (recommended) */
.theme-flow {
  border: 2px solid;
  animation: theme-colors 4s ease-in-out infinite;
}

/* Style 10: LED Matrix Effect (dynamic color) */
.led-matrix {
  border: 2px solid;
  box-shadow: 
    0 0 5px currentColor,
    0 0 10px currentColor;
  position: relative;
  animation: random-glow 5s linear infinite;
}

.led-matrix::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: 
    radial-gradient(circle at 0% 0%, currentColor 2px, transparent 3px),
    radial-gradient(circle at 100% 0%, currentColor 2px, transparent 3px),
    radial-gradient(circle at 0% 100%, currentColor 2px, transparent 3px),
    radial-gradient(circle at 100% 100%, currentColor 2px, transparent 3px);
  background-size: 20px 20px;
  animation: led-blink 1s steps(2) infinite;
}

/* Keyframe Animations */
@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    box-shadow: 
      0 0 10px currentColor,
      0 0 20px currentColor,
      0 0 30px currentColor,
      inset 0 0 15px currentColor;
  }
  20%, 24%, 55% {
    opacity: 0.8;
    box-shadow: 
      0 0 5px currentColor,
      0 0 10px currentColor,
      0 0 15px currentColor,
      inset 0 0 10px currentColor;
  }
}

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

@keyframes led-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

@keyframes text-glow-flow {
  0% {
    text-shadow: 
      0 0 5px var(--neon-primary, #00FFFF),
      0 0 10px var(--neon-primary, #00FFFF),
      0 0 15px var(--neon-primary, #00FFFF);
    color: #ffffff;
  }
  33% {
    text-shadow: 
      0 0 5px var(--neon-secondary, #FF00FF),
      0 0 10px var(--neon-secondary, #FF00FF),
      0 0 15px var(--neon-secondary, #FF00FF);
    color: #ffffff;
  }
  66% {
    text-shadow: 
      0 0 5px var(--neon-accent, #FFFF00),
      0 0 10px var(--neon-accent, #FFFF00),
      0 0 15px var(--neon-accent, #FFFF00);
    color: #ffffff;
  }
  100% {
    text-shadow: 
      0 0 5px var(--neon-primary, #00FFFF),
      0 0 10px var(--neon-primary, #00FFFF),
      0 0 15px var(--neon-primary, #00FFFF);
    color: #ffffff;
  }
}

@keyframes rainbow-border {
  0% {
    border-color: #ff0000;
    box-shadow: 
      0 0 10px #ff0000,
      0 0 20px #ff0000;
  }
  16.6% {
    border-color: #ff8000;
    box-shadow: 
      0 0 10px #ff8000,
      0 0 20px #ff8000;
  }
  33.3% {
    border-color: #ffff00;
    box-shadow: 
      0 0 10px #ffff00,
      0 0 20px #ffff00;
  }
  50% {
    border-color: #00ff00;
    box-shadow: 
      0 0 10px #00ff00,
      0 0 20px #00ff00;
  }
  66.6% {
    border-color: #0000ff;
    box-shadow: 
      0 0 10px #0000ff,
      0 0 20px #0000ff;
  }
  83.3% {
    border-color: #8000ff;
    box-shadow: 
      0 0 10px #8000ff,
      0 0 20px #8000ff;
  }
  100% {
    border-color: #ff0000;
    box-shadow: 
      0 0 10px #ff0000,
      0 0 20px #ff0000;
  }
}

@keyframes hue-spin {
  0% {
    filter: hue-rotate(0deg);
    box-shadow: 
      0 0 10px var(--neon-primary),
      0 0 20px var(--neon-primary);
  }
  100% {
    filter: hue-rotate(360deg);
    box-shadow: 
      0 0 10px var(--neon-primary),
      0 0 20px var(--neon-primary);
  }
}

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

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
    box-shadow: 
      0 0 10px #ff0000,
      0 0 20px #ff8000;
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 
      0 0 10px #00ffff,
      0 0 20px #0000ff;
  }
  100% {
    background-position: 0% 50%;
    box-shadow: 
      0 0 10px #ff0000,
      0 0 20px #ff8000;
  }
}

@keyframes random-glow {
  0% {
    border-color: #ff00ff;
    box-shadow: 0 0 20px #ff00ff;
  }
  20% {
    border-color: #00ffff;
    box-shadow: 0 0 20px #00ffff;
  }
  40% {
    border-color: #ffff00;
    box-shadow: 0 0 20px #ffff00;
  }
  60% {
    border-color: #00ff00;
    box-shadow: 0 0 20px #00ff00;
  }
  80% {
    border-color: #ff0000;
    box-shadow: 0 0 20px #ff0000;
  }
  100% {
    border-color: #ff00ff;
    box-shadow: 0 0 20px #ff00ff;
  }
}

@keyframes theme-colors {
  0%, 100% {
    border-color: var(--neon-primary);
    box-shadow: 
      0 0 10px var(--neon-primary),
      0 0 20px var(--neon-primary),
      inset 0 0 10px rgba(0, 255, 255, 0.3);
  }
  33% {
    border-color: var(--neon-secondary);
    box-shadow: 
      0 0 10px var(--neon-secondary),
      0 0 20px var(--neon-secondary),
      inset 0 0 10px rgba(255, 0, 255, 0.3);
  }
  66% {
    border-color: var(--neon-accent);
    box-shadow: 
      0 0 10px var(--neon-accent),
      0 0 20px var(--neon-accent),
      inset 0 0 10px rgba(255, 255, 0, 0.3);
  }
}

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

body {
  font-family: 'Arial', sans-serif;
  background-color: #0a0a0a; /* Dark background for the whole page */
  color: #f0f0f0;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  min-height: 100px; /* Adjust based on content */
  display: flex;
  flex-direction: column;
}

.header-top {
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
  border-bottom: 2px solid;
  animation: theme-colors 4s ease-in-out infinite; /* Dynamic border glow for header-top */
  padding: 15px 0;
}

.header-container, .nav-container, .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.logo {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffffff; /* Base color for neon text */
  text-transform: uppercase;
  padding: 5px 0;
}

.hamburger-menu {
  display: none; /* Hidden on desktop, will be shown on mobile */
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 0;
  border: 2px solid;
  animation: theme-colors 4s ease-in-out infinite; /* Dynamic glow for hamburger */
  border-radius: 3px;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--neon-primary);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

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

.desktop-nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn {
  position: relative;
  background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
  padding: 12px 25px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-shadow: 
    0 0 5px #ffffff,
    0 0 10px var(--neon-primary);
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent button text from wrapping */
}

.btn:hover {
  animation-duration: 2s; /* Faster color change on hover */
  transform: translateY(-2px);
  box-shadow: 
    0 0 15px var(--neon-primary),
    0 0 30px var(--neon-primary),
    inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.main-nav {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); /* Different dark gradient */
  border-top: 2px solid;
  border-bottom: 2px solid;
  animation: theme-colors 4s ease-in-out infinite reverse; /* Different dynamic border glow for main-nav */
  padding: 10px 0;
  display: flex; /* Desktop default: display flex */
  flex-direction: row; /* Desktop default: row */
  justify-content: center;
  align-items: center;
}

.main-nav .nav-container {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping if many items */
  justify-content: center;
  gap: 25px;
}

.main-nav .nav-link {
  color: #f0f0f0; /* Regular text color for nav links */
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease, background-color 0.3s ease;
  white-space: nowrap; /* Prevent nav links from wrapping */
}

.main-nav .nav-link:hover {
  color: var(--secondary-color); /* Highlight color on hover */
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.mobile-nav-buttons {
  display: none; /* Hidden on desktop */
  padding: 15px 20px;
  background-color: #0a0a0a;
  justify-content: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay {
  display: none; /* Hidden on desktop */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Footer Styles */
.site-footer {
  background-color: #1a1a2e; /* Dark background for footer */
  color: #c0c0c0;
  padding-top: 40px;
  font-size: 0.9rem;
}

.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h4 {
  color: var(--secondary-color); /* Use accent color for headings */
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
}

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

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

.footer-nav-list a {
  color: #c0c0c0;
  transition: color 0.3s ease;
}

.footer-nav-list a:hover {
  color: var(--secondary-color);
}

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

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

.footer-middle {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-providers-section, .social-media-section {
  margin-bottom: 20px;
}

.game-providers-section:last-child, .social-media-section:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.copyright {
  color: #999999;
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  body.no-scroll {
    overflow: hidden;
  }

  /* Adjust body padding to avoid fixed header/button overlap */
  body {
    padding-top: 170px; /* Approximate height of header-top + mobile-nav-buttons */
  }

  .site-header {
    min-height: auto;
  }

  .header-top {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 15px;
    justify-content: space-between;
  }

  .logo {
    font-size: 1.8rem;
    flex-grow: 1; /* Allow logo to take available space */
    text-align: center; /* Center logo */
    order: 2; /* Place logo in the middle */
  }

  .hamburger-menu {
    display: flex; /* Show hamburger on mobile */
    order: 1; /* Place hamburger on the left */
    margin-right: auto; /* Push logo to center */
  }

  .desktop-nav-buttons {
    display: none; /* Hide desktop buttons */
  }

  .mobile-nav-buttons {
    display: flex; /* Show mobile buttons below logo */
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e); /* Match header-top background */
    border-bottom: 2px solid;
    animation: theme-colors 4s ease-in-out infinite; /* Dynamic border glow for mobile buttons */
    padding: 10px 15px;
  }

  .main-nav {
    display: none; /* Default hidden on mobile */
    position: fixed; /* Fixed position for mobile menu */
    top: 0;
    left: 0;
    width: 70%; /* Slide-in menu width */
    height: 100%;
    background-color: #1a1a2e; /* Dark background for mobile menu */
    flex-direction: column; /* Vertical menu items */
    justify-content: flex-start;
    padding-top: 80px; /* Space for fixed header content */
    transform: translateX(-100%); /* Start off-screen */
    transition: transform 0.3s ease-in-out;
    border-right: 2px solid;
    animation: theme-colors 4s ease-in-out infinite reverse; /* Dynamic border glow for mobile menu */
  }

  .main-nav.active {
    display: flex; /* Show menu when active */
    transform: translateX(0); /* Slide in */
  }

  .main-nav .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 15px;
  }

  .main-nav .nav-link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-nav .nav-link:last-child {
    border-bottom: none;
  }

  .footer-container {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-nav-list {
    padding: 0;
  }

  .footer-nav-list li {
    text-align: center;
  }

  .payment-icons, .game-providers-icons, .social-media-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.6rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .mobile-nav-buttons {
    padding: 10px 10px;
  }
  body {
    padding-top: 150px; /* Adjust padding for smaller screens */
  }
}