    body {
      margin: 0;
      padding: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(270deg, #4facfe, #00f2fe, #43e97b, #38f9d7);
      background-size: 800% 800%;
      animation: gradientBG 15s ease infinite;
    }

    @keyframes gradientBG {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    img {
      border-radius: 15px;
      box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
      margin-bottom: 30px;
      transition: transform 0.5s ease;
    }

    img:hover {
      transform: scale(1.05);
    }

    .button-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .button {
      text-decoration: none;
      padding: 15px 30px;
      font-size: 18px;
      font-weight: bold;
      color: white;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 50px;
      text-align: center;
      transition: all 0.4s ease;
      box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(5px);
    }

    .button:hover {
      background: rgba(255, 255, 255, 0.2);
      color: #000;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.3);
    }