body {
    margin: 0;
    font-family: "Orbitron", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #111 0%, #000 60%);
    color: #e6edf3;
    overflow-x: hidden;
    position: relative;
  }
  
  /* Cyber grid overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
      linear-gradient(rgba(255,0,0,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: -1;
  }
  
  @keyframes gridMove {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
  }
  
  a {
    color: #00f0ff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: #ff1a1a;
    text-shadow: 0 0 10px #ff1a1a;
  }
  
  /* HEADER */
  header {
    background: linear-gradient(to right, #000000cc, #1a0000cc),
                url('pgrheader.webp') center/cover no-repeat;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 2px solid #ff1a1a;
    position: relative;
  }
  
  header h1 {
    font-size: 3.5rem;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 
      0 0 10px #00f0ff,
      0 0 20px #00f0ff,
      0 0 40px #ff0000;
    animation: glitch 2s infinite alternate;
  }
  
  header p {
    font-size: 1.1rem;
    color: #bbbbbb;
    margin-top: 15px;
    letter-spacing: 1px;
  }
  
  /* Glitch effect */
  @keyframes glitch {
    0% { text-shadow: 2px 2px #ff0000; }
    50% { text-shadow: -2px -2px #00f0ff; }
    100% { text-shadow: 2px -2px #ff0000; }
  }
  
  header ul {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  
  /* MAIN */
  main {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
  }
  
  section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
  }
  
  section:nth-of-type(1) { animation-delay: 0.3s; }
  section:nth-of-type(2) { animation-delay: 0.7s; }
  
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  h2 {
    color: #ff1a1a;
    margin-bottom: 20px;
    border-left: 4px solid #00f0ff;
    padding-left: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* TRAILER */
  .trailer {
    text-align: center;
  }
  
  .trailer-video {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    transition: 0.4s;
  }
  
  .trailer-video:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
  }
  
  /* SUMMARY */
  .summary {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
  }
  
  /* BUTTON */
  .btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(145deg, #ff0000, #8b0000);
    color: #ffffff;
    border-radius: 3px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 25px;
    border: 1px solid #ff1a1a;
  }
  
  .btn:hover {
    background: linear-gradient(145deg, #00f0ff, #0066ff);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
  }
  
  /* FOOTER */
  footer {
    background-color: #0a0a0a;
    text-align: center;
    padding: 30px;
    border-top: 2px solid #ff1a1a;
    font-size: 0.9rem;
    color: #888;
  }
  