/*!
 * 제우스벳 — theme.css
 * Design tokens + base layer for the fully data-driven SPA.
 * Dark-gold casino palette, carried over from the previous account/catalog CSS.
 */

:root {
  /* Primary accent — violet (matches reference gdemo16 casino palette).
     The variable names still read "gold" for historical reasons but the
     values are the purple ramp used site-wide. */
  --gold:        #8b5cf6;   /* primary violet */
  --gold-hi:     #a78bfa;   /* light violet */
  --gold-lo:     #6d28d9;   /* deep violet */
  --gold-deep:   #4c1d95;
  --gold-soft:   #dcd2ff;   /* soft lavender text on dark */

  /* Secondary brand colors */
  --blue:        #3b5bdb;   /* login / info button */
  --blue-hi:     #4c6ef5;
  --red:         #dd2146;   /* register / accent button */
  --red-hi:      #f0426a;

  /* Surfaces (deep navy) */
  --bg-0:        #0c141c;
  --bg-1:        #111923;
  --bg-2:        #171f2b;
  --bg-3:        #1e2b3e;
  --surface:     rgba(139, 92, 246, 0.06);
  --surface-2:   rgba(139, 92, 246, 0.10);
  --surface-hi:  rgba(139, 92, 246, 0.16);

  /* Text */
  --text:        #e8ecf3;
  --text-2:      #b8c0cf;
  --text-mut:    #7a8598;
  --text-dim:    #566172;

  /* Lines */
  --line:        rgba(139, 92, 246, 0.14);
  --line-2:      rgba(139, 92, 246, 0.28);

  /* Status */
  --ok:          #51cf66;
  --warn:        #fcc419;
  --danger:      #ff6b6b;
  --info:        #4dabf7;

  /* Effects */
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   18px;
  --shadow:      0 8px 28px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 6px 26px rgba(124, 58, 237, 0.35);
  --grad-gold:   linear-gradient(135deg, #8b5cf6, #5b21b6);
  --grad-blue:   linear-gradient(135deg, #4c6ef5, #3b5bdb);
  --grad-red:    linear-gradient(135deg, #f0426a, #c1173a);
  --grad-panel:  linear-gradient(180deg, rgba(139, 92, 246, 0.08), rgba(10, 14, 22, 0.6));

  --header-h:    64px;
  --maxw:        1280px;
  --font:        "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
                 "Malgun Gothic", "Noto Sans KR", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 12% -12%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(900px 520px at 100% 0%, rgba(59, 91, 219, 0.14), transparent 55%),
    var(--bg-0);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 100, 0.18);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 215, 100, 0.3); }

/* Utility layout */
.dz-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.dz-mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: 0.02em; }
.dz-hidden { display: none !important; }
.dz-spinner {
  width: 34px; height: 34px;
  border: 3px solid rgba(255, 215, 100, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: dz-spin 0.8s linear infinite;
  margin: 30px auto;
}
@keyframes dz-spin { to { transform: rotate(360deg); } }

.dz-section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700; color: var(--gold-soft);
  margin: 26px 0 14px;
}
.dz-section-title .dz-bar {
  width: 4px; height: 20px; border-radius: 3px;
  background: var(--grad-gold);
}
.dz-section-title .dz-more {
  margin-left: auto; font-size: 12px; color: var(--text-mut);
  font-weight: 500; cursor: pointer;
}
.dz-section-title .dz-more:hover { color: var(--gold); }

.dz-empty {
  text-align: center; color: var(--text-dim);
  padding: 40px 12px; font-size: 13px;
}
