/* =============================================
   UGLYSWANNZ – GAMES PAGE STYLESHEET
   ============================================= */

/* ---- SOCIAL NOTICE INLINE ---- */
.social-notice-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-secondary);
}
.social-notice-inline i { color: var(--brand-gold); }
.social-notice-inline strong { color: var(--brand-gold-light); }

/* ---- CREDITS BAR ---- */
.credits-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(30,4,80,0.8), rgba(20,2,50,0.9));
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.credits-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.credits-label {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-direction: column;
  align-items: flex-start;
}
.credits-label i { color: var(--brand-gold); }
.credits-note {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255,50,50,0.1);
  border: 1px solid rgba(255,80,80,0.2);
  padding: 2px 8px;
  border-radius: 10px;
}

.credits-amount {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #f0d060, #c9a227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 10px rgba(201,162,39,0.4));
}

.credits-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.btn-refill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--brand-gold-light);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-refill:hover {
  background: rgba(201,162,39,0.25);
  box-shadow: var(--glow-gold);
  transform: translateY(-1px);
}
.btn-refill i { font-size: 12px; }

.credits-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- GAME TABS ---- */
.game-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}

.game-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Cinzel', serif;
}
.game-tab:hover {
  border-color: rgba(201,162,39,0.4);
  color: var(--brand-gold-light);
}
.game-tab.active {
  background: linear-gradient(135deg, rgba(139,47,201,0.3), rgba(201,162,39,0.2));
  border-color: var(--brand-gold);
  color: var(--brand-gold-light);
  box-shadow: var(--glow-gold);
}
.game-tab i { font-size: 14px; }

/* ---- GAME PANEL ---- */
.game-panel { display: none; }
.game-panel.active { display: block; }

/* ---- GAME LAYOUT ---- */
.game-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ===========================
   SLOT MACHINE
   =========================== */
.slot-machine-wrap {
  display: flex;
  justify-content: center;
}

.slot-machine {
  width: 100%;
  max-width: 600px;
  background: linear-gradient(160deg, #1a0440, #0a0020, #150338);
  border: 2px solid rgba(201,162,39,0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(139,47,201,0.3), 0 0 30px rgba(201,162,39,0.15), inset 0 0 40px rgba(58,13,128,0.3);
  position: relative;
}

/* Top golden accent bar */
.slot-machine::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), var(--brand-gold-light), var(--brand-gold), transparent);
}

.slot-machine-top {
  padding: 24px 24px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(201,162,39,0.1);
}

.slot-machine-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #f0d060, #c9a227, #f0d060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.5));
}
.slot-machine-title i { font-size: 16px; opacity: 0.7; }

.slot-machine-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ---- REELS ---- */
.slot-reels-container {
  padding: 24px;
  position: relative;
}

