/**
 * CoinRush Premium Jackpot - React Version CSS
 * Modern dark theme with gold/purple premium accents
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --pj-bg-dark: #0a0d12;
  --pj-bg-darker: #060809;
  --pj-bg-card: #12171f;
  --pj-bg-card-hover: #181f2a;
  --pj-bg-elevated: #1a212d;
  --pj-bg-input: #0d1117;
  
  --pj-border: rgba(255, 255, 255, 0.08);
  --pj-border-hover: rgba(255, 255, 255, 0.15);
  --pj-border-gold: rgba(255, 215, 0, 0.25);
  --pj-border-purple: rgba(168, 85, 247, 0.25);
  
  --pj-text: #f0f6fc;
  --pj-text-secondary: #b1bac4;
  --pj-text-muted: #6e7681;
  
  --pj-gold: #ffd700;
  --pj-gold-dim: rgba(255, 215, 0, 0.15);
  --pj-gold-glow: rgba(255, 215, 0, 0.4);
  
  --pj-purple: #a855f7;
  --pj-purple-dim: rgba(168, 85, 247, 0.15);
  --pj-purple-glow: rgba(168, 85, 247, 0.4);
  
  --pj-green: #4fffb0;
  --pj-green-dim: rgba(79, 255, 176, 0.12);
  --pj-green-glow: rgba(79, 255, 176, 0.4);
  
  --pj-red: #ff6b6b;
  --pj-blue: #3b82f6;
  
  --pj-radius-sm: 8px;
  --pj-radius-md: 12px;
  --pj-radius-lg: 16px;
  --pj-radius-xl: 24px;
  
  --pj-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --pj-shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --pj-shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BASE & RESET
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--pj-bg-dark);
  color: var(--pj-text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   APP LAYOUT
   ============================================ */
.premium-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--pj-bg-dark);
}

.premium-app::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 0% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 100% 60%, rgba(255, 215, 0, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.premium-app::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.premium-main {
  flex: 1;
  padding: 24px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.premium-layout {
  display: grid;
  grid-template-columns: 340px 1fr 340px;
  gap: 24px;
  min-height: calc(100vh - 80px - 48px);
}

.premium-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.premium-chat-container {
  flex: 1;
  min-height: 400px;
  max-height: 500px;
  background: var(--pj-bg-card);
  border: 1px solid var(--pj-border);
  border-radius: var(--pj-radius-lg);
  overflow: hidden;
}

.premium-center {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Loading state */
.premium-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 16px;
  color: var(--pj-text-muted);
}

.loading-spinner {
  width: 40px;
  height: 40px;
  color: var(--pj-gold);
  animation: spin 1s linear infinite;
}

.loading-spinner svg {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   COUNTDOWN DISPLAY
   ============================================ */
.countdown-display {
  background: linear-gradient(145deg, var(--pj-bg-card) 0%, var(--pj-bg-elevated) 100%);
  border: 1px solid var(--pj-border-gold);
  border-radius: var(--pj-radius-xl);
  padding: 32px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--pj-shadow-lg), 0 0 60px rgba(255, 215, 0, 0.08);
}

.countdown-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pj-gold), var(--pj-purple), transparent);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.countdown-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--pj-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.countdown-bonus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--pj-purple-dim);
  border: 1px solid var(--pj-border-purple);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pj-purple);
}

.countdown-bonus.special {
  background: linear-gradient(135deg, var(--pj-gold-dim), var(--pj-purple-dim));
  border-color: var(--pj-gold);
  color: var(--pj-gold);
  animation: specialPulse 2s ease-in-out infinite;
}

@keyframes specialPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.2); }
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-value {
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--pj-gold) 0%, #fff 50%, var(--pj-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.countdown-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--pj-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-separator {
  font-size: 56px;
  font-weight: 300;
  color: var(--pj-gold);
  opacity: 0.5;
  margin-bottom: 20px;
}

.countdown-status {
  font-size: 14px;
  font-weight: 600;
  color: var(--pj-green);
  padding: 8px 20px;
  background: var(--pj-green-dim);
  border-radius: 20px;
  display: inline-block;
}

