/**
 * XZENZY — shared theme (game + dashboard + auth)
 * Fonts: Rajdhani (UI) · Orbitron (headings) · Noto Serif Thai (logo X)
 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Thai:wght@400;700&display=swap');

:root {
  --bg: #06040f;
  --frame: #1e0f3a;
  --surface: #16102a;
  --surface-2: #221538;
  --border: #7b3fb8;
  --border-dim: rgba(123, 63, 184, 0.45);
  --pink: #ff3dff;
  --cyan: #00f0ff;
  --gold: #ffd54f;
  --text: #f8f4ff;
  --muted: #9a8ab8;
  --success: #6ee7b7;
  --font-ui: Rajdhani, system-ui, sans-serif;
  --font-display: Orbitron, sans-serif;
  --font-logo: 'Noto Serif Thai', Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 500;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand-main,
.font-display {
  font-family: var(--font-display);
}

/* Logo — fixed box so spin stays beside brand name (no wobble / drift) */
.brand-logo-orbit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: middle;
  background: none;
  border: none;
  box-shadow: none;
}

.brand-logo-svg {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  background: none;
}

/* Compact logo for nav / game / dashboard headers */
.brand-logo-orbit.sm {
  width: 2rem;
  height: 2rem;
}

.brand-logo-orbit.sm .brand-logo-svg {
  width: 2rem;
  height: 2rem;
  filter:
    drop-shadow(0 0 4px rgba(255, 213, 79, 0.65))
    drop-shadow(0 0 6px rgba(255, 61, 255, 0.45));
}

.brand-lockup .brand-logo-orbit {
  width: 3rem;
  height: 3rem;
}

.brand-lockup .brand-logo-svg {
  width: 3rem;
  height: 3rem;
  filter:
    drop-shadow(0 0 6px rgba(255, 213, 79, 0.8))
    drop-shadow(0 0 10px rgba(255, 61, 255, 0.6));
}

/* Rotation is inside logo-x.svg / favicon.svg (center pivot, ~14s) */

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

