    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      color: white;
      overflow-x: hidden;
      overflow-y: auto;
    }
    ul {
  list-style-type:none;
  margin: 0;
  padding: 0;
  background-color: #801212;
  display: flex;
  justify-content: center;
}


ul li {
  float: left;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
    body {
      font-family: Arial, sans-serif;
      color: white;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Background */
    .bg {
      position: fixed;
      inset: 0;
      background-image: url("fwsf-background.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -2;
    }

    /* Dark overlay */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: -1;
    }

    /* Main container */
    .container {
      max-width: 1000px;
      margin: auto;
      padding: 60px 20px;
      text-align: center;
    }

    h1 {
      font-size: 54px;
      margin-bottom: 20px;
      text-shadow: 2px 2px 10px black;
    }

    .subtitle {
      font-size: 22px;
      margin-bottom: 50px;
      color: #d9d9d9;
    }

    /* Merch card */
    .merch-card {
      background: rgba(0, 0, 0, 0.72);
      border: 2px solid white;
      border-radius: 20px;

      padding: 35px;

      backdrop-filter: blur(5px);
      box-shadow: 0 0 25px rgba(0,0,0,0.4);

      display: inline-block;
      max-width: 700px;
      width: 100%;
    }

    /* Shirt image */
    .shirt-image {
      width: 100%;
      max-width: 450px;

      border-radius: 18px;
      margin-bottom: 30px;

      transition: 0.3s ease;
      cursor: pointer;
    }

    .shirt-image:hover {
      transform: scale(1.02);
    }

    /* Instructions */
    .instructions {
      font-size: 20px;
      margin-bottom: 30px;
      color: #e8e8e8;
      line-height: 1.6;
    }
    .logo
  {
   width:300px;
   height:200px;
   align-items:center;
    
  }
  .logo:hover
  {
 transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
  }
    /* Buy button */
    .buy-btn {
      display: inline-block;

      padding: 16px 38px;

      background: white;
      color: black;

      border-radius: 14px;

      text-decoration: none;
      font-size: 20px;
      font-weight: bold;

      transition: all 0.3s ease;
    }

    .buy-btn:hover {
      transform: translateY(-3px);
      background: #d9d9d9;
    }

    /* Back button */
    .back-btn {
      display: inline-block;
      margin-top: 35px;

      padding: 14px 34px;

      background: rgba(0, 0, 0, 0.75);
      color: white;

      border: 2px solid white;
      border-radius: 12px;

      text-decoration: none;
      font-size: 18px;
      font-weight: bold;

      transition: all 0.3s ease;
    }

    .back-btn:hover {
      background: white;
      color: black;
      transform: translateY(-3px);
    }

    /* Mobile */
    @media (max-width: 768px) {

      h1 {
        font-size: 40px;
      }

      .subtitle {
        font-size: 18px;
      }

      .instructions {
        font-size: 18px;
      }

      .buy-btn {
        width: 100%;
      }
    }