/* Urgent state */
.countdown-display.urgent {
  border-color: var(--pj-red);
  animation: urgentPulse 0.5s ease-in-out infinite;
}

.countdown-display.urgent .countdown-value {
  background: linear-gradient(135deg, var(--pj-red) 0%, #ff8888 50%, var(--pj-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.countdown-display.urgent .countdown-status {
  background: rgba(255, 107, 107, 0.15);
  color: var(--pj-red);
}

@keyframes urgentPulse {
  0%, 100% { box-shadow: var(--pj-shadow-lg), 0 0 30px rgba(255, 107, 107, 0.3); }
  50% { box-shadow: var(--pj-shadow-lg), 0 0 50px rgba(255, 107, 107, 0.5); }
}

/* Warning state */
.countdown-display.warning .countdown-value {
  background: linear-gradient(135deg, #ff9500 0%, #ffd700 50%, #ff9500 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Winner mode */
.countdown-display.winner-mode {
  border-color: var(--pj-gold);
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), var(--pj-bg-card));
}

.winner-announcement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}

.winner-crown {
  width: 60px;
  height: 60px;
  color: var(--pj-gold);
  animation: crownBounce 1s ease-in-out infinite;
}

.winner-crown svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

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

.winner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.winner-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--pj-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.winner-name {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--pj-gold);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.winner-prize {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.winner-prize .prize-label {
  font-size: 12px;
  color: var(--pj-text-muted);
  text-transform: uppercase;
}

.winner-prize .prize-value {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pj-green) 0%, #7fff7f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.winner-prize .prize-suffix {
  font-size: 14px;
  color: var(--pj-text-secondary);
}

/* ============================================
   PRIZE POOL DISPLAY
   ============================================ */
.prize-pool-display {
  background: var(--pj-bg-card);
  border: 1px solid var(--pj-border);
  border-radius: var(--pj-radius-lg);
  padding: 28px;
  box-shadow: var(--pj-shadow-md);
}

.prize-pool-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--pj-border);
}

.prize-pool-icon {
  width: 48px;
  height: 48px;
  color: var(--pj-gold);
  margin-bottom: 8px;
}

.prize-pool-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.prize-pool-value {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pj-gold) 0%, #fff 50%, var(--pj-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prize-pool-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--pj-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.prize-pool-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pool-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  background: var(--pj-bg-elevated);
  border-radius: var(--pj-radius-md);
  border: 1px solid var(--pj-border);
}

.pool-stat-icon {
  width: 24px;
  height: 24px;
  color: var(--pj-purple);
}

.pool-stat-icon svg {
  width: 100%;
  height: 100%;
}

.pool-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--pj-text);
}

.pool-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--pj-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   BET PANEL
   ============================================ */
.premium-bet-panel {
  background: var(--pj-bg-card);
  border: 1px solid var(--pj-border);
  border-radius: var(--pj-radius-lg);
  padding: 20px;
  box-shadow: var(--pj-shadow-md);
}

.bet-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pj-border);
}

.bet-panel-icon {
  width: 24px;
  height: 24px;
  color: var(--pj-gold);
}

.bet-panel-icon svg {
  width: 100%;
  height: 100%;
}

.bet-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pj-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bet-panel-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.bet-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--pj-bg-elevated);
  border-radius: var(--pj-radius-sm);
  border: 1px solid var(--pj-border);
}

.bet-stat.highlight {
  background: var(--pj-gold-dim);
  border-color: var(--pj-border-gold);
}

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

.bet-stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--pj-text);
}

.bet-stat.highlight .bet-stat-value {
  color: var(--pj-gold);
}

.bet-input-group {
  margin-bottom: 16px;
}

