    /* Reset & Basic Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      min-height: 100vh;
      background: linear-gradient(to right, #010c2a, #000b24); /* Gradient to hide the edges of our background image */
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    body::after {
      content: "";
      position: fixed;
      top: 0;
      right: 0;
      width: 35vw;
      height: 100vh;
      background: linear-gradient(to left, rgba(10,15,31,1) 0%, rgba(10,15,31,0.6) 30%, rgba(10,15,31,0) 100%);
      z-index: 0;
      pointer-events: none;
    }
        

    /* Background image */
    .bg-img {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      object-fit: contain;
      z-index: -1;
    }

    /* Logo in the upper left corner */
    .logo {
      position: absolute;
      top: 20px;
      left: 20px;
    }

    .logo img {
      width: 255px;
      height: auto;
    }
    .logo {
      position: absolute;
      top: 20px;
      left: 20px;
    }
    
    .logo::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(0,200,255,0.25) 0%, transparent 70%);
      z-index: -1;
      border-radius: 50%;
      filter: blur(15px);
    }
    
    /* UTC time in the bottom right corner */
    #utc-time {
      position: absolute;
      bottom: 20px;
      right: 20px;
      font-size: 20px;
      letter-spacing: 1px;
      z-index: 5;
    }