.payline-indicator {
  position: absolute;
  top: 50%;
  left: 24px;
  right: 24px;
  height: 3px;
  background: rgba(201,162,39,0.3);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.payline-indicator::before,
.payline-indicator::after {
  content: '◄ ►';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(201,162,39,0.5);
}
.payline-indicator::before { left: -20px; content: '◄'; }
.payline-indicator::after { right: -20px; content: '►'; }

.reel-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.reel {
  width: 120px;
  height: 300px;
  background: #000;
  border: 2px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/* Top and bottom fade on reels */
.reel::before, .reel::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.reel::before {
  top: 0;
  background: linear-gradient(to bottom, #000, transparent);
}
.reel::after {
  bottom: 0;
  background: linear-gradient(to top, #000, transparent);
}

.reel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.1s ease;
  will-change: transform;
}

.reel-cell {
  width: 120px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  flex-shrink: 0;
}

/* Highlight middle row */
.reel-cell.center { background: rgba(201,162,39,0.05); }

.reel.spinning .reel-inner {
  animation: reelSpinAnim 0.12s linear infinite;
}

@keyframes reelSpinAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

.reel.stopping { animation: none; }

/* ---- SLOT RESULT ---- */
.slot-result {
  margin: 0 24px 16px;
  padding: 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  text-align: center;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.result-text {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.slot-result.win-result { border-color: rgba(100,220,100,0.5); background: rgba(50,150,50,0.15); }
.slot-result.win-result .result-text { color: #80ff80; }
.slot-result.jackpot-result { border-color: var(--brand-gold); background: rgba(201,162,39,0.15); animation: jackpotPulse 0.6s ease-in-out infinite alternate; }
.slot-result.jackpot-result .result-text { color: var(--brand-gold-light); font-size: 22px; }
.slot-result.lose-result { border-color: rgba(200,60,60,0.3); background: rgba(150,30,30,0.1); }
.slot-result.lose-result .result-text { color: #ff8080; }

@keyframes jackpotPulse {
  from { box-shadow: 0 0 10px rgba(201,162,39,0.3); }
  to { box-shadow: 0 0 30px rgba(201,162,39,0.7); }
}

/* ---- CONTROLS ---- */
.slot-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid rgba(201,162,39,0.1);
  gap: 20px;
  flex-wrap: wrap;
}

.bet-control label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.bet-btns {
  display: flex;
  gap: 6px;
}

.bet-btn {
  padding: 6px 14px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  color: var(--text-muted);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.bet-btn:hover { border-color: rgba(201,162,39,0.5); color: var(--brand-gold-light); }
.bet-btn.active {
  background: rgba(201,162,39,0.2);
  border-color: var(--brand-gold);
  color: var(--brand-gold-light);
}

.current-bet {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.current-bet span { color: var(--brand-gold-light); font-weight: 600; }

.spin-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.spins-remaining {
  font-size: 12px;
  color: var(--text-muted);
}
.spins-remaining span { color: var(--brand-gold-light); font-weight: 600; }

.btn-spin {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #a040d0, #6010a0);
  border: 3px solid rgba(201,162,39,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  box-shadow: 0 0 20px rgba(139,47,201,0.5), inset 0 0 20px rgba(201,162,39,0.1);
  position: relative;
  overflow: hidden;
}
.btn-spin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #c050f0, #8010c0);
  opacity: 0;
  transition: var(--transition);
}
.btn-spin:hover::before { opacity: 1; }
.btn-spin:hover { transform: scale(1.08); box-shadow: 0 0 35px rgba(139,47,201,0.7); }
.btn-spin:active { transform: scale(0.95); }
.btn-spin:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-spin:disabled:hover { transform: none; }

.spin-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.spin-btn-inner i { font-size: 22px; color: #fff; }
.spin-text { font-size: 11px; letter-spacing: 2px; color: var(--brand-gold-light); font-weight: 700; }

.btn-auto-spin {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-auto-spin:hover { border-color: rgba(201,162,39,0.3); color: var(--brand-gold-light); }
.btn-auto-spin.active { background: rgba(201,162,39,0.15); border-color: var(--brand-gold); color: var(--brand-gold-light); }

/* ---- IN-GAME CREDITS ---- */
.in-game-credits {
  display: flex;
  justify-content: space-around;
  padding: 16px 24px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(201,162,39,0.1);
}

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

.igc-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.igc-value {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-gold-light);
}

/* ===========================
   CARD ORACLE GAME
   =========================== */
.card-game-wrap {
  display: flex;
  justify-content: center;
}

.card-machine {
  width: 100%;
  max-width: 600px;
  background: linear-gradient(160deg, #0a1a0a, #051205, #0f1a0f);
  border: 2px solid rgba(201,162,39,0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(30,100,30,0.2), 0 0 30px rgba(201,162,39,0.15), inset 0 0 40px rgba(10,30,10,0.5);
  position: relative;
}
.card-machine::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), var(--brand-gold-light), var(--brand-gold), transparent);
}

.card-machine-top {
  padding: 24px 24px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(201,162,39,0.1);
}
.card-machine-title {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #f0d060, #c9a227, #f0d060);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.5));
}
.card-machine-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ---- CARD DISPLAY ---- */
.card-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px 24px;
}

.current-card-area, .next-card-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.card-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.playing-card {
  width: 100px;
  height: 140px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 2px rgba(201,162,39,0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.playing-card.card-back {
  background: linear-gradient(135deg, #0a3a1a, #1a6a2a);
  border: 2px solid rgba(201,162,39,0.4);
}

.playing-card.reveal-anim {
  animation: cardReveal 0.4s ease;
}

@keyframes cardReveal {
  0% { transform: rotateY(90deg) scale(0.8); opacity: 0; }
  100% { transform: rotateY(0deg) scale(1); opacity: 1; }
}

.card-face {
  font-size: 40px;
  user-select: none;
}

.card-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--brand-gold-light);
  min-height: 24px;
  text-align: center;
}

.vs-arrow {
  font-size: 24px;
  color: var(--brand-gold);
  opacity: 0.6;
}

/* ---- CARD RESULT ---- */
.card-result {
  margin: 0 24px 12px;
  padding: 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  text-align: center;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.card-result.correct { border-color: rgba(100,220,100,0.5); background: rgba(50,150,50,0.15); }
.card-result.correct .result-text { color: #80ff80; }
.card-result.wrong { border-color: rgba(200,60,60,0.3); background: rgba(150,30,30,0.1); }
.card-result.wrong .result-text { color: #ff8080; }

/* ---- STREAK ---- */
.streak-display {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 14px 24px;
  border-top: 1px solid rgba(201,162,39,0.08);
  border-bottom: 1px solid rgba(201,162,39,0.08);
}
.streak-item { text-align: center; }
.streak-label { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; display: block; }
.streak-value { font-family: 'Cinzel', serif; font-size: 20px; color: var(--brand-gold-light); }

/* ---- CARD CONTROLS ---- */
.card-controls {
  padding: 20px 24px;
  border-top: 1px solid rgba(201,162,39,0.1);
}

.guess-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.btn-higher, .btn-lower, .btn-same {
  flex: 1;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border: 2px solid;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}
.btn-higher span, .btn-lower span, .btn-same span { font-size: 12px; }

.btn-higher {
  background: rgba(50,150,50,0.15);
  border-color: rgba(100,200,100,0.4);
  color: #80ee80;
}
.btn-higher i { font-size: 22px; }
.btn-higher:hover:not(:disabled) {
  background: rgba(50,180,50,0.25);
  border-color: rgba(100,220,100,0.7);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(50,200,50,0.3);
}

.btn-lower {
  background: rgba(150,50,50,0.15);
  border-color: rgba(200,100,100,0.4);
  color: #ee8080;
}
.btn-lower i { font-size: 22px; }
.btn-lower:hover:not(:disabled) {
  background: rgba(180,50,50,0.25);
  border-color: rgba(220,100,100,0.7);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(200,50,50,0.3);
}

.btn-same {
  background: rgba(150,120,50,0.15);
  border-color: rgba(201,162,39,0.4);
  color: var(--brand-gold-light);
}
.btn-same i { font-size: 22px; }
.btn-same:hover:not(:disabled) {
  background: rgba(180,140,50,0.25);
  border-color: var(--brand-gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.3);
}

.btn-higher:disabled, .btn-lower:disabled, .btn-same:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ===========================
   SIDEBAR
   =========================== */
.game-sidebar { display: flex; flex-direction: column; gap: 20px; }

.paytable-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(10px);
}
.paytable-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--brand-gold-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.paytable-card h3 i { color: var(--brand-gold); }
.paytable-note {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  padding: 6px 10px;
  background: rgba(255,50,50,0.06);
  border-radius: 6px;
  border: 1px solid rgba(255,80,80,0.15);
}

.paytable-rows { display: flex; flex-direction: column; gap: 6px; }

.pt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  font-size: 13px;
}
.pt-row.jackpot {
  background: rgba(201,162,39,0.1);
  border-color: rgba(201,162,39,0.3);
}
.pt-symbols { font-size: 16px; min-width: 70px; }
.pt-label { color: var(--text-secondary); flex: 1; margin: 0 8px; }
.pt-credits { color: var(--brand-gold-light); font-weight: 700; font-family: 'Cinzel', serif; font-size: 14px; }

.paytable-disclaimer {
  margin-top: 14px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
}
.paytable-disclaimer i { color: var(--brand-gold); flex-shrink: 0; margin-top: 1px; }

/* How-to steps */
.howto-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.howto-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.step-num {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #8b2fc9, #c9a227);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.step-text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; padding-top: 4px; }
.step-text strong { color: var(--brand-gold-light); }

/* ---- HISTORY ---- */
.history-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px;
  backdrop-filter: blur(10px);
}
.history-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--brand-gold-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.history-card h3 i { color: var(--brand-gold); }

.history-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 220px;
  overflow-y: auto;
}
.history-list::-webkit-scrollbar { width: 4px; }
.history-list::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
.history-list::-webkit-scrollbar-thumb { background: rgba(201,162,39,0.3); border-radius: 2px; }

.history-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  padding: 20px 0;
}

.history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 6px;
  font-size: 12px;
  border-left: 3px solid transparent;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.history-item.win { border-left-color: #60cc60; }
.history-item.loss { border-left-color: #cc6060; }
.history-item.jackpot { border-left-color: var(--brand-gold); background: rgba(201,162,39,0.06); }

.hi-symbols { font-size: 14px; }
.hi-result { color: var(--text-secondary); flex: 1; margin: 0 8px; }
.hi-amount { font-weight: 600; }
.hi-amount.plus { color: #80cc80; }
.hi-amount.minus { color: #cc8080; }

/* ---- RESPONSIBLE NOTICE ---- */
.responsible-notice {
  padding: 40px 0;
  background: linear-gradient(90deg, rgba(30,4,80,0.3), rgba(60,4,30,0.3));
  border-top: 1px solid rgba(201,162,39,0.1);
  border-bottom: 1px solid rgba(201,162,39,0.1);
}

.rn-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rn-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(220,50,100,0.3), rgba(150,30,60,0.2));
  border: 1px solid rgba(220,50,100,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ff8090;
  flex-shrink: 0;
}

.rn-text { flex: 1; min-width: 200px; }
.rn-text h3 { font-family: 'Cinzel', serif; font-size: 18px; color: var(--text-primary); margin-bottom: 6px; }
.rn-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.rn-text a { color: var(--brand-gold-light); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .game-layout { grid-template-columns: 1fr; }
  .game-sidebar { order: -1; }
  .paytable-card, .history-card { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .reel { width: 90px; }
  .reel-cell { width: 90px; font-size: 40px; }
  .card-display { gap: 16px; }
  .playing-card { width: 80px; height: 110px; }
  .card-face { font-size: 32px; }
  .guess-buttons { gap: 8px; }
  .btn-higher, .btn-lower, .btn-same { padding: 12px 10px; }
  .credits-bar { flex-direction: column; align-items: flex-start; }
  .credits-actions { align-items: flex-start; }
}