.bet-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--pj-bg-input);
  border: 1px solid var(--pj-border);
  border-radius: var(--pj-radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.bet-input-wrapper:focus-within {
  border-color: var(--pj-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.bet-input-prefix {
  width: 20px;
  height: 20px;
  margin-left: 14px;
  color: var(--pj-gold);
}

.bet-input-prefix svg {
  width: 100%;
  height: 100%;
}

.bet-input {
  flex: 1;
  padding: 14px 12px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--pj-text);
  outline: none;
}

.bet-input::placeholder {
  color: var(--pj-text-muted);
}

.bet-max-btn {
  padding: 10px 16px;
  margin: 6px;
  background: var(--pj-purple-dim);
  border: 1px solid var(--pj-border-purple);
  border-radius: var(--pj-radius-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--pj-purple);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bet-max-btn:hover:not(:disabled) {
  background: var(--pj-purple);
  color: #fff;
}

.bet-max-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.bet-presets {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.bet-preset {
  padding: 10px 8px;
  background: var(--pj-bg-elevated);
  border: 1px solid var(--pj-border);
  border-radius: var(--pj-radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--pj-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bet-preset:hover:not(:disabled) {
  border-color: var(--pj-gold);
  color: var(--pj-gold);
  background: var(--pj-gold-dim);
}

.bet-preset.active {
  background: var(--pj-gold-dim);
  border-color: var(--pj-gold);
  color: var(--pj-gold);
}

.bet-preset:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.bet-error {
  padding: 12px;
  margin-bottom: 16px;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: var(--pj-radius-sm);
  font-size: 13px;
  color: var(--pj-red);
}

.bet-success {
  padding: 12px;
  margin-bottom: 16px;
  background: var(--pj-green-dim);
  border: 1px solid rgba(79, 255, 176, 0.3);
  border-radius: var(--pj-radius-sm);
  font-size: 13px;
  color: var(--pj-green);
}

.bet-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--pj-gold), #ffaa00);
  border: none;
  border-radius: var(--pj-radius-md);
  font-size: 15px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.bet-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

.bet-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.bet-submit-btn.locked {
  background: var(--pj-bg-elevated);
  color: var(--pj-text-muted);
  box-shadow: none;
}

.bet-submit-btn.loading .btn-spinner {
  animation: spin 1s linear infinite;
}

.bet-submit-btn svg {
  width: 18px;
  height: 18px;
}

.btn-spinner {
  width: 18px;
  height: 18px;
}

.btn-spinner svg {
  width: 100%;
  height: 100%;
}

.bet-panel-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--pj-border);
}

.bet-min-label,
.bet-fee-label {
  font-size: 12px;
  color: var(--pj-text-muted);
}

/* ============================================
   PARTICIPANTS LIST
   ============================================ */
.participants-panel {
  background: var(--pj-bg-card);
  border: 1px solid var(--pj-border);
  border-radius: var(--pj-radius-lg);
  box-shadow: var(--pj-shadow-md);
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--pj-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.panel-icon {
  width: 20px;
  height: 20px;
  color: var(--pj-purple);
}

.panel-icon svg {
  width: 100%;
  height: 100%;
}

.panel-title {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--pj-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.panel-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 10px;
  background: var(--pj-purple-dim);
  color: var(--pj-purple);
  font-size: 12px;
  font-weight: 800;
  border-radius: 20px;
  border: 1px solid var(--pj-border-purple);
}

.participants-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  color: var(--pj-text-muted);
}

.empty-icon {
  width: 48px;
  height: 48px;
  color: var(--pj-text-muted);
  opacity: 0.4;
  margin-bottom: 16px;
}

.empty-icon svg {
  width: 100%;
  height: 100%;
}

.participants-empty p {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.participants-empty span {
  font-size: 13px;
  opacity: 0.7;
}

.participants-list {
  max-height: 400px;
  overflow-y: auto;
}

.participant-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--pj-border);
  transition: background 0.15s ease;
}

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

.participant-item:hover {
  background: var(--pj-bg-elevated);
}

.participant-item.is-you {
  background: var(--pj-gold-dim);
}

.participant-item.is-you:hover {
  background: rgba(255, 215, 0, 0.12);
}

.participant-rank {
  font-size: 12px;
  font-weight: 700;
  color: var(--pj-text-muted);
  width: 28px;
}

.participant-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.participant-info {
  flex: 1;
  min-width: 0;
}

.participant-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pj-text);
  margin-bottom: 2px;
}

.you-badge {
  padding: 2px 8px;
  background: var(--pj-gold);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.participant-amount {
  font-size: 12px;
  color: var(--pj-text-muted);
}

.participant-chance {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 60px;
}

.chance-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--pj-green);
}

