@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cinzel:wght@600;700;900&family=Exo+2:wght@400;600;700;800&display=swap";
/* [project]/styles/globals.css [app-client] (css) */
:root {
  --bg-deep: #050d18;
  --bg-dark: #071220;
  --bg-mid: #0a1a2e;
  --bg-panel: #0d2040;
  --ice: #38bdf8;
  --ice-bright: #7dd3fc;
  --ice-dim: #38bdf81f;
  --ice-border: #38bdf838;
  --ice-glow: #38bdf859;
  --cyan: #00d4ff;
  --cyan-dim: #00d4ff1a;
  --gold: #e9c46a;
  --gold-dim: #e9c46a26;
  --text-primary: #f0f8ff;
  --text-secondary: #94b8d0;
  --text-muted: #5b7a94;
  --glass-bg: #0a1a2ebf;
  --glass-border: #38bdf82e;
  --glass-hover: #38bdf847;
  --glass-blur: blur(18px);
  --rarity-mythic: gold;
  --rarity-legendary: #c084fc;
  --rarity-epic: #38bdf8;
  --rarity-rare: #34d399;
  --rarity-uncommon: #94a3b8;
  --rarity-common: #64748b;
  --accent: var(--ice);
  --accent-dim: var(--ice-dim);
  --border: var(--glass-border);
  --border-hover: var(--glass-hover);
}

*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(80% 50% at 50% -20%, #38bdf82e 0%, #0000 70%), radial-gradient(60% 40% at 80% 80%, #0c4a6e4d 0%, #0000 60%), linear-gradient(#050d18 0%, #071626 40%, #030c18 100%);
  background-attachment: fixed;
  min-height: 100vh;
  font-family: Inter, "Exo 2", sans-serif;
  overflow-x: hidden;
}

body:before {
  content: "";
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle at 20% 20%, #38bdf80f 0%, #0000 40%), radial-gradient(circle at 80% 70%, #00d4ff0a 0%, #0000 40%);
  position: fixed;
  inset: 0;
}

h1, h2, h3, h4, .font-display {
  font-family: Cinzel, serif;
}

.font-body {
  font-family: Inter, sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--ice-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ice);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.glass-card {
  background: #071220eb;
  border: 1px solid #38bdf82e;
  border-radius: 16px;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--glass-hover);
  box-shadow: 0 0 32px #38bdf81f, 0 8px 32px #0006;
}

.site-header {
  z-index: 200;
  -webkit-backdrop-filter: blur(20px);
  background: #050d18e0;
  border-bottom: 1px solid #38bdf826;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 20px #0006, 0 0 40px #38bdf80a;
}

