.demo-wrapper {
  /* Palette */
  --demo-bg-dark: #0a0a0a;
  --demo-gold-main: #f9dd80;
  --demo-gold-light: #ffffff;
  --demo-gold-dark: #ffda6b;
  --demo-text: #ffffff;
  --demo-text-muted: #e0e0e0;
  --demo-success: #27ae60; /* Emerald Green */

  margin-bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
}

.demo-container {
  width: 100%;
  max-width: 600px;
  /* Gold Double Border */
  border: 2px solid var(--demo-gold-dark);
  box-shadow:
    0 0 0 4px #1a0505,
    0 0 0 6px var(--demo-gold-dark),
    0 20px 50px rgba(0, 0, 0, 0.9);
  border-radius: 16px;
  overflow: hidden;
}

.text-demo {
  text-align: center;
  font-size: 2rem;
  color: #f9dd80;
  margin-bottom: 8px;
}

@media screen and (max-width: 600px) {
  .demo-wrapper {
    width: 90%;
  }
}