.chance-bar {
  width: 50px;
  height: 4px;
  background: var(--pj-border);
  border-radius: 2px;
  overflow: hidden;
}

.chance-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ============================================
   HISTORY PANEL
   ============================================ */
.history-panel {
  background: var(--pj-bg-card);
  border: 1px solid var(--pj-border);
  border-radius: var(--pj-radius-lg);
  box-shadow: var(--pj-shadow-md);
  overflow: hidden;
}

.history-empty {
  padding: 32px 20px;
  text-align: center;
  color: var(--pj-text-muted);
  font-size: 14px;
}

.history-list {
  max-height: 300px;
  overflow-y: auto;
}

.history-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--pj-border);
  transition: background 0.15s ease;
}

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

.history-item:hover {
  background: var(--pj-bg-elevated);
}

.history-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.history-info {
  flex: 1;
  min-width: 0;
}

.history-winner {
  font-size: 14px;
  font-weight: 600;
  color: var(--pj-text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-time {
  font-size: 12px;
  color: var(--pj-text-muted);
}

.history-prize {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.history-prize .prize-amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--pj-gold);
}

.history-prize .prize-label {
  font-size: 11px;
  color: var(--pj-text-muted);
}

/* ============================================
   RULES MODAL
   ============================================ */
.rules-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.rules-modal {
  background: var(--pj-bg-card);
  border: 1px solid var(--pj-border);
  border-radius: var(--pj-radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--pj-shadow-lg);
}

.rules-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pj-bg-elevated);
  border: 1px solid var(--pj-border);
  border-radius: 50%;
  color: var(--pj-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.rules-close:hover {
  background: var(--pj-border);
  color: var(--pj-text);
}

.rules-close svg {
  width: 18px;
  height: 18px;
}

.rules-header {
  padding: 32px 32px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--pj-border);
}

.rules-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--pj-gold);
}

.rules-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.rules-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--pj-text);
  margin-bottom: 6px;
}

.rules-header p {
  font-size: 14px;
  color: var(--pj-text-muted);
}

.rules-tabs {
  display: flex;
  padding: 0 20px;
  background: var(--pj-bg-elevated);
  border-bottom: 1px solid var(--pj-border);
  overflow-x: auto;
}

.rules-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--pj-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.rules-tab:hover {
  color: var(--pj-text);
}

.rules-tab.active {
  color: var(--pj-gold);
  border-bottom-color: var(--pj-gold);
}

.rules-tab svg {
  width: 16px;
  height: 16px;
}

.rules-content {
  flex: 1;
  padding: 24px 32px;
  overflow-y: auto;
}

.rules-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pj-text);
  margin-bottom: 12px;
}

.rules-section p {
  font-size: 14px;
  color: var(--pj-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.rules-section ul,
.rules-section ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

.rules-section li {
  font-size: 14px;
  color: var(--pj-text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.rules-section li strong {
  color: var(--pj-text);
}

.rules-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--pj-border);
}

.rules-close-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--pj-gold), #ffaa00);
  border: none;
  border-radius: var(--pj-radius-md);
  font-size: 15px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rules-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

/* ============================================
   WINNER CELEBRATION
   ============================================ */
.winner-celebration-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.winner-celebration-modal {
  background: linear-gradient(145deg, #1a1f2e 0%, #12171f 100%);
  border: 2px solid var(--pj-gold);
  border-radius: var(--pj-radius-xl);
  padding: 48px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 100px rgba(255, 215, 0, 0.3);
}

.celebration-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
  transform: rotate(45deg);
  top: -20px;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.celebration-crown {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--pj-gold);
  animation: crownBounce 1s ease-in-out infinite;
}

.celebration-crown svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

.celebration-title {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--pj-gold);
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.celebration-name {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--pj-text);
  margin-bottom: 24px;
}

.celebration-prize {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}

