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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #0B0F14;
  min-height: 100vh;
  padding: 20px;
  color: #EAF0FF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

header {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 18px;
  opacity: 0.9;
}

main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 968px) {
  main {
    grid-template-columns: 1fr;
  }
}

.form-card, .info-card {
  background: #121824;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #243047;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #33FF8A;
}

.subtitle {
  color: #A8B3CF;
  margin-bottom: 30px;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #EAF0FF;
}

input {
  width: 100%;
  padding: 12px;
  border: 2px solid #243047;
  border-radius: 6px;
  font-size: 16px;
  background-color: #182235;
  color: #EAF0FF;
  transition: border-color 0.3s;
}

input::placeholder {
  color: #7683A5;
}

input:focus {
  outline: none;
  border-color: #33FF8A;
}

small {
  display: block;
  margin-top: 5px;
  color: #A8B3CF;
  font-size: 13px;
}

.url-preview {
  margin-top: 10px;
  padding: 10px;
  background: #182235;
  border: 1px solid #243047;
  border-radius: 6px;
  font-size: 14px;
  color: #A8B3CF;
}

.url-preview strong {
  color: #33FF8A;
  word-break: break-all;
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #33FF8A;
  color: #0B0F14;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

button[type="submit"]:hover:not(:disabled) {
  transform: translateY(-2px);
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.result {
  margin-top: 20px;
  padding: 20px;
  border-radius: 6px;
}

.result.hidden {
  display: none;
}

.result.success {
  background: rgba(46, 229, 157, 0.15);
  border: 2px solid #2EE59D;
  color: #2EE59D;
}

.result.error {
  background: rgba(255, 77, 77, 0.15);
  border: 2px solid #FF4D4D;
  color: #FF4D4D;
}

.result h3 {
  margin-bottom: 15px;
}

.success-details {
  margin-top: 15px;
}

.success-details p {
  margin-bottom: 10px;
}

.credentials {
  background: rgba(255, 176, 32, 0.15);
  border: 2px solid #FFB020;
  border-radius: 6px;
  padding: 15px;
  margin: 20px 0;
}

.credentials h4 {
  margin-bottom: 10px;
  color: #FFB020;
}

.credentials code {
  background: #121824;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: #33FF8A;
  border: 1px solid #243047;
}

.warning {
  color: #FF4D4D;
  font-weight: 600;
  margin-top: 10px;
}

.next-steps {
  margin-top: 20px;
}

.next-steps h4 {
  margin-bottom: 10px;
}

.next-steps ol {
  margin-left: 20px;
}

.next-steps li {
  margin-bottom: 8px;
}

.next-steps code {
  background: #182235;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #EAF0FF;
  border: 1px solid #243047;
}

.next-steps a {
  color: #3CD6FF;
  text-decoration: none;
}

.next-steps a:hover {
  text-decoration: underline;
}

.info-card h3 {
  color: #33FF8A;
  margin-bottom: 15px;
  margin-top: 20px;
}

.info-card h3:first-child {
  margin-top: 0;
}

.info-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.info-card li {
  padding: 8px 0;
  border-bottom: 1px solid #243047;
  color: #A8B3CF;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card pre {
  background: #182235;
  color: #EAF0FF;
  padding: 12px;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 14px;
  border: 1px solid #243047;
}

.info-card code {
  background: #182235;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: #EAF0FF;
  border: 1px solid #243047;
}

/* Multi-step form styles */
.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #243047;
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #243047;
  color: #7683A5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.step.active .step-number {
  background: #33FF8A;
  color: #0B0F14;
  box-shadow: 0 4px 12px rgba(51, 255, 138, 0.4);
}

.step.completed .step-number {
  background: #2EE59D;
  color: #0B0F14;
}

.step-label {
  font-size: 12px;
  color: #7683A5;
  font-weight: 500;
  text-align: center;
}

.step.active .step-label {
  color: #33FF8A;
  font-weight: 600;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

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

.form-step h3 {
  color: #33FF8A;
  margin-bottom: 25px;
  font-size: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.form-nav {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #243047;
}

.btn-prev,
.btn-next,
.btn-submit {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-prev {
  background: #243047;
  color: #A8B3CF;
}

.btn-prev:hover {
  background: #182235;
}

.btn-next,
.btn-submit {
  background: #33FF8A;
  color: #0B0F14;
  flex: 1;
}

.btn-next:hover,
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 255, 138, 0.4);
  background: #20D86E;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.payment-info {
  background: rgba(51, 255, 138, 0.1);
  border: 2px solid #33FF8A;
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
  text-align: center;
}

.payment-info h4 {
  color: #33FF8A;
  margin-bottom: 10px;
  font-size: 18px;
}

.payment-info p {
  color: #A8B3CF;
  margin-bottom: 15px;
  line-height: 1.5;
}

.price-box {
  background: #121824;
  padding: 15px 25px;
  border-radius: 6px;
  margin: 15px 0;
  display: inline-block;
  border: 1px solid #243047;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.price {
  font-size: 32px;
  font-weight: bold;
  color: #33FF8A;
}

.price-label {
  font-size: 16px;
  color: #7683A5;
}

.secure-note {
  font-size: 13px;
  color: #2EE59D;
  margin-top: 10px;
  font-weight: 600;
}

/* Success/Cancel page specific styles */
.card {
  background: #121824;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #243047;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
}

.card h1 {
  color: #EAF0FF;
  margin-bottom: 10px;
}

.card .subtitle {
  color: #A8B3CF;
  margin-bottom: 20px;
}

.info-box {
  background: #182235;
  border: 1px solid #243047;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.info-box h3 {
  color: #EAF0FF;
  margin-bottom: 15px;
}

.info-box p {
  color: #A8B3CF;
  margin-bottom: 10px;
}

.info-box.warning {
  background: rgba(255, 176, 32, 0.15);
  border-color: #FFB020;
}

.info-box.warning p {
  color: #FFB020;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #33FF8A;
  color: #0B0F14;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background-color: #20D86E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 255, 138, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #243047;
  color: #EAF0FF;
  border: 1px solid #243047;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background-color: #182235;
  border-color: #33FF8A;
}


