/* InPulsa Demo Sites - Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.demo-header {
  background: linear-gradient(135deg, #380e4e 0%, #6b2fa0 100%);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.demo-header h1 {
  font-size: 2.2em;
  margin-bottom: 8px;
  font-weight: 700;
}

.demo-header p {
  font-size: 1.1em;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.demo-nav {
  background: white;
  border-bottom: 1px solid #dee2e6;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.demo-nav a {
  text-decoration: none;
  color: #380e4e;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s;
}

.demo-nav a:hover,
.demo-nav a.active {
  background: rgba(56, 14, 78, 0.08);
}

.demo-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.demo-section {
  background: white;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.demo-section h2 {
  margin-bottom: 8px;
  color: #380e4e;
}

.demo-section p {
  color: #6c757d;
  margin-bottom: 24px;
}

.demo-footer {
  text-align: center;
  padding: 32px 20px;
  color: #6c757d;
  font-size: 0.9em;
}

.demo-footer a {
  color: #380e4e;
  text-decoration: none;
  font-weight: 600;
}

.embed-code {
  background: #1e1e2e;
  color: #a6e3a1;
  padding: 16px;
  border-radius: 8px;
  font-family: 'Fira Code', monospace;
  font-size: 0.85em;
  overflow-x: auto;
  margin-top: 16px;
  white-space: pre;
}

.badge {
  display: inline-block;
  background: rgba(56, 14, 78, 0.1);
  color: #380e4e;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 12px;
}
