
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #0e0e0e;
      color: white;
    }
    header {
      background-color: #000;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    header div {
      font-size: 24px;
      font-weight: bold;
      color: gold;
    }
    nav a {
      margin: 0 15px;
      color: #ccc;
      text-decoration: none;
    }
    section {
      padding: 80px 20px;
    }
    .hero {
      text-align: center;
      background: linear-gradient(to bottom, #111, #000);
    }
    .hero h1 {
      font-size: 48px;
      letter-spacing: 2px;
    }
    .hero p {
      color: #aaa;
      max-width: 600px;
      margin: 20px auto;
    }
    .hero a {
      display: inline-block;
      margin-top: 30px;
      background-color: #ffd700;
      color: black;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }
    .product-section {
      background-color: #181818;
    }
    .product-section h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 50px;
    }
    .products {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .product-box {
      width: 280px;
      background-color: #111;
      padding: 20px;
      border-radius: 10px;
    }
    .product-box h3 {
      color: gold;
    }
    .product-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .product-box ul li {
      padding: 5px 0;
      border-bottom: 1px solid #333;
    }
    .contact-section {
      text-align: center;
      background-color: #0e0e0e;
    }
    .contact-section a {
      display: inline-block;
      margin-top: 30px;
      background-color: gold;
      color: black;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }
    footer {
      background-color: #000;
      padding: 20px;
      text-align: center;
      color: #555;
    }
  


    a:hover {
      opacity: 0.8;
    }
    .product-box:hover {
      transform: translateY(-5px);
      transition: 0.3s ease-in-out;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    }
    .hero a, .contact-section a {
      background: linear-gradient(45deg, gold, orange);
      color: #000;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      transition: 0.3s ease-in-out;
    }
    .hero a:hover, .contact-section a:hover {
      transform: scale(1.05);
    }
  


    body {
      background: radial-gradient(circle at top left, #1a1a1a, #000);
      background-attachment: fixed;
      overflow-x: hidden;
    }
    header div {
      font-family: 'Orbitron', sans-serif;
      font-size: 28px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 60px;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,140,0,0.05));
      z-index: -1;
    }
    .hero, .product-section, .contact-section {
      position: relative;
      z-index: 1;
    }
    .product-box {
      border: 1px solid #333;
      transition: all 0.3s ease-in-out;
    }
    .product-box:hover {
      background-color: #222;
      border-color: gold;
    }
    .product-section h2, .contact-section h2 {
      font-family: 'Orbitron', sans-serif;
      color: gold;
      text-shadow: 0 0 10px rgba(255,215,0,0.5);
    }
    .glow {
      text-shadow: 0 0 15px gold, 0 0 30px orange;
    }
  


    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: radial-gradient(circle at top left, #1a1a1a, #000);
      color: white;
      overflow-x: hidden;
    }
    header {
      background-color: #000;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    header div {
      font-size: 28px;
      font-family: 'Orbitron', sans-serif;
      color: gold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    nav a {
      margin: 0 15px;
      color: #ccc;
      text-decoration: none;
    }
    nav a:hover {
      color: gold;
    }
    section {
      padding: 80px 20px;
    }
    .hero {
      text-align: center;
      background: linear-gradient(to bottom, #111, #000);
    }
    .hero h1 {
      font-size: 48px;
      letter-spacing: 2px;
    }
    .hero p {
      color: #aaa;
      max-width: 600px;
      margin: 20px auto;
    }
    .hero a {
      display: inline-block;
      margin-top: 30px;
      background-color: gold;
      color: black;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }
    .product-section {
      background-color: #181818;
    }
    .product-section h2 {
      text-align: center;
      font-size: 32px;
      font-family: 'Orbitron', sans-serif;
      color: gold;
      text-shadow: 0 0 10px rgba(255,215,0,0.5);
      margin-bottom: 50px;
    }
    .products {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      justify-content: center;
      max-width: 900px;
      margin: auto;
    }
    .products .product-box:nth-child(5) {
      grid-column: span 2;
      justify-self: center;
      width: 50%;
    }
    .product-box {
      background-color: #111;
      padding: 20px;
      border-radius: 10px;
      border: 1px solid #333;
      transition: all 0.3s ease-in-out;
    }
    .product-box:hover {
      background-color: #222;
      border-color: gold;
      transform: translateY(-5px);
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    }
    .product-box h3 {
      color: gold;
      margin-bottom: 15px;
    }
    .product-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .product-box ul li {
      padding: 5px 0;
      border-bottom: 1px solid #333;
    }
    footer {
      background-color: #000;
      padding: 20px;
      text-align: center;
      color: #555;
    }
    @media (max-width: 768px) {
      .products {
        grid-template-columns: 1fr;
      }
      .products .product-box:nth-child(5) {
        width: 100%;
        grid-column: span 1;
      }
    }
    .glow {
      text-shadow: 0 0 15px gold, 0 0 30px gold;
    }
    .contact-section {
      text-align: center;
      background-color: #0e0e0e;
    }
    .contact-section a {
      display: inline-block;
      margin-top: 30px;
      background-color: gold;
      color: black;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }
    .hero a, .contact-section a {
      background: linear-gradient(45deg, gold, orange);
      color: #000;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
      transition: 0.3s ease-in-out;
    }
    .hero a:hover, .contact-section a:hover {
      transform: scale(1.05);
    }
    .hero, .product-section, .contact-section {
      position: relative;
      z-index: 1;
    }
    .product-section h2, .contact-section h2 {
      font-family: 'Orbitron', sans-serif;
      color: gold;
      text-shadow: 0 0 10px rgba(255,215,0,0.5);
    }
    .hero h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 60px;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,140,0,0.05));
      z-index: -1;
    }
  