﻿@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

  :root {
    --neon-color: #ff3c00;
    --neon-glow: 0 0 5px var(--neon-color), 0 0 10px var(--neon-color), 0 0 15px var(--neon-color);
    --neon-pulse: neonGlow 1.8s ease-in-out infinite alternate;
  }

  @keyframes neonGlow {
    from {
      box-shadow: 0 0 3px var(--neon-color), 0 0 6px var(--neon-color), 0 0 9px var(--neon-color);
    }
    to {
      box-shadow: 0 0 8px var(--neon-color), 0 0 16px var(--neon-color), 0 0 24px var(--neon-color);
    }
  }

  body {
    background-color: #000;
    color: #ff5a1a;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;  }

  .container {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 20px;
    margin: 20px;
  }

  .section {
    padding: 10px;
    min-height: 200px;
  }

  .block {
    background-color: #0b0b0b;
    border: 2px solid var(--neon-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    color: #ff5a1a;
    font-family: 'Orbitron', monospace;
    animation: var(--neon-pulse);
  }

  .block-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ff6600;
    text-align: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #ff3300;
    padding-bottom: 6px;
    text-shadow: 0 0 8px #ff6600, 0 0 12px #ff3300;
  }

  .block-content {
    font-size: 1.1rem;
    color: #ff8c1a;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 8px;
    box-shadow: inset 0 0 8px #ff6600;
    text-shadow: 0 0 4px #ff4d00;
  }

  /* Desktop nav */
  nav.desktop-menu {
    text-align: center;
    margin: 30px 0;
  }

  nav.desktop-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav.desktop-menu ul li a {
    background: linear-gradient(45deg, #ff3300, #000);
    color: white;
    font-size: 13px;
    padding: 6px 14px;
    border: 2px solid var(--neon-color);
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 5px #ff3300;
    animation: var(--neon-pulse);
  }

  nav.desktop-menu ul li a:hover {
    background: linear-gradient(45deg, #000, #ff3300);
    font-size: 14px;
    cursor: pointer;
  }

  /* Mobile nav */
  .mobile-menu-toggle {
    display: none;
    font-size: 20px;
    background: #111;
    color: #ff5a1a;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    border: 2px solid var(--neon-color);
    border-radius: 8px;
    margin: 10px auto;
    width: fit-content;
    animation: var(--neon-pulse);
  }

  nav#mobileMenu {
    display: none;
    text-align: center;
    margin-bottom: 20px;
  }

  nav#mobileMenu.active {
    display: block;
  }

  nav#mobileMenu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  nav#mobileMenu ul li a {
    background: linear-gradient(45deg, #ff3300, #000);
    color: white;
    font-size: 15px;
    padding: 10px;
    border: 2px solid var(--neon-color);
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 5px #ff3300;
    animation: var(--neon-pulse);
  }

  nav#mobileMenu ul li a:hover {
    background: linear-gradient(45deg, #000, #ff3300);
    cursor: pointer;
  }

  footer {
    background: linear-gradient(to top, #0b0b0b, #1a1a1a);
    border: 2px solid var(--neon-color);
    border-radius: 10px;
    padding: 15px;
    margin-top: 40px;
    color: #ff6600;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    text-align: center;
    animation: var(--neon-pulse);
    text-shadow: 0 0 6px #ff6600, 0 0 12px #ff3300;
  }

  /* Responsive grid adjustments */
  @media (max-width: 900px) {
    .container {
      grid-template-columns: 1fr 2fr 1fr;
    }
  }

  @media (max-width: 700px) {
    .container {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 480px) {
    .container {
      grid-template-columns: 1fr;
      margin: 10px;
      gap: 10px;
    }
  }

  /* Mobile menu visibility */
  @media (max-width: 600px) {
    nav.desktop-menu {
      display: none;
    }

    .mobile-menu-toggle {
      display: block;
    }
  }

  @media (min-width: 601px) {
    nav#mobileMenu {
      display: none !important;
    }

    .mobile-menu-toggle {
      display: none;
    }
  }
 .header-block {
  padding: 20px;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 90%;           /* smaller width on wide screens */
  max-width: 100em;     /* limit max width */
  height: 100px;
  border-radius: 10px;
  border: 2px solid var(--neon-color);
  animation: var(--neon-pulse);
  margin: 0 auto 20px;  /* center horizontally and add bottom margin */
}
.glow-header {
  font-size: 3rem;
  font-family: 'Orbitron', monospace;
  text-align: center;
  padding: 30px 20px;
  color: #ff3c00;
 
  margin-bottom: 20px;
  text-shadow:
    1px 1px 0 #220000,
    2px 2px 0 #440000,
    3px 3px 5px #880000,
    0 0 5px #ff3c00,
    0 0 10px #ff3c00,
    0 0 20px #ff3c00,
    0 0 40px #ff3c00;
  animation: neonTextPulse 2s infinite alternate;
  transform: translateZ(0);
}

@keyframes neonTextPulse {
  from {
    text-shadow:
      1px 1px 0 #220000,
      2px 2px 0 #440000,
      3px 3px 5px #880000,
      0 0 5px #ff3c00,
      0 0 10px #ff3c00,
      0 0 20px #ff3c00,
      0 0 30px #ff3c00;
  }
  to {
    text-shadow:
      1px 1px 0 #220000,
      2px 2px 0 #440000,
      3px 3px 5px #880000,
      0 0 10px #ff6600,
      0 0 20px #ff6600,
      0 0 40px #ff6600,
      0 0 60px #ff6600;
  }
}
  </style>