/* Media Queries for Cyberpunk Neon Theme */

@media (max-width: 1200px) {
  .casino-item {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 992px) {
  .site-nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .site-nav.open ul {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu-toggle {
    display: block;
    background: var(--cyber-neon);
    color: var(--cyber-black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--neon-glow);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section.head {
    padding: 6rem 0;
  }

  .section.head h1 {
    font-size: 3rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section header h2 {
    font-size: 2.5rem;
  }

  .casino-item {
    width: 100%;
    max-width: 400px;
  }

  .casino-logo {
    width: 100%;
    height: 100px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 0;
  }

  .footer-links a {
    border-right: 1px solid var(--cyber-neon);
    border-bottom: none;
  }

  .footer-links li:last-child a {
    border-bottom: 1px solid var(--cyber-neon);
  }
}

@media (max-width: 480px) {
  .section.head h1 {
    font-size: 2.5rem;
  }

  .section header h2 {
    font-size: 2rem;
  }

  .text-content {
    padding: 2rem;
  }

  .casino-bonus .bonus-amount {
    font-size: 1.5rem;
  }
}
