* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: url('1980s_retrofuturistic_background.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
    color: white;
  }
  
  .poster {
    position: relative;
    width: 100vw;
    height: 100vh;
  }
  
  /* Centered Text */
  .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* text-shadow: 0 0 5px white, 0 0 10px #f0f; */
  }
  
  .text h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
   
  .text h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px rgb(0, 4, 255);
  }
  
  .event-details {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .location {
    font-weight: bold;
    color: #ffffff;
  }
  
  .glow-warning {
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgb(0, 26, 255), 0 0 20px rgb(0, 26, 255);
  }
  
  /* Plus Icons Styled to Match Poster */
  .plus {
    position: absolute;
    z-index: 2;
  }
  
  /* Top Left Large */
  .plus1 {
    top: 8%;
    left: 6%;
    width: 80px;
    z-index: -1;
  }
  
  /* Top Right Medium */
  .plus2 {
    top: 5%;
    right: 5%;
    width: 70px;
    transform: scaleX(-1);
    z-index: -1;
  }
  
  /* Upper Right Small - Flipped Horizontally */
  .plus3 {
    top: 12%;
    right: 24%;
    width: 40px;
    transform: scaleX(-1);
    z-index: -1;
  }
  
  /* Bottom Left Small */
  .plus4 {
    bottom: 16%;
    left: 8%;
    width: 80px;
    z-index: -1;
  }
  
  /* Bottom Right Large */
  .plus5 {
    bottom: 14%;
    right: 10%;
    width: 100px;
    transform: scaleX(-1);
    z-index: -1;
  }
  
  /* Bottom Center Under Text */
  .plus6 {
    bottom: 12%;
    left: 50%;
    width: 55px;
    transform: translateX(-50%);
  }
  