:root {
  --primary: #d93025;
  --primary-gradient: linear-gradient(135deg, #ff4d4d, #d93025);
  --secondary: #fba324;
  --secondary-gradient: linear-gradient(135deg, #fba324, #f57c00);
  --gold: #d4af37;
  --gold-gradient: linear-gradient(135deg, #ffd700, #d4af37);
  --dark-bg: #121212;
  --dark-card: #1e1e1e;
  --dark-border: #333333;
  --bg-light: #f7f8ff;
  --card-bg: #ffffff;
  --text-main: #333333;
  --text-muted: #888888;
  --green: #2ecc71;
  --red: #e74c3c;
  --violet: #9b59b6;
  --border-radius: 12px;
  --shadow: 0 4px 15px rgba(0,0,0,0.08);
  --dark-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.dark-theme {
  background-color: var(--dark-bg);
  color: #ffffff;
}

.dark-theme .app-container {
  background: var(--dark-bg);
}

.dark-theme .app-header {
  background: #1a1a1a;
  border-bottom: 1px solid var(--dark-border);
}

.dark-theme .wallet-card,
.dark-theme .menu-item,
.dark-theme .game-card,
.dark-theme .history-section,
.dark-theme .list-item,
.dark-theme .menu-list,
.dark-theme .stat-item,
.dark-theme .modal-content,
.dark-theme .bottom-nav {
  background: var(--dark-card);
  color: #fff;
  border-color: var(--dark-border);
}

.dark-theme .text-muted,
.dark-theme .balance-label,
.dark-theme .stat-label,
.dark-theme .menu-info p {
  color: #aaa;
}

.dark-theme .list-item,
.dark-theme .tab-container,
.dark-theme .history-tabs,
.dark-theme .history-table td,
.dark-theme .history-table th {
  border-color: var(--dark-border);
  color: #fff;
}

.dark-theme .history-table th {
  background: #252525;
}

/* Aviator Game Styles */
.aviator-container {
  background: #000;
  height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  color: white;
}

.aviator-header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
}

.aviator-graph-area {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a0a2e 0%, #000 100%);
}

.aviator-plane {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 60px;
  height: 40px;
  color: #e74c3c;
  transition: all 0.1s linear;
  z-index: 10;
}

.multiplier-display {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.aviator-controls {
  padding: 20px;
  background: #1a1a1a;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.bet-input-box {
  background: #000;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bet-input-box label {
  font-size: 10px;
  color: #888;
}

.bet-input-box input {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  outline: none;
}

.btn-aviator-bet {
  background: #28a745;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  height: 100%;
}

.btn-aviator-cashout {
  background: #ffc107;
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
}

.aviator-history {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  background: #000;
}

.hist-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: #333;
  white-space: nowrap;
}

.hist-badge.high { color: #9b59b6; }
.hist-badge.low { color: #3498db; }

/* King State Game */
.king-state-card {
  background: var(--dark-card);
  border: 2px solid var(--gold);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
}

.king-text { color: var(--gold); font-weight: 800; }
.state-text { color: #fff; font-weight: 800; }

.number-selection-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
  max-height: 200px;
  overflow-y: auto;
  padding: 10px;
}

.num-pick {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

.num-pick.selected {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
}

/* Deposit & Withdrawal Styles */
.finance-container {
  padding-bottom: 80px;
}

.finance-header {
  background: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.finance-card-red {
  background: linear-gradient(135deg, #ff6b6b, #ee5253);
  margin: 15px;
  border-radius: 15px;
  padding: 25px 20px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(238, 82, 83, 0.2);
}

.finance-card-red .card-label {
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.finance-card-red .card-amount {
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 15px;
}

.finance-card-red .card-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
  letter-spacing: 4px;
  opacity: 0.5;
}

.finance-section {
  background: white;
  margin: 15px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.finance-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.method-item {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.method-item.active {
  border-color: #ff6b6b;
  background: #fffafa;
}

.method-item.active::after {
  content: '✓';
  position: absolute;
  top: 5px;
  right: 5px;
  background: #ff6b6b;
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-name {
  font-size: 11px;
  font-weight: 600;
  color: #666;
}

.amount-input-container {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-symbol {
  font-weight: 700;
  color: #ff6b6b;
  font-size: 18px;
}

.amount-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  outline: none;
}

.finance-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

.btn-deposit {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.btn-withdraw-disabled {
  background: #dcdde1;
  color: #7f8c8d;
  cursor: not-allowed;
}

.withdraw-rules {
  padding: 15px;
  font-size: 12px;
  color: #7f8c8d;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rule-dot {
  width: 6px;
  height: 6px;
  background: #ff6b6b;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Result Popups */
.result-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 350px;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  z-index: 3000;
  animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.result-win {
  background: var(--gold-gradient);
  color: #000;
}

.result-loss {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
}

@keyframes zoomIn {
  from { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.result-icon {
  font-size: 60px;
  margin-bottom: 15px;
}

.result-amount {
  font-size: 32px;
  font-weight: 900;
  margin: 10px 0;
}

.king-state-container {
  padding: 15px;
  background: #121212;
  min-height: 100vh;
}
.king-logo {
  text-align: center;
  padding: 20px 0;
  font-size: 28px;
  letter-spacing: 1px;
}
.selection-panel {
  background: #1e1e1e;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}
.bet-info-banner {
  background: var(--gold-gradient);
  color: #000;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
  margin-bottom: 20px;
}
.king-num-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
  padding: 5px;
  margin-bottom: 20px;
}
.king-num-grid::-webkit-scrollbar {
  width: 4px;
}
.king-num-grid::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}
.num-box {
  aspect-ratio: 1;
  background: #2a2a2a;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.num-box.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.bet-controls {
  margin-top: 20px;
}
.bet-input-row {
  display: flex;
  background: #2a2a2a;
  border-radius: 30px;
  padding: 5px;
  align-items: center;
  margin-bottom: 15px;
}
.bet-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 700;
  outline: none;
}
.king-btn {
  width: 100%;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 15px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for bottom nav */
}

/* Typography */
h1, h2, h3, p { margin: 0; }

/* Layout Containers */
.app-container {
  width: 100%;
  max-width: 480px; /* Mobile first feel on desktop */
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: var(--bg-light);
}

/* Header */
.app-header {
  background: var(--primary-gradient);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.app-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

.header-icons {
  display: flex;
  gap: 15px;
}

/* Hero Section / Wallet Card */
.wallet-card-container {
  padding: 15px;
}

.wallet-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.wallet-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
}

.wallet-balance {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.balance-label {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.balance-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
}

.wallet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 15px;
}

.btn {
  border: none;
  border-radius: 30px;
  padding: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
}

.btn-secondary {
  background: var(--secondary-gradient);
  color: white;
}

/* Announcements */
.announcement-bar {
  background: #fff;
  margin: 0 15px;
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.announcement-icon {
  color: var(--primary);
}

/* Quick Menu Grid */
.quick-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 15px;
}

.menu-item {
  background: white;
  padding: 15px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text-main);
  transition: background 0.2s;
}

.menu-item:hover {
  background: #fdfdfd;
}

.menu-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0f0;
  color: var(--primary);
}

.menu-info h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.menu-info p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Tabs Header */
.tab-container {
  display: flex;
  overflow-x: auto;
  padding: 10px 15px;
  gap: 20px;
  background: white;
  border-bottom: 1px solid #eee;
  scrollbar-width: none;
}

.tab-container::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 10px 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}

.tab.active {
  color: var(--primary);
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* Game Grid */
.game-section {
  padding: 15px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.game-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
  background: #eee;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}

.game-name {
  font-size: 14px;
  font-weight: 700;
}

.game-tag {
  font-size: 10px;
  opacity: 0.8;
}

/* Floating Elements */
.floating-gift {
  position: fixed;
  right: 15px;
  bottom: 140px;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 5px 15px rgba(217, 48, 37, 0.4);
  z-index: 90;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: white;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 8px 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-muted);
}

.nav-item.active {
  color: var(--primary);
}

.nav-item span {
  font-size: 11px;
  font-weight: 500;
}

/* Center Nav Item (Action) */
.nav-center {
  margin-top: -25px;
}

.nav-center-circle {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 10px rgba(217, 48, 37, 0.3);
  border: 4px solid white;
}

/* WIN GO Specific Layout */
.wingo-header {
  background: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #eee;
}

.wingo-mode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  opacity: 0.6;
}

.wingo-mode.active {
  opacity: 1;
  color: var(--primary);
}

.mode-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wingo-mode.active .mode-icon {
  border-color: var(--primary);
  background: #fff0f0;
}

.timer-section {
  padding: 20px 15px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 15px;
  margin: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timer-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.timer-right {
  text-align: right;
}

.countdown-clock {
  font-size: 32px;
  font-weight: 800;
  font-family: monospace;
}

.betting-buttons {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  gap: 10px;
}

.bet-btn {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

.bet-green { background-color: var(--green); }
.bet-violet { background-color: var(--violet); }
.bet-red { background-color: var(--red); }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 15px;
}

.number-circle {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: white;
  cursor: pointer;
  background: #ddd;
}

.num-v { background: linear-gradient(135deg, var(--green) 50%, var(--violet) 50%); }
.num-r-v { background: linear-gradient(135deg, var(--red) 50%, var(--violet) 50%); }
.num-g { background: var(--green); }
.num-r { background: var(--red); }

.size-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 15px 15px;
}

.size-btn {
  padding: 12px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.btn-big { background: var(--secondary); color: white; }
.btn-small { background: #3498db; color: white; }

/* History Tabs & Tables */
.history-section {
  background: white;
  margin-top: 10px;
  min-height: 400px;
}

.history-tabs {
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.h-tab {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 5px 15px;
  border-radius: 20px;
}

.h-tab.active {
  background: var(--primary);
  color: white;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
}

.history-table th {
  padding: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.history-table td {
  padding: 12px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid #eee;
}

.ball {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
}

.modal-content {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 20px;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.bet-confirm-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.bet-amount-chips {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.chip {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  background: #f0f0f0;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.chip.active {
  background: var(--secondary);
  color: white;
}

.quantity-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.q-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.q-val {
  font-size: 20px;
  font-weight: 700;
}

/* Account Page Styles */
.profile-header {
  background: var(--primary-gradient);
  padding: 40px 20px 60px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.3);
}

.profile-info h2 {
  font-size: 18px;
  margin-bottom: 4px;
}

.profile-info p {
  font-size: 12px;
  opacity: 0.8;
}

.account-wallet-section {
  margin-top: -30px;
  padding: 0 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 15px;
}

.stat-item {
  background: white;
  padding: 15px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.menu-list {
  background: white;
  margin: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #f5f5f5;
  text-decoration: none;
  color: var(--text-main);
}

.list-item:last-child {
  border-bottom: none;
}

.list-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-left svg {
  color: var(--primary);
}

/* Icons Replacement with Inline SVG (Generic styles) */
.icon-svg {
  width: 24px;
  height: 24px;
}