.celebration-prize .prize-value {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pj-green) 0%, #7fff7f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.celebration-prize .prize-label {
  font-size: 16px;
  color: var(--pj-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.celebration-close {
  padding: 14px 48px;
  background: linear-gradient(135deg, var(--pj-gold), #ffaa00);
  border: none;
  border-radius: var(--pj-radius-md);
  font-size: 16px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.celebration-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.4);
}

/* ============================================
   DAILY REWARD MODAL
   ============================================ */
.daily-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.daily-modal-v2 {
  background: linear-gradient(145deg, #14181f 0%, #0d1117 100%);
  border: 1px solid rgba(79, 255, 176, 0.15);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 60px rgba(79, 255, 176, 0.08);
}

.daily-modal-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.daily-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.daily-bg-orb.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 255, 176, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.daily-bg-orb.orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

.daily-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #8b949e;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.daily-close-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.daily-close-btn svg {
  width: 18px;
  height: 18px;
}

.daily-modal-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px 28px;
}

.daily-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
  color: var(--pj-text-muted);
}

.daily-spinner {
  width: 36px;
  height: 36px;
  color: var(--pj-green);
  animation: spin 1s linear infinite;
}

.daily-spinner svg {
  width: 100%;
  height: 100%;
}

.daily-login-prompt {
  text-align: center;
  padding: 40px 20px;
}

.login-prompt-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--pj-text-muted);
}

.login-prompt-icon svg {
  width: 100%;
  height: 100%;
}

.daily-login-prompt h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--pj-text);
  margin-bottom: 8px;
}

.daily-login-prompt p {
  font-size: 14px;
  color: var(--pj-text-muted);
  margin-bottom: 24px;
}

.daily-login-btn {
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--pj-green), #2ea77a);
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.daily-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(79, 255, 176, 0.3);
}

.daily-hero {
  text-align: center;
  margin-bottom: 24px;
}

.daily-hero-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.daily-hero-icon svg {
  width: 32px;
  height: 32px;
}

.daily-hero-streak {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 24px;
  margin-bottom: 16px;
}

.streak-flame-icon {
  width: 20px;
  height: 20px;
  color: #ff6b6b;
}

.streak-flame-icon svg {
  width: 100%;
  height: 100%;
}

.streak-count {
  font-size: 18px;
  font-weight: 800;
  color: #ff6b6b;
}

.streak-text {
  font-size: 12px;
  font-weight: 600;
  color: #ff9999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.daily-hero-title {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--pj-text);
  margin-bottom: 6px;
}

.daily-hero-subtitle {
  font-size: 14px;
  color: var(--pj-text-muted);
}

.daily-reward-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--reward-color, var(--pj-green));
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.daily-reward-box.claimed {
  opacity: 0.6;
}

.reward-box-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 12px;
  background: var(--reward-color, var(--pj-green));
  border-radius: 0 14px 0 12px;
  font-size: 11px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.reward-box-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

.reward-box-icon svg {
  width: 26px;
  height: 26px;
}

.reward-box-info {
  flex: 1;
  min-width: 0;
}

.reward-box-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--pj-text);
  margin-bottom: 4px;
}

.reward-box-desc {
  font-size: 13px;
  color: var(--pj-text-muted);
}

.reward-box-check {
  width: 32px;
  height: 32px;
  color: var(--pj-green);
}

.reward-box-check svg {
  width: 100%;
  height: 100%;
}

.daily-timeline {
  margin-bottom: 24px;
}

.timeline-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--pj-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.timeline-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.timeline-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 56px;
  position: relative;
}

.timeline-day-num {
  font-size: 10px;
  font-weight: 600;
  color: var(--pj-text-muted);
}

.timeline-day-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pj-border);
  transition: all 0.2s ease;
}

.timeline-day-icon svg {
  width: 18px;
  height: 18px;
}