.btn-primary {
  border: 1px solid var(--ice);
  color: var(--ice-bright);
  letter-spacing: .08em;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: 0 0 12px #38bdf899;
  background: linear-gradient(135deg, #38bdf833 0%, #00d4ff1f 100%);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: Cinzel, serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all .22s;
  display: inline-flex;
  box-shadow: 0 0 20px #38bdf826, inset 0 1px #ffffff14;
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #38bdf859 0%, #00d4ff40 100%);
  transform: translateY(-1px);
  box-shadow: 0 0 40px #38bdf859, inset 0 1px #ffffff1f;
}

.btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

@keyframes ice-pulse {
  0%, 100% {
    box-shadow: 0 0 20px #38bdf833, inset 0 1px #ffffff14;
  }

  50% {
    box-shadow: 0 0 40px #38bdf873, 0 0 60px #38bdf826, inset 0 1px #ffffff1a;
  }
}

.anim-pulse-glow {
  animation: 2.5s ease-in-out infinite ice-pulse;
}

.wheel-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.wheel-outer-ring {
  pointer-events: none;
  border: 3px solid #38bdf880;
  border-radius: 50%;
  position: absolute;
  inset: -3px;
  box-shadow: 0 0 24px #38bdf847, inset 0 0 16px #38bdf80d;
}

.wheel-canvas {
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 40px #38bdf82e, 0 0 80px #38bdf812;
}

.wheel-pointer {
  z-index: 10;
  filter: drop-shadow(0 0 8px #38bdf8cc);
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.history-ticker {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.modal-overlay {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 400;
  background: #050d18d9;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal-card {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  text-align: center;
  background: #0a1a2ef2;
  border-radius: 24px;
  width: 90%;
  max-width: 440px;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 0 0 1px #38bdf814, 0 24px 64px #0009, 0 0 80px #38bdf81a;
}

.modal-card:before {
  content: "";
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(135deg, #38bdf81f, #0000 50%, #00d4ff0f);
  border-radius: 24px;
  position: absolute;
  inset: -1px;
}

.rarity-badge {
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 20px;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: .68rem;
  font-weight: 700;
  display: inline-flex;
}

.item-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-align: center;
  border-radius: 14px;
  padding: 14px 10px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.item-card:after {
  content: "";
  background: linear-gradient(90deg, #0000, #38bdf866, #0000);
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.item-card:hover {
  border-color: var(--ice-border);
  transform: translateY(-4px)scale(1.02);
  box-shadow: 0 12px 32px #00000080, 0 0 20px #38bdf826;
}

.multi-btn {
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  cursor: pointer;
  background: #38bdf80f;
  border-radius: 8px;
  padding: 5px 12px;
  font-family: Inter, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  transition: all .15s;
}

.multi-btn:hover:not(:disabled) {
  border-color: var(--ice);
  color: var(--ice);
  background: var(--ice-dim);
}

.multi-btn.active {
  background: var(--ice);
  border-color: var(--ice);
  color: #050d18;
  box-shadow: 0 0 14px #38bdf866;
}

.ice-divider {
  background: linear-gradient(90deg, transparent, var(--ice-border), transparent);
  height: 1px;
  margin: 8px 0;
}

.section-title {
  color: var(--gold);
  letter-spacing: .06em;
  text-shadow: 0 0 30px #e9c46a66;
  font-family: Cinzel, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

@keyframes shimmer {
  0% {
    background-position: -200%;
  }

  100% {
    background-position: 200%;
  }
}

.shimmer {
  background: linear-gradient(90deg, #0000 0%, #38bdf826 50%, #0000 100%) 0 0 / 200%;
  animation: 2s linear infinite shimmer;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.anim-float {
  animation: 4s ease-in-out infinite float;
}

.glow-ice {
  text-shadow: 0 0 20px #38bdf8b3, 0 0 40px #38bdf84d;
}

.glow-gold {
  text-shadow: 0 0 20px #e9c46ab3, 0 0 40px #e9c46a4d;
}

.btn-stop {
  color: #fca5a5;
  letter-spacing: .06em;
  cursor: pointer;
  background: linear-gradient(135deg, #ef444440 0%, #dc262626 100%);
  border: 1px solid #ef444480;
  border-radius: 12px;
  padding: 13px 28px;
  font-family: Cinzel, serif;
  font-size: .95rem;
  font-weight: 800;
  transition: all .2s;
}

.btn-stop:hover {
  background: linear-gradient(135deg, #ef444466 0%, #dc26264d 100%);
  box-shadow: 0 0 20px #ef44444d;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.3rem;
  }

  .glass-card {
    border-radius: 12px;
  }
}

.roulette-layout {
  grid-template-columns: 1fr 320px;
  align-items: start;
  gap: 40px;
  display: grid;
}

.roulette-layout.has-history {
  grid-template-columns: 300px 1fr 300px;
}

.roulette-sidebar {
  flex-direction: column;
  gap: 16px;
  width: 100%;
  display: flex;
}

.roulette-center {
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  display: flex;
}

@media (max-width: 1250px) {
  .roulette-layout.has-history {
    grid-template-columns: 1fr 300px;
  }

  .roulette-layout.has-history > .roulette-sidebar:first-child {
    flex-flow: wrap;
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .roulette-layout, .roulette-layout.has-history {
    grid-template-columns: 1fr;
  }

  .roulette-sidebar {
    order: 3;
    align-items: center;
  }

  .roulette-center {
    order: 1;
  }

  .roulette-layout.has-history > .roulette-sidebar:first-child {
    order: 2;
  }
}

/*# sourceMappingURL=styles_globals_9fb35f7d.css.map*/