   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      min-height: 100vh;
      background: radial-gradient(circle at top, #1d0117, #0f0f0f);
      font-family: "Poppins", sans-serif;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 30px;
    }

    h1 {
      color: #ffd700;
      text-shadow: 0 0 15px #ffcc00, 0 0 35px #fd6a08;
      font-size: 3rem;
      animation: glow 2s infinite alternate;
      margin-bottom: 20px;
      text-align: center;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 10px #ff6600, 0 0 25px #ff9900;
      }
      to {
        text-shadow: 0 0 30px #faea08, 0 0 60px #ff3300;
      }
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: flex-start;
      justify-content: center;
      max-width: 1200px;
      width: 100%;
    }

    .form-section {
      background: rgb(30, 101, 110);
      padding: 20px;
      border-radius: 15px;
      width: 320px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
    }

    label {
      display: block;
      margin: 10px 0 5px;
      font-weight: 600;
    }

    input, textarea, select {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: none;
      outline: none;
      font-size: 1rem;
      margin-bottom: 10px;
      font-family: "Poppins", sans-serif;
    }

    button {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 25px;
      background: linear-gradient(90deg, #ff6600, #ffcc00);
      color: #000;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
    }

    button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 25px rgba(255, 204, 0, 0.9);
    }

    .card-preview {
      position: relative;
      width: 400px;
      height: 500px;
      background: #1a001f;
      border-radius: 20px;
      border: 2px solid #ffcc00;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      text-align: center;
      box-shadow: 0 0 25px rgba(255, 204, 0, 0.4);
      transition: 0.5s;
    }

    .card-preview h2 {
      color: #ffcc00;
      font-size: 2rem;
      text-shadow: 0 0 15px #ff9900;
    }

    .card-preview p {
      width: 80%;
      color: #fff;
      line-height: 1.6;
      font-size: 1rem;
    }
    #shareAppBtn{

    margin-top: 25px;
     background: linear-gradient(135deg,  #dceb10, #3ee015, #cf29c7);
     }

    .from-text {
      font-size: 1.1rem;
      color: #ffd;
      font-weight: bold;
    }

    .diya {
      width: 90px;
      height: 80px;
      background: radial-gradient(circle at top, #ff9900 10%, #7b3f00 80%);
      border-radius: 50% 50% 10% 10%;
      position: relative;
      box-shadow: 0 -5px 30px rgba(255, 150, 0, 0.7);
    }

    .flame {
      position: absolute;
      top: 10px;
      left: 50%;
      width: 20px;
      height: 40px;
      background: radial-gradient(circle at center, #fff, #ff9a00, #ff3d00);
      border-radius: 50%;
      transform: translateX(-50%);
      animation: flicker 0.2s infinite alternate;
    }

    @keyframes flicker {
      from {
        transform: translateX(-50%) scale(1);
        opacity: 0.9;
      }
      to {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
      }
    }

    footer {
        margin-top: 20px;
       text-align: center;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      background-color: #4380a1;
      width: 100%;
    }