@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --bg-deep: #0B0E17;
  --bg-panel: rgba(18, 24, 40, 0.65);
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --gold-dim: #AA8C2C;
  --text-primary: #E8E6E1;
  --text-secondary: #8A9BBF;
  --accent-blue: #2A3F6F;
  --glass-border: rgba(212, 175, 55, 0.12);
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

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

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Dynamic Starfield Background */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(42, 63, 111, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, #0B0E17 0%, #060810 100%);
}

body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background-image: var(--noise);
  pointer-events: none;
}

/* Floating Particles Layer */
.particles {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Glass Panel System */
.glass-panel {
  background: var(--bg-panel);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Typography Hierarchy */
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; color: var(--gold); }
p { line-height: 1.7; color: var(--text-secondary); font-weight: 300; }

/* Navigation */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem;
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}
nav .logo img { height: 40px; transition: opacity 0.3s; }
nav .logo:hover img { opacity: 0.85; }
nav .nav-links { display: flex; gap: 2rem; align-items: center; }
nav a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500;
  transition: color 0.3s; position: relative;
}
nav a:hover, nav a.active { color: var(--gold-light); }
nav a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); box-shadow: 0 0 8px var(--gold);
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0B0E17; border: none; padding: 0.75rem 2rem;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 8px;
  cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover { box-shadow: 0 0 20px rgba(212,175,55,0.4); transform: translateY(-1px); }

.btn-outline {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 0.6rem 1.5rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.85rem;
  letter-spacing: 0.05em; cursor: pointer; transition: all 0.3s;
}
.btn-outline:hover { background: rgba(212,175,55,0.1); box-shadow: 0 0 12px rgba(212,175,55,0.2); }

/* Page Layout */
.page-container {
  max-width: 1200px; margin: 0 auto; padding: 2rem;
  min-height: calc(100vh - 80px);
  animation: fadeIn 0.6s ease-out;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Hero Section Enhancement */
.hero {
  text-align: center; padding: 4rem 0 3rem;
  position: relative;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero p.subtitle {
  font-size: 1.1rem; margin-top: 1rem; max-width: 600px; margin-inline: auto;
  color: var(--text-secondary); font-weight: 300;
}

/* Game Board Area */
.game-wrapper {
  display: grid; grid-template-columns: 1fr 320px; gap: 2rem;
  margin-top: 2rem; align-items: start;
}
.board-container {
  display: flex; justify-content: center; align-items: center;
  padding: 2rem; position: relative;
}
.board-container::before {
  content: ''; position: absolute; inset: -1px; border-radius: 18px; z-index: -1;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), transparent, rgba(42,63,111,0.2));
}

/* Sidebar Cards */
.sidebar-card { padding: 1.5rem; margin-bottom: 1.2rem; }
.sidebar-card h3 { margin-bottom: 0.8rem; font-size: 1rem; letter-spacing: 0.05em; }
.stat-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.stat-row:last-child { border-bottom: none; }
.stat-value { color: var(--gold-light); font-weight: 600; font-family: 'Playfair Display', serif; }

/* About Us Page */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem;
}
.about-card { padding: 2.5rem; position: relative; overflow: hidden; }
.about-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.about-icon {
  width: 48px; height: 48px; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--glass-border); border-radius: 12px;
  color: var(--gold); font-size: 1.4rem;
}
.team-avatars { display: flex; gap: -8px; margin-top: 1.5rem; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--bg-deep);
  background: var(--accent-blue); display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--gold-light); font-weight: 600;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

/* Legal Pages */
.legal-content { padding: 3rem; max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--glass-border); }
.legal-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.5rem; color: var(--text-secondary); }

/* Shop Grid */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.gem-card {
  padding: 2rem; text-align: center; position: relative; transition: all 0.3s; cursor: pointer;
}
.gem-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.gem-card.best-value::after {
  content: 'BEST VALUE'; position: absolute; top: -10px; right: 16px;
  background: var(--gold); color: #0B0E17; font-size: 0.65rem; font-weight: 700;
  padding: 3px 10px; border-radius: 4px; letter-spacing: 0.1em;
}
.gem-amount { font-size: 2rem; font-family: 'Playfair Display', serif; color: var(--gold-light); margin-bottom: 0.5rem; }
.gem-price { font-size: 1.1rem; color: var(--text-primary); font-weight: 600; }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: rgba(11,14,23,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  transform: translateY(100%); transition: transform 0.4s ease-out;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; flex: 1; }
.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }

/* Auth Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  width: 100%; max-width: 420px; padding: 2.5rem;
  animation: modalIn 0.3s ease-out;
}
@keyframes modalIn { from { transform: scale(0.95) translateY(10px); opacity: 0; } }
.modal h2 { text-align: center; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.4rem; letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input {
  width: 100%; padding: 0.8rem 1rem; background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border); border-radius: 8px;
  color: var(--text-primary); font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-group input:focus { outline: none; border-color: var(--gold); }
.form-error { color: #e74c3c; font-size: 0.8rem; margin-top: 0.3rem; display: none; }

/* Footer */
footer {
  border-top: 1px solid var(--glass-border); padding: 2.5rem 2rem;
  text-align: center; margin-top: 3rem;
}
footer p { font-size: 0.8rem; color: rgba(138,155,191,0.6); }
footer a { color: var(--gold-dim); text-decoration: none; transition: color 0.3s; }
footer a:hover { color: var(--gold-light); }

/* Responsive */
@media (max-width: 900px) {
  .game-wrapper { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  nav { padding: 1rem; }
  nav .nav-links { gap: 1rem; }
  nav a { font-size: 0.75rem; }
}
@media (max-width: 600px) {
  .page-container { padding: 1rem; }
  .hero { padding: 2rem 0; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
}
/* Company Info Banner */
.company-info-banner {
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.company-info-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.company-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}
.company-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.company-info-item .info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  font-weight: 500;
}
.company-info-item .info-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
}
.company-info-item .info-value.link {
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}
.company-info-item .info-value.link:hover {
  color: var(--gold);
}

/* Contact Section Enhancement */
.contact-section {
  padding: 3rem;
  margin-top: 2rem;
  text-align: center;
  position: relative;
}
.contact-section h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.contact-section .contact-desc {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.8rem 1.5rem;
  background: rgba(18, 24, 40, 0.4);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.contact-card .contact-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--gold);
}
.contact-card .contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.contact-card .contact-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 400;
}

/* Responsive for new components */
@media (max-width: 900px) {
  .company-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .company-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .company-info-banner {
    padding: 1.2rem 1.5rem;
  }
  .contact-section {
    padding: 2rem 1.5rem;
  }
  .contact-card {
    padding: 1.5rem 1rem;
  }
}

/* ===== Recharge Shop Styles ===== */
.recharge-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 900px) {
  .recharge-container {
    grid-template-columns: 1fr;
  }
}

.recharge-panel {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.recharge-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.recharge-balance .balance-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.recharge-balance .balance-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.recharge-balance .gem-icon {
  font-size: 1.4rem;
  vertical-align: middle;
  margin-left: 0.3rem;
}

/* Slider Section */
.recharge-slider-section {
  margin-bottom: 2rem;
}

.slider-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.slider-track-container {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.slider-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 0.15s ease-out;
}

.slider-thumb {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: left 0.15s ease-out, box-shadow 0.2s;
  z-index: 2;
  pointer-events: none;
}

.slider-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-secondary);
  padding: 0 2px;
}

/* Custom Input Section */
.recharge-input-section {
  margin-bottom: 2rem;
}

.input-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.custom-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

.custom-amount-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.custom-amount-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.custom-amount-input::placeholder {
  color: rgba(138, 155, 191, 0.4);
}

/* Summary Section */
.recharge-summary {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.summary-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-row span:first-child {
  color: var(--text-secondary);
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

.bonus-row span:last-child {
  color: var(--gold);
}

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(245, 215, 110, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 0.5rem;
  font-weight: 700;
  animation: bonusPulse 2s ease-in-out infinite;
}

@keyframes bonusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.total-row {
  font-size: 1.1rem;
}

.total-row span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
}

.price-row span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
}

/* Tier Indicators */
.recharge-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}

.tier-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.tier-item .tier-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
  flex-shrink: 0;
}

.tier-item.active .tier-dot {
  background: var(--gold);
  border-color: var(--gold-light);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.tier-item.reached .tier-dot {
  background: rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.tier-item.active {
  color: var(--gold);
  font-weight: 600;
}

.tier-item.reached {
  color: var(--text-primary);
}

/* Recharge Button */
.recharge-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

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

.recharge-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: left;
  line-height: 1.5;
}

.recharge-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.recharge-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* History Section */
.recharge-history {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.recharge-history h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 0.5rem;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.history-empty {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-style: italic;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.history-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.history-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.history-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.history-detail {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

.history-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .recharge-history {
    position: static;
  }
}
