* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Inter, Arial, sans-serif;
    }

    body {
      min-height: 100vh;
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      backdrop-filter: blur(18px);
      border-radius: 24px;
      padding: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    }

    .panel {
      background: rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 24px;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    p {
      color: #cbd5e1;
      margin-bottom: 24px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    label {
      display: block;
      margin-bottom: 8px;
      font-size: 0.95rem;
      color: #e2e8f0;
    }

    input,
    select {
      width: 100%;
      padding: 14px;
      border-radius: 12px;
      border: none;
      background: rgba(255,255,255,0.08);
      color: white;
      outline: none;
      font-size: 1rem;
    }

    input::placeholder {
      color: #94a3b8;
    }

    select option {
      color: black;
    }

    .button-group {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    button {
      flex: 1;
      min-width: 160px;
      border: none;
      border-radius: 14px;
      padding: 14px 18px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s ease;
      font-weight: 600;
    }

    .generate-btn {
      background: linear-gradient(135deg, #8b5cf6, #6366f1);
      color: white;
    }

    .copy-btn {
      background: linear-gradient(135deg, #06b6d4, #3b82f6);
      color: white;
    }

    .download-btn {
      background: linear-gradient(135deg, #10b981, #22c55e);
      color: white;
    }

    button:hover {
      transform: translateY(-2px);
      opacity: 0.95;
    }

    a {
      float:right;
      margin-bottom: 10px;
      color: #ffffff;
      -webkit-text-decoration: none;
      -moz-text-decoration: none;
      text-decoration: none;
    }

    textarea {
      width: 100%;
      height: 500px;
      background: #020617;
      color: #38bdf8;
      border: none;
      border-radius: 16px;
      padding: 20px;
      resize: none;
      font-size: 0.95rem;
      line-height: 1.5;
      outline: none;
    }

    .tag {
      display: inline-block;
      background: rgba(99,102,241,0.2);
      color: #c4b5fd;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.8rem;
      margin-bottom: 18px;
    }

    @media (max-width: 900px) {
      .container {
        grid-template-columns: 1fr;
      }

      textarea {
        height: 350px;
      }
    } 