/* ── Free Realms golden panel theme ─────────────────────── */
:root, .dark {
  --card: 42 90% 52%;
  --card-foreground: 220 25% 12%;
  --card-border: 210 70% 42%;
  --border: 210 70% 42%;
  --input: 0 0% 100%;
  --primary: 210 80% 42%;
  --primary-foreground: 0 0% 100%;
  --muted-foreground: 220 20% 28%;
  --ring: 210 70% 42%;
}

/* Card — golden yellow with blue border */
[class*="bg-card"] {
  background-color: hsl(42 90% 52%) !important;
  border-color: hsl(210 70% 42%) !important;
  border-width: 4px !important;
  border-radius: 18px !important;
  backdrop-filter: none !important;
  box-shadow: 0 8px 32px rgba(60,126,196,0.45), inset 0 2px 0 rgba(255,255,255,0.35) !important;
}

/* Card text — dark so it reads on gold */
[class*="bg-card"] * {
  color: hsl(220 25% 12%);
}
[class*="bg-card"] .text-muted-foreground {
  color: hsl(220 20% 30%) !important;
}

/* Inputs — bright white boxes */
[class*="bg-card"] input {
  background-color: #ffffff !important;
  border-color: hsl(210 50% 60%) !important;
  border-radius: 10px !important;
  color: hsl(220 25% 12%) !important;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.12) !important;
}
[class*="bg-card"] input::placeholder {
  color: hsl(220 15% 55%) !important;
}

/* Labels */
[class*="bg-card"] label,
[class*="bg-card"] [class*="uppercase"] {
  color: hsl(220 30% 20%) !important;
}

/* Enlarge Play Now button */
img[src*="play-now-btn"] {
  width: 220px !important;
  max-width: 220px !important;
}

/* Hide server name, version, and description labels */
[class*="text-2xl"][class*="tracking-wide"][class*="drop-shadow"],
[class*="font-mono"][class*="uppercase"][class*="tracking-widest"],
[class*="italic"][class*="mt-1"] {
  display: none !important;
}

/* Card title */
[class*="bg-card"] h1,
[class*="bg-card"] h2,
[class*="bg-card"] [class*="text-2xl"] {
  color: hsl(220 30% 10%) !important;
  text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}
