/* ================================
   GLOBAL STYLES
   ================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ffe0ec 0%, #fff3e0 100%); /* soft rose + warm cream */
  padding: 20px;
}

/* Alternative pastel gradients - swap in body background if desired:
   background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
   background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
*/

/* ================================
   CONTAINER
   ================================ */

.container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1 {
  color: #ff6b9d;
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  color: #ff6b9d;
  font-size: 1.5em;
  margin-bottom: 20px;
  text-align: center;
}

p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.subtitle {
  font-size: 0.9em;
  color: #999;
  margin-bottom: 30px;
}

/* ================================
   FORMS
   ================================ */

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
  font-size: 0.95em;
}

input[type="text"],
input[type="email"],
input[type="url"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  font-size: 1em;
  transition: border-color 0.3s;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #ff6b9d;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.optional-label {
  color: #999;
  font-size: 0.85em;
  font-weight: normal;
}

/* ================================
   BUTTONS
   ================================ */

button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: #f0f0f0;
  color: #666;
  margin-top: 10px;
}

.btn-secondary:hover {
  background: #e0e0e0;
}

/* ================================
   SUCCESS STATES
   ================================ */

.success-message {
  background: #d4edda;
  border: 2px solid #c3e6cb;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message h3 {
  color: #155724;
  margin-bottom: 10px;
}

.link-display {
  background: white;
  padding: 12px;
  border-radius: 8px;
  word-break: break-all;
  font-size: 0.9em;
  color: #333;
  margin: 15px 0;
  border: 1px solid #c3e6cb;
}

/* ================================
   UTILITY CLASSES
   ================================ */

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

/* ================================
   MOBILE RESPONSIVENESS
   ================================ */

@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.3em;
  }

  button {
    padding: 12px;
    font-size: 1em;
  }
}
