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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #fdf6f0 0%, #f0e6f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  background: #ffffff;
  border: 1px solid #e8d5f0;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(180,140,200,0.15);
}

.badge {
  display: inline-block;
  background: #f3e8ff;
  border: 1px solid #d8b4fe;
  color: #7c3aed;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 2.5rem;
  color: #4a3560;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #9b7eb8;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.info-card {
  background: #fdf4ff;
  border: 1px solid #e8d5f0;
  border-radius: 10px;
  padding: 1.2rem 1rem;
}

.icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.label { font-size: 0.7rem; color: #b89ec8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }
.value { font-size: 0.85rem; color: #4a3560; font-weight: 600; }

.scripts-section {
  background: #fdf4ff;
  border: 1px solid #e8d5f0;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.scripts-section h2 {
  font-size: 1rem;
  color: #7c3aed;
  margin-bottom: 1rem;
  border-left: 3px solid #c084fc;
  padding-left: 0.75rem;
  text-align: left;
}

.script-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.script-card {
  background: #ffffff;
  border: 1px solid #e8d5f0;
  border-radius: 8px;
  padding: 1rem;
  text-align: left;
}

.script-card code {
  display: block;
  color: #059669;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  font-family: 'Courier New', monospace;
}

.script-card p {
  color: #9b7eb8;
  font-size: 0.78rem;
}

.footer-note {
  color: #c4a8d8;
  font-size: 0.75rem;
  border-top: 1px solid #f0e6f6;
  padding-top: 1.5rem;
}
