/* ============================================
   POKER CHIPS - PREMIUM CASINO THEME
   Luxury casino aesthetics with modern glass UI
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Backgrounds - Deep Casino */
  --bg-deep: #0d0705;
  --bg-dark: #1a0f0a;
  --bg-warm: #2d1810;
  --bg-card: rgba(45, 24, 16, 0.85);

  /* Accents - Luxury Gold */
  --gold-primary: #d4a056;
  --gold-light: #f4d03f;
  --gold-amber: #c9956c;
  --gold-brass: #8b6914;

  /* Poker Felt */
  --felt-green: #1a4d2e;
  --felt-deep: #0d3320;
  --felt-light: #245c3a;

  /* Glass Elements */
  --glass-gold: rgba(212,160,86,0.12);
  --glass-white: rgba(255,255,255,0.06);
  --glass-border: rgba(212,160,86,0.25);

  /* Action Colors */
  --color-fold: #c73e3a;
  --color-call: #2d8a4e;
  --color-raise: #4a7fb5;

  /* Text */
  --text-primary: #f5efe6;
  --text-secondary: rgba(245,239,230,0.65);
  --text-muted: rgba(245,239,230,0.4);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(212,160,86,0.3);
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================
   BACKGROUND - Calm, minimal
   ============================================ */

.bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.bg-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,86,0.08) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.bg-glow-2 {
  display: none;
}

/* Hide animated elements */
.bg-pattern,
.floating-chips,
.floating-chip {
  display: none;
}

/* Container */
.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 1rem;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* ============================================
   HOME SCREEN
   ============================================ */

.home-screen {
  padding-top: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 2rem);
}

/* Logo Container */
.logo-container {
  margin-bottom: 0.25rem;
}

.logo-chips {
  display: none;
}

.chip-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  opacity: 0.85;
}

.chip-red {
  transform: rotate(-12deg) translateY(3px);
}

.chip-gold {
  z-index: 2;
}

.chip-green {
  transform: rotate(12deg) translateY(3px);
}

.logo-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: -0.01em;
}

.logo-shine {
  display: none;
}

.subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Main Card - Enhanced Liquid Glass */
.main-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(26,15,10,0.95) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  overflow: hidden;
  flex: 1;
}

/* Tabs */
.tabs {
  display: flex;
  background: rgba(0,0,0,0.4);
  padding: 0.5rem;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(212,160,86,0.1);
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: #b0a898;
  background: rgba(180, 175, 165, 0.1);
  border-color: rgba(180, 175, 165, 0.2);
}

.tab-btn.active {
  background: rgba(190, 150, 80, 0.2);
  border: 1px solid rgba(190, 150, 80, 0.4);
  color: #d4b068;
}

.tab-icon {
  opacity: 0.5;
  width: 20px;
  height: 20px;
}

.tab-btn:hover .tab-icon {
  opacity: 0.8;
}

.tab-btn.active .tab-icon {
  opacity: 1;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 1.5rem;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form Elements */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-amber);
  margin-bottom: 0.625rem;
  letter-spacing: 0.02em;
}

.input-icon {
  opacity: 0.7;
  color: var(--gold-primary);
}

.form-group input {
  width: 100%;
  padding: 1rem 1.125rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 100%);
  border: 1px solid rgba(212,160,86,0.2);
  border-radius: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.form-group input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.form-group input:hover {
  border-color: rgba(212,160,86,0.4);
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 100%);
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.45) 100%);
  box-shadow: 0 0 0 3px rgba(212,160,86,0.12), inset 0 2px 4px rgba(0,0,0,0.2), 0 0 20px rgba(212,160,86,0.1);
}

/* Input with prefix/suffix */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix,
.input-suffix {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  pointer-events: none;
  z-index: 1;
}

.input-prefix {
  left: 1.125rem;
  color: var(--gold-primary);
  font-size: 1rem;
}