.timeline-day.current .timeline-day-icon {
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.timeline-day.past .timeline-day-icon {
  opacity: 0.5;
}

.timeline-day.future .timeline-day-icon {
  opacity: 0.4;
}

.timeline-check {
  position: absolute;
  bottom: -4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--pj-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.timeline-check svg {
  width: 10px;
  height: 10px;
}

.daily-bonuses-section {
  margin-bottom: 24px;
}

.bonuses-section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--pj-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.bonuses-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.power-up-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.power-up-chip svg {
  width: 14px;
  height: 14px;
}

.power-up-chip.xp {
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: #ffd700;
}

.power-up-chip.cf {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #3b82f6;
}

.power-up-chip.bd {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
}

.power-up-chip.jp {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #a855f7;
}

.daily-action {
  text-align: center;
}

.daily-claim-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 48px;
  background: var(--btn-gradient, linear-gradient(135deg, var(--pj-green), #2ea77a));
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 25px rgba(79, 255, 176, 0.25);
}

.daily-claim-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(79, 255, 176, 0.35);
}

.daily-claim-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.daily-claim-button.loading .btn-spinner {
  animation: spin 1s linear infinite;
}

.daily-claim-button svg {
  width: 18px;
  height: 18px;
}

.daily-claimed-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  font-size: 14px;
  color: var(--pj-text-muted);
}

.daily-claimed-notice svg {
  width: 18px;
  height: 18px;
  color: var(--pj-green);
}

.daily-claimed-notice strong {
  color: var(--pj-green);
}

.daily-error {
  margin-top: 12px;
  padding: 12px;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 10px;
  font-size: 13px;
  color: #ff6b6b;
  text-align: center;
}

.daily-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 100;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1280px) {
  .premium-layout {
    grid-template-columns: 300px 1fr 300px;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .premium-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .premium-sidebar {
    order: 2;
  }
  
  .premium-sidebar.left {
    order: 1;
  }
  
  .premium-center {
    order: 0;
  }
  
  .countdown-value {
    font-size: 56px;
  }
  
  .prize-pool-value {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .premium-main {
    padding: 16px;
  }
  
  .countdown-display {
    padding: 24px 20px;
  }
  
  .countdown-value {
    font-size: 42px;
  }
  
  .countdown-separator {
    font-size: 36px;
  }
  
  .prize-pool-value {
    font-size: 28px;
  }
  
  .bet-presets {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .rules-modal {
    border-radius: 16px;
  }
  
  .rules-content {
    padding: 20px;
  }
  
  .daily-modal-v2 {
    max-height: 95vh;
    border-radius: 20px;
  }
  
  .daily-modal-content {
    padding: 24px 20px 20px;
  }
  
  .winner-celebration-modal {
    padding: 36px 28px;
  }
  
  .celebration-prize .prize-value {
    font-size: 42px;
  }
}

/* ============================================
   ENHANCED WINNER DISPLAY (V2)
   ============================================ */
.countdown-display.winner-mode {
  border: 2px solid var(--pj-gold);
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.08), var(--pj-bg-card) 50%, rgba(168, 85, 247, 0.05));
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.winner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: winnerGlow 3s ease-in-out infinite;
}

@keyframes winnerGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.winner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.winner-crown-icon {
  font-size: 64px;
  animation: crownFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.winner-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--pj-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.9;
}

.winner-name-large {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pj-gold) 0%, #fff 40%, var(--pj-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  animation: winnerNameShine 3s linear infinite;
  background-size: 200% 100%;
}

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

.winner-prize-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 16px 32px;
  background: rgba(79, 255, 176, 0.08);
  border: 1px solid rgba(79, 255, 176, 0.2);
  border-radius: 16px;
}

.prize-won-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--pj-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.prize-won-amount {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--pj-green);
  line-height: 1;
}

.prize-won-coins {
  font-size: 14px;
  font-weight: 600;
  color: var(--pj-text-secondary);
}

.winner-next-round {
  font-size: 13px;
  color: var(--pj-text-muted);
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.winner-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.winner-confetti .confetti-piece {
  position: absolute;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall 4s linear infinite;
}

@keyframes confettiFall {
  0% { 
    transform: translateY(-10px) rotate(0deg); 
    opacity: 1;
  }
  100% { 
    transform: translateY(400px) rotate(720deg); 
    opacity: 0;
  }
}

/* Drawing mode animation */
.countdown-display.drawing-mode {
  border-color: var(--pj-purple);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.1), var(--pj-bg-card));
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.drawing-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(168, 85, 247, 0.2);
  border-top-color: var(--pj-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.drawing-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--pj-purple);
  animation: pulse 1s ease-in-out infinite;
}

/* Mobile adjustments for winner */
@media (max-width: 768px) {
  .winner-name-large {
    font-size: 32px;
  }
  
  .prize-won-amount {
    font-size: 32px;
  }
  
  .winner-crown-icon {
    font-size: 48px;
  }
}
