* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    background-color: #000;
    color: #fff;
    font-family: 'Satoshi', sans-serif;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
  }

  .page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
  }

  .title {
    font-size: 3rem; 
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
  }
  .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
  }
  

  .container-box {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    max-width: 1000px;
    width: 100%;
    margin-bottom: 2rem;
  }
  

  .content-wrapper {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
  }

  @media (max-width: 900px) {
    .content-wrapper {
      flex-direction: column;
      align-items: center;
    }
    .title {
      font-size: 2rem;
    }
    .subtitle {
      font-size: 1rem;
    }
  }
  
  .instructions {
    max-width: 400px;
    line-height: 1.6;
    text-align: left;
  }
  .instructions h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  .instructions p {
    font-weight: 400;
    font-size: 1.1rem;
  }
  
  .form-section {
    max-width: 400px;
    text-align: left;
  }
  
  .love-form {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
  }
  
  .love-form label {
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.95rem;
  }
  
  .love-form input[type="text"],
  .love-form textarea {
    margin-top: 0.4rem;
    padding: 0.6rem;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #222;
    color: #fff;
    font-size: 1rem;
  }
  
  .toggle-container {
    display: flex;
    gap: 1rem;
    margin-top: 0.3rem;
  }
  
  .toggle-option {
    background-color: #333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
  }
  
  .toggle-option:hover {
    background-color: #555;
    transform: scale(1.05);
  }
  
  .toggle-option.active {
    background-color: #fff;
    color: #000;
  }
  
  .submit-btn {
    margin-top: 1.5rem;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
  }
  
  .submit-btn:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.05);
  }
  
  .footer {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .footer p {
    margin-top: 1rem;
  }
  