.input-suffix {
  right: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-with-icon input.has-prefix {
  padding-left: 2.25rem;
}

.input-with-icon input.has-suffix {
  padding-right: 4rem;
}

/* Code input */
.input-code {
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 1.25rem !important;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
}

/* Form Section */
.form-section {
  background: linear-gradient(180deg, rgba(212,160,86,0.1) 0%, rgba(212,160,86,0.03) 100%);
  border-radius: 18px;
  padding: 1.375rem;
  margin-bottom: 1.375rem;
  border: 1px solid rgba(212,160,86,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 1.125rem;
  letter-spacing: 0.01em;
}

.section-icon {
  opacity: 0.8;
  color: var(--gold-amber);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group.half {
  flex: 1;
  margin-bottom: 0;
}

/* Collapsible settings */
.settings-details {
  margin-bottom: 1.25rem;
}

.settings-toggle {
  display: block;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  list-style: none;
}

.settings-toggle::-webkit-details-marker {
  display: none;
}

.settings-toggle::before {
  content: '+ ';
  opacity: 0.5;
}

.settings-details[open] .settings-toggle::before {
  content: '− ';
}

.settings-toggle:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
}

.settings-content {
  padding: 1rem;
  margin-top: 0.5rem;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.settings-content .form-row {
  margin-bottom: 0.75rem;
}

.settings-content .form-row:last-child {
  margin-bottom: 0;
}

/* Buy-in Preview */
.buy-in-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(180deg, rgba(26,77,46,0.4) 0%, rgba(13,51,32,0.25) 100%);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-top: 1.125rem;
  border: 1px solid rgba(45,138,78,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.preview-icon {
  color: #4ade80;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.preview-text {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  width: 100%;
  background: rgba(76, 140, 95, 0.25);
  border: 1px solid rgba(76, 140, 95, 0.5);
  color: #6db583;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1.125rem 1.5rem;
  box-shadow: none;
}

.btn-primary:hover:not(:disabled) {
  background: rgba(76, 140, 95, 0.35);
  border-color: rgba(76, 140, 95, 0.7);
  transform: translateY(-1px);
}

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

/* Removed glow effect for calmer UI */

.btn-text {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Footer */
.home-footer {
  padding: 1.75rem;
  text-align: center;
}

.home-footer p {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================
   GAME SCREEN HEADER
   ============================================ */

.game-screen {
  padding-top: 0;
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
  margin: 0 -1rem;
  margin-bottom: 0.5rem;
  gap: 0.75rem;
}

/* Menu Button */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,160,86,0.25);
  border-radius: 12px;
  color: var(--gold-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.menu-btn:hover {
  background: rgba(212,160,86,0.15);
  border-color: var(--gold-primary);
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Slide-out Menu Panel */
.menu-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-dark) 100%);
  border-left: 1px solid rgba(212,160,86,0.3);
  box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.menu-panel.open {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(212,160,86,0.2);
}

.menu-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin: 0;
}

.menu-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-close-btn:hover {
  background: rgba(199,62,58,0.2);
  border-color: rgba(199,62,58,0.4);
  color: var(--color-fold);
}

.menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.menu-section {
  background: rgba(0,0,0,0.25);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.menu-section h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-amber);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-section p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}

.menu-admin-section {
  background: linear-gradient(180deg, rgba(199,62,58,0.1) 0%, rgba(0,0,0,0.25) 100%);
  border-color: rgba(199,62,58,0.2);
}

.menu-admin-section .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.menu-admin-section .kick-player {
  display: flex;
  gap: 0.5rem;
}

.menu-admin-section .kick-player select {
  flex: 1;
}

.room-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.room-code {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(212,160,86,0.15);
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  letter-spacing: 0.05em;
}

.blinds-info {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.hand-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#hand-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.state-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.state-badge.active {
  background: linear-gradient(135deg, var(--felt-green), var(--felt-deep));
  border-color: rgba(45,138,78,0.4);
  color: white;
  box-shadow: 0 2px 12px rgba(26,77,46,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Showdown state - gold highlight */
.state-badge.showdown {
  background: linear-gradient(135deg, rgba(212,160,86,0.8), rgba(139,105,20,0.9));
  border-color: rgba(212,160,86,0.6);
  color: white;
  box-shadow: 0 2px 12px rgba(212,160,86,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Buy-in Banner */
.buy-in-banner {
  background: linear-gradient(90deg, rgba(26,77,46,0.25) 0%, rgba(212,160,86,0.15) 50%, rgba(26,77,46,0.25) 100%);
  padding: 0.75rem 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-amber);
  border-bottom: 1px solid rgba(212,160,86,0.15);
  margin: 0 -1rem;
  letter-spacing: 0.02em;
}

/* ============================================
   POT DISPLAY
   ============================================ */

.pot-display {
  background: linear-gradient(180deg, rgba(30,82,50,0.6) 0%, rgba(20,60,38,0.5) 100%);
  border-radius: 20px;
  padding: 1.75rem 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(60,120,75,0.35);
  border-top: 1px solid rgba(80,140,90,0.4);
  position: relative;
  text-align: center;
  overflow: hidden;
  /* Subtle felt texture with glow */
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(80,140,90,0.2) 0%, transparent 50%),
    linear-gradient(180deg, rgba(30,82,50,0.6) 0%, rgba(20,60,38,0.5) 100%);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -2px 8px rgba(0,0,0,0.2);
}

.pot-display::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 90px;
  border: 1px solid rgba(80,140,90,0.25);
  border-radius: 50%;
  pointer-events: none;
}

/* Sponsor logos - woven into felt look */
.sponsor-logo {
  position: absolute;
  bottom: 0.5rem;
  object-fit: contain;
  opacity: 0.25;
  /* Green tint to match felt - like printed on the fabric */
  filter: brightness(0) invert(48%) sepia(15%) saturate(500%) hue-rotate(90deg) brightness(1.1);
  pointer-events: none;
}

/* Guinness logo - larger because it has detailed text */
.sponsor-left {
  left: 0.75rem;
  width: 75px !important;
  height: 38px !important;
  max-width: 75px !important;
  max-height: 38px !important;
}

/* Asahi logo - proportional to Guinness */
.sponsor-right {
  right: 0.75rem;
  width: 65px !important;
  height: 26px !important;
  max-width: 65px !important;
  max-height: 26px !important;
}

.pot-amount {
  position: relative;
  z-index: 2;
}

.pot-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(150,180,160,0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.pot-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(212,160,86,0.4);
}

.current-bet {
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.bet-label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(150,180,160,0.6);
  margin-right: 0.375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#current-bet-value {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(180,200,185,0.8);
}

/* ============================================
   PLAYERS LIST
   ============================================ */

.players-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.player-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.player-card:hover {
  border-color: rgba(212,160,86,0.25);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.player-card.current-turn {
  background: linear-gradient(135deg, rgba(212,160,86,0.2) 0%, rgba(212,160,86,0.08) 100%);
  border-color: rgba(212,160,86,0.5);
  border-top: 1px solid rgba(212,160,86,0.6);
  border-left: 1px solid rgba(212,160,86,0.5);
  box-shadow: 0 0 30px rgba(212,160,86,0.25), 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {
  0%, 100% {
    box-shadow: 0 0 30px rgba(212,160,86,0.25), 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  }
  50% {
    box-shadow: 0 0 45px rgba(212,160,86,0.4), 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  }
}

/* All-in player card */
.player-card.all-in {
  background: linear-gradient(135deg, rgba(212,160,86,0.12) 0%, rgba(212,160,86,0.04) 100%);
  border-color: rgba(212,160,86,0.3);
}

.player-card.folded {
  opacity: 0.4;
}

.player-card.is-you {
  border-left: 3px solid var(--gold-primary);
}

.player-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.player-badges {
  display: flex;
  gap: 0.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.badge-dealer {
  background: linear-gradient(180deg, #f4d03f 0%, #d4a056 50%, #8b6914 100%);
  color: #1a0f0a;
  box-shadow: 0 2px 8px rgba(212,160,86,0.5), 0 0 16px rgba(212,160,86,0.3);
  text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}

.badge-sb {
  background: linear-gradient(180deg, rgba(74,127,181,0.7), rgba(58,100,145,0.8));
  border: 1px solid rgba(74,127,181,0.5);
  color: white;
  box-shadow: 0 2px 6px rgba(74,127,181,0.35);
}

.badge-bb {
  background: linear-gradient(180deg, rgba(199,62,58,0.7), rgba(160,50,47,0.8));
  border: 1px solid rgba(199,62,58,0.5);
  color: white;
  box-shadow: 0 2px 6px rgba(199,62,58,0.35);
}

.player-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.player-status {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* All-In status - highlighted */
.player-card.all-in .player-status,
.player-status.all-in {
  color: var(--gold-primary);
  text-shadow: 0 0 8px rgba(212,160,86,0.5);
}

/* Folded status */
.player-card.folded .player-status {
  color: rgba(199,62,58,0.7);
}

/* Current turn status */
.player-card.current-turn .player-status {
  color: #4ade80;
}

.player-chips-info {
  text-align: right;
}

.player-chips {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.player-bet {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-amber);
}

/* ============================================
   ACTION PANEL
   ============================================ */

.action-panel {
  background: linear-gradient(180deg, rgba(212,160,86,0.08) 0%, transparent 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px 24px 0 0;
  padding: 1.25rem;
  margin: 0 -1rem;
  margin-bottom: -1rem;
  border-top: 1px solid rgba(212,160,86,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.your-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(212,160,86,0.15);
}

.your-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.your-chips {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold-primary);
}

/* Action Buttons Grid */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}

.action-buttons .btn {
  flex: 1;
  min-width: calc(33% - 0.5rem);
  padding: 1rem 0.75rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Chip-style buttons - background and text same color family */

/* Fold Button - Red family */
.btn-fold {
  background: rgba(185, 75, 70, 0.2);
  border: 1px solid rgba(185, 75, 70, 0.4);
  color: #d4736f;
  box-shadow: none;
}

.btn-fold:hover:not(:disabled) {
  background: rgba(185, 75, 70, 0.3);
  border-color: rgba(185, 75, 70, 0.6);
  transform: translateY(-1px);
}

/* Check Button - Neutral/gray family */
.btn-check {
  background: rgba(180, 175, 165, 0.15);
  border: 1px solid rgba(180, 175, 165, 0.3);
  color: #b0a898;
}

.btn-check:hover:not(:disabled) {
  background: rgba(180, 175, 165, 0.25);
  border-color: rgba(180, 175, 165, 0.5);
  transform: translateY(-1px);
}

/* Call Button - Green family */
.btn-call {
  background: rgba(76, 140, 95, 0.2);
  border: 1px solid rgba(76, 140, 95, 0.4);
  color: #6db583;
  box-shadow: none;
}

.btn-call:hover:not(:disabled) {
  background: rgba(76, 140, 95, 0.3);
  border-color: rgba(76, 140, 95, 0.6);
  transform: translateY(-1px);
}

/* Raise Button - Blue family */
.btn-raise {
  background: rgba(85, 130, 175, 0.2);
  border: 1px solid rgba(85, 130, 175, 0.4);
  color: #7aade0;
  box-shadow: none;
}

.btn-raise:hover:not(:disabled) {
  background: rgba(85, 130, 175, 0.3);
  border-color: rgba(85, 130, 175, 0.6);
  transform: translateY(-1px);
}

/* All-In Button - Gold/amber family */
.btn-allin {
  flex: 2;
  min-width: calc(66% - 0.25rem);
  background: rgba(190, 150, 80, 0.2);
  border: 1px solid rgba(190, 150, 80, 0.4);
  color: #d4b068;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
}

.btn-allin:hover:not(:disabled) {
  background: rgba(190, 150, 80, 0.3);
  border-color: rgba(190, 150, 80, 0.6);
  transform: translateY(-1px);
}

/* ============================================
   RAISE CONTROLS
   ============================================ */

.raise-controls {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,160,86,0.15);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.raise-presets {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.raise-preset-btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  background: rgba(180, 175, 165, 0.1);
  border: 1px solid rgba(180, 175, 165, 0.25);
  border-radius: 10px;
  color: #a09888;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.raise-preset-btn:hover {
  background: rgba(190, 150, 80, 0.15);
  border-color: rgba(190, 150, 80, 0.4);
  color: #d4b068;
}

.raise-preset-btn.active {
  background: rgba(190, 150, 80, 0.2);
  border-color: rgba(190, 150, 80, 0.5);
  color: #d4b068;
}

#raise-slider {
  width: 100%;
  margin-bottom: 1rem;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: linear-gradient(90deg, var(--felt-deep), var(--gold-brass));
  border-radius: 4px;
  outline: none;
}

#raise-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-brass));
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 0 0 3px rgba(212,160,86,0.2);
  transition: transform 0.2s ease;
}

#raise-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.raise-amount-display {
  display: flex;
  gap: 0.5rem;
}

.raise-amount-display input {
  flex: 1;
  padding: 0.875rem 1rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(212,160,86,0.3);
  border-radius: 12px;
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.btn-confirm-raise {
  background: rgba(76, 140, 95, 0.25);
  border: 1px solid rgba(76, 140, 95, 0.5);
  color: #6db583;
}

.btn-confirm-raise:hover:not(:disabled) {
  background: rgba(76, 140, 95, 0.35);
  border-color: rgba(76, 140, 95, 0.7);
}

.btn-cancel-raise {
  background: rgba(180, 175, 165, 0.15);
  border: 1px solid rgba(180, 175, 165, 0.3);
  color: #b0a898;
}

.btn-cancel-raise:hover:not(:disabled) {
  background: rgba(180, 175, 165, 0.25);
  border-color: rgba(180, 175, 165, 0.5);
}

/* ============================================
   DEALER CONTROLS
   ============================================ */

.dealer-controls {
  margin-top: 1rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}

.dealer-controls .btn {
  width: 100%;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.dealer-controls .btn:last-child {
  margin-bottom: 0;
}

.btn-start {
  background: rgba(76, 140, 95, 0.25);
  border: 1px solid rgba(76, 140, 95, 0.5);
  color: #6db583;
}

.btn-start:hover:not(:disabled) {
  background: rgba(76, 140, 95, 0.35);
  border-color: rgba(76, 140, 95, 0.7);
  transform: translateY(-1px);
}

.btn-next-round {
  background: rgba(85, 130, 175, 0.25);
  border: 1px solid rgba(85, 130, 175, 0.5);
  color: #7aade0;
}

.btn-next-round:hover:not(:disabled) {
  background: rgba(85, 130, 175, 0.35);
  border-color: rgba(85, 130, 175, 0.7);
  transform: translateY(-1px);
}

.winner-select {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.winner-select label {
  font-family: var(--font-display);
  color: var(--gold-amber);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.winner-select select {
  padding: 0.875rem 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 100%);
  border: 1px solid rgba(212,160,86,0.3);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.winner-select select:hover {
  border-color: rgba(212,160,86,0.5);
}

.winner-select select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212,160,86,0.12);
}

.btn-end-hand {
  background: rgba(190, 150, 80, 0.25);
  border: 1px solid rgba(190, 150, 80, 0.5);
  color: #d4b068;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-end-hand:hover:not(:disabled) {
  background: rgba(190, 150, 80, 0.35);
  border-color: rgba(190, 150, 80, 0.7);
  transform: translateY(-1px);
}

/* ============================================
   ADMIN CONTROLS
   ============================================ */

.admin-controls {
  margin-top: 1rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(199,62,58,0.1) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(199,62,58,0.25);
}

.admin-section {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.kick-player {
  display: flex;
  gap: 0.5rem;
}

.kick-player select {
  flex: 1;
  padding: 0.875rem 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 100%);
  border: 1px solid rgba(212,160,86,0.3);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.kick-player select:hover {
  border-color: rgba(212,160,86,0.5);
}

.kick-player select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212,160,86,0.12);
}

.btn-danger {
  background: rgba(185, 75, 70, 0.25);
  border: 1px solid rgba(185, 75, 70, 0.5);
  color: #d4736f;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.btn-danger:hover:not(:disabled) {
  background: rgba(185, 75, 70, 0.35);
  border-color: rgba(185, 75, 70, 0.7);
  transform: translateY(-1px);
}

.btn-warning {
  background: rgba(190, 150, 80, 0.25);
  border: 1px solid rgba(190, 150, 80, 0.5);
  color: #d4b068;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.btn-warning:hover:not(:disabled) {
  background: rgba(190, 150, 80, 0.35);
  border-color: rgba(190, 150, 80, 0.7);
  transform: translateY(-1px);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.toast {
  background: linear-gradient(180deg, rgba(45,24,16,0.98) 0%, rgba(26,15,10,0.99) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,160,86,0.3);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  animation: toastIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 340px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-lg);
}

.toast.success {
  border-color: rgba(45,138,78,0.5);
  background: linear-gradient(180deg, rgba(45,138,78,0.2) 0%, rgba(26,15,10,0.98) 100%);
}

.toast.error {
  border-color: rgba(199,62,58,0.5);
  background: linear-gradient(180deg, rgba(199,62,58,0.2) 0%, rgba(26,15,10,0.98) 100%);
}

.toast.info {
  border-color: rgba(74,127,181,0.5);
  background: linear-gradient(180deg, rgba(74,127,181,0.2) 0%, rgba(26,15,10,0.98) 100%);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   END GAME MODAL
   ============================================ */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 2000;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-dark) 100%);
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(212,160,86,0.25);
  border-top: 1px solid rgba(212,160,86,0.4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 60px rgba(212,160,86,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(212,160,86,0.15);
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-primary);
  text-align: center;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(212,160,86,0.15);
}

.modal-footer .btn {
  width: 100%;
}

.summary-info {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 100%);
  padding: 1.125rem 1.25rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212,160,86,0.15);
}

.summary-info p {
  margin-bottom: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.summary-info p strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-amber);
}

.summary-info p:last-child {
  margin-bottom: 0;
}

/* Results Table */
.results-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.results-table th,
.results-table td {
  padding: 0.75rem 0.5rem;
  text-align: left;
}

.results-table th {
  font-family: var(--font-display);
  color: var(--gold-amber);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(212,160,86,0.25);
}

.results-table td {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.results-table tr:first-child td {
  background: linear-gradient(90deg, rgba(212,160,86,0.15) 0%, transparent 100%);
}

.results-table td.profit {
  color: #4ade80;
  font-weight: 700;
}

.results-table td.loss {
  color: #f87171;
  font-weight: 700;
}

/* Transfers Section */
.transfers-section {
  background: linear-gradient(180deg, rgba(74,127,181,0.15) 0%, transparent 100%);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(74,127,181,0.25);
}

.transfers-section h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-raise);
  margin-bottom: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.transfers-section ul {
  list-style: none;
}

.transfers-section li {
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9375rem;
}

.transfers-section li:last-child {
  border-bottom: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 380px) {
  .action-buttons .btn {
    min-width: calc(50% - 0.375rem);
  }

  .btn-allin {
    min-width: 100%;
  }

  .pot-value {
    font-size: 2.5rem;
  }

  .logo-title {
    font-size: 2.25rem;
  }

  .chip-icon.chip-gold {
    width: 52px;
    height: 52px;
  }

  .chip-icon.chip-red,
  .chip-icon.chip-green {
    width: 40px;
    height: 40px;
  }
}

/* Focus states for accessibility */
.btn:focus-visible,
.tab-btn:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: rgba(212,160,86,0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212,160,86,0.5);
}

/* Selection */
::selection {
  background: rgba(212,160,86,0.3);
  color: var(--text-primary);
}

/* ============================================
   BLIND PRESETS
   ============================================ */

.blind-presets {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.blind-preset-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  background: rgba(180, 175, 165, 0.1);
  border: 1px solid rgba(180, 175, 165, 0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blind-preset-btn:hover {
  background: rgba(190, 150, 80, 0.15);
  border-color: rgba(190, 150, 80, 0.4);
}

.blind-preset-btn.active {
  background: rgba(190, 150, 80, 0.2);
  border-color: rgba(190, 150, 80, 0.5);
}

.preset-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.blind-preset-btn.active .preset-label {
  color: var(--gold-light);
}

.preset-blinds {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.blind-preset-btn.active .preset-blinds {
  color: var(--gold-primary);
  text-shadow: 0 0 12px rgba(212,160,86,0.3);
}

.preset-bb {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.blind-preset-btn.active .preset-bb {
  color: var(--gold-amber);
}

/* Big Blind Display */
.bb-display {
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

/* Blind Info */
.blind-info {
  background: linear-gradient(180deg, rgba(74,127,181,0.15) 0%, rgba(74,127,181,0.05) 100%);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-top: 0.75rem;
  border: 1px solid rgba(74,127,181,0.2);
  text-align: center;
}

.blind-info-text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.blind-info-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
}

.blind-info-text.level-deep {
  color: var(--color-call);
}

.blind-info-text.level-deep strong {
  color: #4ade80;
}

.blind-info-text.level-normal {
  color: var(--color-raise);
}

.blind-info-text.level-normal strong {
  color: #60a5fa;
}

.blind-info-text.level-turbo {
  color: var(--gold-amber);
}

.blind-info-text.level-turbo strong {
  color: var(--gold-primary);
}

.blind-info-text.level-hyper {
  color: var(--color-fold);
}

.blind-info-text.level-hyper strong {
  color: #f87171;
}
