/* PAGE CONTAINER */
.create-container {
  max-width: 700px;
  margin: 80px auto;
  text-align: center;
  padding: 20px;
}

/* TITLES */
.create-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 10px;
}

.create-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* FORM */
.create-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
}

.create-input {
  flex: 1;
  max-width: 500px;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 12px;
  border: 2px solid #ddd;
  transition: 0.25s;
}

.create-input:focus {
  border-color: #3A76F0;
  box-shadow: 0 0 10px rgba(58,118,240,0.15);
}

.create-button {
  padding: 14px 22px;
  font-size: 16px;
  background: #3A76F0;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.25s;
}

.create-button:hover {
  background: #2F63CC;
  transform: translateY(-2px);
}

/* RESULT BOX */
.result-box {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  padding: 20px;
  margin-top: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* PROMO SECTION */
.create-promos {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.promo-item {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.promo-item h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.promo-item p {
  margin-bottom: 10px;
  color: #555;
}

.promo-item a {
  color: #3A76F0;
  font-weight: 600;
  text-decoration: none;
}

@media(max-width: 700px) {
  .create-form { flex-direction: column; }
  .create-button { width: 100%; }
  .create-promos { flex-direction: column; }
}
