/* ==========================================================================
   새마을 로또 (Saemaeul Lotto) - Premium Gold & Dark Casino Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Noto+Sans+KR:wght@400;500;700;800;900&display=swap');

:root {
  /* Color Palette */
  --bg-main: #0a0e1a;
  --bg-card: rgba(21, 28, 48, 0.75);
  --bg-card-hover: rgba(28, 38, 64, 0.85);
  --bg-glass: rgba(16, 23, 40, 0.65);
  --border-color: rgba(212, 175, 55, 0.2);
  --border-glow: rgba(212, 175, 55, 0.5);

  /* Gold & Accent Colors */
  --gold-100: #fff6d6;
  --gold-300: #ffd768;
  --gold-500: #e5a91e;
  --gold-700: #b37e0c;
  --gold-gradient: linear-gradient(135deg, #fff3b0 0%, #ffd700 45%, #d4af37 70%, #aa820a 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(212, 175, 55, 0.05));
  --gold-glow: 0 0 25px rgba(255, 215, 0, 0.35);

  --emerald-500: #10b981;
  --emerald-glow: 0 0 20px rgba(16, 185, 129, 0.4);
  --ruby-500: #ef4444;
  --ruby-glow: 0 0 20px rgba(239, 68, 68, 0.4);
  --cyan-500: #06b6d4;
  --purple-500: #8b5cf6;

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #ffd700;

  /* Typography */
  --font-family: 'Outfit', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-primary);
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.5;
}

/* ================= Container ================= */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem 1rem;
}

/* ================= Header ================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--gold-glow);
  animation: pulse-glow 3s infinite alternate;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-header {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.btn-header:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
  border-color: var(--gold-500);
}

/* ================= Banner & Jackpot Hero ================= */
.hero-section {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.round-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  color: var(--gold-300);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.jackpot-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.jackpot-amount-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.jackpot-amount {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.3));
  letter-spacing: -1px;
}

.jackpot-unit {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-300);
}

.jackpot-breakdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.breakdown-item span.val {
  color: var(--text-primary);
  font-weight: 700;
  margin-left: 0.25rem;
}

/* ================= Recent Winning Card ================= */
.recent-win-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-card);
}

.card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-title .icon {
  font-size: 1.25rem;
}

.recent-balls-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
}

/* Lotto Ball 3D Design */
.lotto-ball {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  position: relative;
  box-shadow: 
    inset -5px -5px 10px rgba(0, 0, 0, 0.6),
    inset 5px 5px 10px rgba(255, 255, 255, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.5);
  animation: float-ball 4s ease-in-out infinite alternate;
}

.lotto-ball::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 20%;
  width: 25%;
  height: 25%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(1px);
}

.ball-gold {
  background: radial-gradient(circle at 35% 35%, #ffd700 0%, #d4af37 60%, #855f00 100%);
  box-shadow: var(--gold-glow);
}
.ball-ruby {
  background: radial-gradient(circle at 35% 35%, #ff6b6b 0%, #e03131 60%, #7d0a0a 100%);
  box-shadow: var(--ruby-glow);
}
.ball-emerald {
  background: radial-gradient(circle at 35% 35%, #38d9a9 0%, #0ca678 60%, #084834 100%);
  box-shadow: var(--emerald-glow);
}
.ball-purple {
  background: radial-gradient(circle at 35% 35%, #b197fc 0%, #7950f2 60%, #3e1b9b 100%);
}

.recent-win-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.stat-col .stat-lbl {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}

.stat-col .stat-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-col .stat-val.gold {
  color: var(--gold-300);
}

/* ================= Guide & Notice Box ================= */
.guide-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(16, 23, 40, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--gold-300);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.guide-list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.4;
}

.guide-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: bold;
}

.guide-list strong {
  color: var(--text-primary);
}

.code-cmd {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  color: var(--gold-300);
  font-family: monospace;
  font-weight: 700;
}

/* ================= Buy Ticket Form ================= */
.buy-section {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.input-styled {
  width: 100%;
  background: rgba(10, 14, 26, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-family);
  transition: var(--transition-fast);
}

.input-styled:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  background: rgba(10, 14, 26, 0.95);
}

.count-picker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-counter {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-counter:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-500);
  color: var(--gold-300);
}

.quick-counts {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.btn-quick {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-quick:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
  border-color: var(--gold-500);
}

.summary-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border: 1px dashed rgba(212, 175, 55, 0.3);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.summary-row:last-child {
  margin-bottom: 0;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.summary-row .val-gold {
  color: var(--gold-300);
  font-weight: 800;
}

.btn-submit-main {
  width: 100%;
  background: var(--gold-gradient);
  color: #1a1200;
  border: none;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 175, 55, 0.6);
}

.btn-submit-main:active {
  transform: translateY(0);
}

/* ================= Action Buttons Row ================= */
.actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-card-action {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-card-action:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.action-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.action-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.action-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ================= Modal ================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #111728;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), var(--gold-glow);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-300);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0.25rem;
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* ================= Tickets Grid & Mini Balls ================= */
.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.ticket-item-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.ticket-item-card.is-winner {
  border-color: var(--gold-500);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.mini-balls-wrap {
  display: flex;
  gap: 0.4rem;
}

.mini-ball {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd700 0%, #b37e0c 100%);
  color: #111;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.status-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-pending {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
  border: 1px solid rgba(234, 179, 8, 0.4);
}

.status-approved {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-winner {
  background: var(--gold-gradient);
  color: #111;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.status-rejected {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* ================= Admin Specific Styles ================= */
.admin-tab-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.admin-tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.admin-tab-btn.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
}

.admin-request-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.admin-req-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.admin-req-nick {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.admin-req-btns {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-admin-approve {
  flex: 1;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
  transition: var(--transition-fast);
}

.btn-admin-approve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

.btn-admin-reject {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-admin-reject:hover {
  background: rgba(239, 68, 68, 0.25);
}

/* ================= Draw Numbers Input Control ================= */
.draw-input-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.draw-number-box {
  width: 70px;
  height: 70px;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  background: #0a0e1a;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-md);
  color: var(--gold-300);
  box-shadow: var(--gold-glow);
}

.draw-number-box:focus {
  outline: none;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* ================= Toast Notification ================= */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: #1e293b;
  border-left: 4px solid var(--gold-500);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: slide-in 0.3s ease;
  pointer-events: auto;
}

.toast.success {
  border-left-color: var(--emerald-500);
}

.toast.error {
  border-left-color: var(--ruby-500);
}

/* ================= Keyframe Animations ================= */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.2); }
  100% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.6); }
}

@keyframes float-ball {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes slide-in {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ================= Responsive Design ================= */
@media (max-width: 640px) {
  .container {
    padding: 1rem 0.75rem 2rem 0.75rem;
  }
  .jackpot-amount {
    font-size: 2.1rem;
  }
  .lotto-ball {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  .actions-grid {
    grid-template-columns: 1fr;
  }
  .recent-win-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}
