/* Modern Gaming Dashboard */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

:root {
  --bg-dark: rgba(10, 10, 10, 0.15);
  --bg-card: rgba(26, 26, 26, 0.1);
  --bg-accent: rgba(42, 42, 42, 0.08);
  --primary: #00d4aa;
  --secondary: #ffd60a;
  --danger: #ff006e;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-accent: #00d4aa;
  --border: rgba(51, 51, 51, 0.2);
  --shadow: 0 4px 20px rgba(0, 212, 170, 0.4);
  --glow: 0 0 20px rgba(0, 212, 170, 0.7);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: 
    linear-gradient(135deg, rgba(10, 10, 10, 0.1) 0%, rgba(26, 26, 46, 0.1) 50%, rgba(22, 33, 62, 0.1) 100%),
    url('minecraft-1106252_1920.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-primary);
  height: 100vh;
  overflow: hidden;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 214, 10, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
  animation: backgroundPulse 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

/* Main Container */
.game-dashboard {
  display: grid;
  grid-template-areas: 
    "header header header"
    "stats shop mining"
    "wallet shop selling"
    "footer footer footer";
  grid-template-columns: 250px 1fr 250px;
  grid-template-rows: 60px 1fr 150px 50px;
  gap: 10px;
  padding: 10px;
  height: 100vh;
  overflow: hidden;
}

/* Header */
.header {
  grid-area: header;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.header:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 25px rgba(0, 212, 170, 0.4);
  transform: translateY(-1px);
  background: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.header-nav {
  display: flex;
  gap: 12px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-accent);
}

.nav-link.active {
  color: var(--text-accent);
  background: rgba(0, 212, 170, 0.1);
}

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

.logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(0, 212, 170, 0.3); }
  50% { box-shadow: 0 0 12px rgba(0, 212, 170, 0.6); }
}

.logo h1 {
  font-size: 20px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
  letter-spacing: 1px;
}

.header-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.refer-btn {
  background: linear-gradient(45deg, var(--secondary), #ff9500);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.refer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(255, 214, 10, 0.4);
}

.free-gold-btn {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.free-gold-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.v2-coming-soon-btn {
  background: linear-gradient(45deg, #ff4757, #ff6b35);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 11px;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: pulse-glow 2s infinite;
}

.v2-coming-soon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 71, 87, 0.5); }
  50% { box-shadow: 0 0 20px rgba(255, 71, 87, 0.8); }
}

.connect-btn {
  background: linear-gradient(45deg, var(--primary), #00b894);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 11px;
  white-space: nowrap;
  min-width: 120px;
  text-align: center;
}

.connect-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow);
}

.connect-btn:disabled {
  background: #666;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  grid-area: footer;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 15px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.footer:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 25px rgba(255, 214, 10, 0.4);
  transform: translateY(-1px);
  background: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

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

.footer-info {
  font-size: 9px;
  color: var(--text-secondary);
  line-height: 1.2;
}

.footer-links {
  display: flex;
  gap: 8px;
}

.footer-link {
  color: var(--text-accent);
  text-decoration: none;
  font-size: 8px;
  padding: 3px 6px;
  background: var(--bg-accent);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.network-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: var(--text-secondary);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.footer-stats {
  font-size: 8px;
  color: var(--text-secondary);
  text-align: right;
}

/* Land Purchase Modal */
.mandatory-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.5s ease;
}

.mandatory-modal.show {
  display: flex;
}

.land-modal {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a2a1a 100%);
  border: 3px solid var(--secondary);
  border-radius: 20px;
  width: 95%;
  max-width: 700px;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 
    0 25px 80px rgba(255, 214, 10, 0.3),
    0 0 0 1px rgba(255, 214, 10, 0.1);
  animation: landSlideIn 0.6s ease;
}

@keyframes landSlideIn {
  from { 
    transform: translateY(-100px) scale(0.8);
    opacity: 0;
  }
  to { 
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.land-header {
  background: linear-gradient(45deg, var(--secondary), #ff9500);
  padding: 20px 25px;
  border-radius: 17px 17px 0 0;
  text-align: center;
}

.land-header h2 {
  color: var(--bg-dark);
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
  letter-spacing: 1px;
}

.land-hero {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
}

.land-icon {
  font-size: 72px;
  margin-bottom: 20px;
  animation: landFloat 3s ease-in-out infinite;
}

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

.land-hero h3 {
  font-size: 24px;
  color: var(--text-accent);
  margin-bottom: 12px;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 212, 170, 0.4);
  letter-spacing: 0.5px;
}

.land-hero p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.land-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.feature-item {
  background: var(--bg-accent);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 5px 20px rgba(255, 214, 10, 0.2);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text strong {
  color: var(--text-primary);
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
}

.feature-text p {
  color: var(--text-secondary);
  font-size: 10px;
  margin: 0;
  line-height: 1.3;
}

.land-price-section {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.price-box {
  background: linear-gradient(135deg, var(--secondary), #ff9500);
  border-radius: 15px;
  padding: 20px;
  color: var(--bg-dark);
  box-shadow: 0 8px 25px rgba(255, 214, 10, 0.3);
  transform: scale(1.02);
}

.price-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  opacity: 0.8;
}

.price-amount {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.price-usd {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 600;
}

.land-benefits {
  background: var(--bg-accent);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 20px;
  margin: 0 20px 25px;
}

.land-benefits h4 {
  color: var(--text-accent);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 212, 170, 0.3);
  letter-spacing: 0.5px;
}

.land-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.land-benefits li {
  color: var(--text-primary);
  font-size: 12px;
  margin-bottom: 8px;
  padding-left: 5px;
  line-height: 1.4;
}

.land-purchase-btn {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  background: linear-gradient(45deg, var(--primary), #00b894);
  border: none;
  color: white;
  padding: 18px 25px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.land-purchase-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
  background: linear-gradient(45deg, #00d4aa, var(--primary));
}

.land-purchase-btn:active {
  transform: translateY(-1px);
}

.land-disclaimer {
  text-align: center;
  padding: 0 20px 20px;
}

.land-disclaimer p {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Referral Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 15px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 212, 170, 0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateY(-50px) scale(0.9); }
  to { transform: translateY(0) scale(1); }
}

.modal-header {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  padding: 15px 20px;
  border-radius: 13px 13px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  color: var(--bg-dark);
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  letter-spacing: 0.5px;
}

.modal-close {
  background: none;
  border: none;
  color: var(--bg-dark);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.modal-body {
  padding: 20px;
}

.referral-hero {
  text-align: center;
  margin-bottom: 25px;
}

.referral-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: bounce 2s ease-in-out infinite;
}

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

.referral-hero p {
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.referral-rewards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.reward-tier {
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.reward-tier:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
  transform: translateY(-2px);
}

.tier-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.tier-info {
  flex: 1;
}

.tier-count {
  font-size: 12px;
  color: var(--text-accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.tier-reward {
  font-size: 11px;
  color: var(--text-primary);
  font-weight: 600;
}

.referral-link-section {
  margin-bottom: 25px;
}

.referral-link-section label {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.link-container {
  display: flex;
  gap: 8px;
}

.link-container input {
  flex: 1;
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 10px 12px;
  font-size: 12px;
  font-family: 'Courier New', monospace;
}

.copy-btn {
  background: linear-gradient(45deg, var(--primary), #00b894);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 11px;
  white-space: nowrap;
}

.copy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.copy-btn.copied {
  background: linear-gradient(45deg, var(--secondary), #ff9500);
  color: var(--bg-dark);
}

.referral-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.stat-box {
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-accent);
  margin-bottom: 5px;
}

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

.social-share {
  text-align: center;
}

.social-share p {
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-btn {
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 11px;
  color: white;
}

.social-btn.twitter {
  background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
}

.social-btn.x {
  background: linear-gradient(45deg, #000000, #333333);
}

.social-btn.discord {
  background: linear-gradient(45deg, #7289DA, #5b6eae);
}

.social-btn.telegram {
  background: linear-gradient(45deg, #0088cc, #006699);
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* How it Works Modal Styles */
.how-it-works-hero {
  text-align: center;
  margin-bottom: 25px;
}

.how-it-works-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: pulse 2s ease-in-out infinite;
}

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

.how-it-works-hero p {
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 600;
}

.steps-container {
  margin-bottom: 25px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.2);
  transform: translateY(-2px);
}

.step-number {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: var(--bg-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.step-content {
  flex: 1;
}

.step-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.step-content h3 {
  color: var(--text-accent);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.how-it-works-cta {
  text-align: center;
}

.start-mining-btn {
  background: linear-gradient(45deg, var(--primary), #00b894);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.start-mining-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
  background: linear-gradient(45deg, #00d4aa, var(--primary));
}

/* Store Panel Styles */
.store-subtitle {
  font-size: 10px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.store-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 4px;
}

.store-item {
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px;
  transition: all 0.3s ease;
}

.store-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.2);
  transform: translateY(-1px);
}

.store-item-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.store-pickaxe-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid;
  flex-shrink: 0;
}

.store-pickaxe-icon.silver {
  background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
  border-color: #a0a0a0;
  color: #333;
}

.store-pickaxe-icon.gold {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-color: #e6c200;
  color: #333;
}

.store-item-info {
  flex: 1;
}

.store-item-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.store-item-rate {
  font-size: 10px;
  color: var(--text-secondary);
  margin: 0;
}

.store-price {
  font-size: 10px;
  color: var(--secondary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  background: rgba(255, 214, 10, 0.1);
  padding: 3px 6px;
  border-radius: 3px;
  border: 1px solid rgba(255, 214, 10, 0.3);
}

.store-buy-btn {
  width: 100%;
  background: linear-gradient(45deg, var(--primary), #00b894);
  border: none;
  color: white;
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.store-buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 212, 170, 0.3);
}

.store-buy-btn:disabled {
  background: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Custom scrollbar for store */
.store-items::-webkit-scrollbar {
  width: 4px;
}

.store-items::-webkit-scrollbar-track {
  background: var(--bg-accent);
  border-radius: 2px;
}

.store-items::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.store-items::-webkit-scrollbar-thumb:hover {
  background: #00b894;
}

.wallet-panel::-webkit-scrollbar {
  width: 6px;
}

.wallet-panel::-webkit-scrollbar-track {
  background: var(--bg-accent);
  border-radius: 3px;
}

.wallet-panel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.wallet-panel::-webkit-scrollbar-thumb:hover {
  background: #00b894;
}

/* Mobile responsive for modal */
@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .referral-rewards {
    grid-template-columns: 1fr;
  }
  
  .referral-stats {
    grid-template-columns: 1fr;
  }
  
  .social-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .link-container {
    flex-direction: column;
  }
  
  .copy-btn {
    width: 100%;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .step-number {
    align-self: center;
  }
}

/* Stats Panel */
.stats-panel {
  grid-area: stats;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow);
  overflow-y: auto;
  transition: all 0.3s ease;
}

.stats-panel:hover {
  background: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.panel-title {
  font-size: 16px;
  color: var(--text-accent);
  margin-bottom: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 4px rgba(0, 212, 170, 0.4);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
}

.stat-item {
  margin-bottom: 8px;
  padding: 6px;
  background: var(--bg-accent);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

.stat-label {
  font-size: 9px;
  color: var(--text-secondary);
  margin-bottom: 3px;
  text-transform: uppercase;
}

.stat-value {
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 700;
}

.stat-value.highlight {
  color: var(--secondary);
  font-size: 14px;
}

/* Wallet Panel */
.wallet-panel {
  grid-area: wallet;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow);
  overflow-y: auto;
  transition: all 0.3s ease;
}

.wallet-panel:hover {
  background: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.wallet-info {
  text-align: center;
}

.wallet-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  animation: avatarPulse 2s ease-in-out infinite;
}

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

.wallet-address {
  font-size: 9px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  word-break: break-all;
}

.wallet-balance {
  font-size: 12px;
  color: var(--text-accent);
  font-weight: 700;
}

/* Shop Panel */
.shop-panel {
  grid-area: shop;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pickaxe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex: 1;
  height: 100%;
  overflow: visible;
  padding: 8px;
}

.pickaxe-item {
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  height: 200px;
  overflow: visible;
}

/* Expand height when "Owned" badge is visible */
.pickaxe-item:has(.pickaxe-owned:not([style*="display: none"])) {
  height: 220px;
}

.pickaxe-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
  border-color: var(--primary);
  border-width: 1px;
  background: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 10;
  overflow: visible;
}

/* Enhanced text visibility on hover */
.pickaxe-item:hover .pickaxe-name {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.pickaxe-item:hover .pickaxe-rate {
  color: #e0e0e0;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.pickaxe-item:hover .pickaxe-price {
  background: rgba(255, 214, 10, 0.4);
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 214, 10, 0.6);
}

.pickaxe-item:hover .pickaxe-owned {
  color: #000000;
  font-weight: 800;
  text-shadow: none;
}

.pickaxe-item:hover .pickaxe-icon-name {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.pickaxe-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 8px;
}

.pickaxe-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 2px solid;
  margin-bottom: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pickaxe-icon.silver {
  background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
  border-color: #999;
}

.pickaxe-icon.gold {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-color: #cc9900;
}

.pickaxe-icon.diamond {
  background: linear-gradient(45deg, #00d4aa, #4ecdc4);
  border-color: #00a085;
}

.pickaxe-icon.netherite {
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  border-color: #6d28d9;
}

.pickaxe-shop-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Make netherite GIF bigger since it's animated */
.pickaxe-icon.netherite .pickaxe-shop-icon {
  width: 56px;
  height: 56px;
}

.pickaxe-icon-name {
  font-size: 8px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  opacity: 0.8;
}

.pickaxe-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center;
}

.pickaxe-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pickaxe-rate {
  font-size: 8px;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.pickaxe-roi {
  font-size: 7px;
  font-weight: 700;
  margin-top: 3px;
  padding: 2px 6px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  animation: roiPulse 2s ease-in-out infinite;
}

.pickaxe-roi.roi-slow {
  background: linear-gradient(135deg, #ff6b6b 0%, #c92a2a 100%);
  color: white;
  border: 1px solid rgba(255, 107, 107, 0.4);
}

.pickaxe-roi.roi-medium {
  background: linear-gradient(135deg, #ffd93d 0%, #f59f00 100%);
  color: #1a1a1a;
  border: 1px solid rgba(255, 217, 61, 0.6);
}

.pickaxe-roi.roi-fast {
  background: linear-gradient(135deg, #51cf66 0%, #2f9e44 100%);
  color: white;
  border: 1px solid rgba(81, 207, 102, 0.4);
}

.pickaxe-roi.roi-instant {
  background: linear-gradient(135deg, #00d4aa 0%, #00a884 100%);
  color: white;
  border: 1px solid rgba(0, 212, 170, 0.4);
  animation: roiGlow 1.5s ease-in-out infinite;
}

@keyframes roiPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes roiGlow {
  0%, 100% { 
    box-shadow: 0 2px 6px rgba(0, 212, 170, 0.3);
  }
  50% { 
    box-shadow: 0 3px 15px rgba(0, 212, 170, 0.8), 0 0 25px rgba(0, 212, 170, 0.4);
    transform: scale(1.05);
  }
}

.pickaxe-price {
  font-size: 9px;
  color: var(--secondary);
  font-weight: 700;
  margin: 0;
  background: rgba(255, 214, 10, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 214, 10, 0.3);
}

.pickaxe-owned {
  background: var(--primary);
  color: var(--bg-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0, 212, 170, 0.3);
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
  padding: 3px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.qty-btn {
  width: 18px;
  height: 18px;
  background: var(--primary);
  border: none;
  border-radius: 3px;
  color: var(--bg-dark);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 11px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.qty-btn:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

.qty-input {
  width: 28px;
  text-align: center;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-primary);
  padding: 2px;
  font-size: 9px;
  font-weight: 600;
}

.buy-btn {
  background: linear-gradient(45deg, var(--primary), #00b894);
  border: none;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 8px;
  white-space: nowrap;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 8px rgba(0, 212, 170, 0.3);
  margin-top: auto;
}

.buy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 212, 170, 0.3);
}

/* Mining Panel */
.mining-panel {
  grid-area: mining;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.mining-panel:hover {
  background: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.mining-display {
  margin: 8px 0;
}

.mining-icon {
  font-size: 24px;
  margin-bottom: 6px;
  animation: miningBounce 1s ease-in-out infinite;
}

.mining-title-gif {
  width: 48px;
  height: 48px;
  object-fit: contain;
  animation: miningBounce 1s ease-in-out infinite;
}

.title-pickaxe-gif {
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
}

.mining-panel .panel-title {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.logo-pickaxe-gif {
  width: 48px;
  height: 48px;
  object-fit: contain;
  animation: miningBounce 1s ease-in-out infinite;
}

/* Your Pickaxes section styled icons */
#ownedPickaxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  justify-items: center;
  align-items: center;
  max-width: 120px;
  margin: 0 auto;
}

.owned-pickaxe-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.owned-pickaxe-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.pickaxe-count-text {
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* V2.0 Coming Soon Modal Styles */
.v2-modal {
  max-width: 550px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border: 2px solid #ff4757;
  box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.v2-header {
  background: linear-gradient(45deg, #ff4757, #ff6b35);
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 12px 12px 0 0;
}

.v2-hero {
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  border-radius: 10px;
  border: 1px solid #ff4757;
}

.v2-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

.v2-hero h3 {
  color: #ff4757;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.v2-hero p {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
}

.v2-features {
  margin-bottom: 25px;
}

.v2-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid;
  transition: all 0.3s ease;
}

.v2-feature-item.danger {
  background: rgba(255, 71, 87, 0.1);
  border-left-color: #ff4757;
}

.v2-feature-item.warning {
  background: rgba(255, 193, 7, 0.1);
  border-left-color: #ffc107;
}

.v2-feature-item.critical {
  background: rgba(220, 53, 69, 0.1);
  border-left-color: #dc3545;
}

.v2-feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.2);
}

.v2-feature-item .feature-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.v2-feature-item .feature-text strong {
  color: var(--text-accent);
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.v2-feature-item .feature-text p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.v2-warning-box {
  background: linear-gradient(135deg, #dc3545, #ff4757);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.v2-warning-box h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 800;
}

.v2-warning-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.v2-countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 71, 87, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.countdown-item {
  text-align: center;
  flex: 1;
}

.countdown-number {
  font-size: 24px;
  font-weight: 800;
  color: #ff4757;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.v2-cta {
  text-align: center;
}

.v2-notify-btn {
  background: linear-gradient(45deg, #ff4757, #ff6b35);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.3);
  animation: pulse-glow 3s infinite;
}

.v2-notify-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.owned-pickaxe-icon.silver {
  background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
  border-color: #999;
}

.owned-pickaxe-icon.gold {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-color: #cc9900;
}

.owned-pickaxe-icon.diamond {
  background: linear-gradient(45deg, #00d4aa, #4ecdc4);
  border-color: #00a085;
}

.owned-pickaxe-icon.netherite {
  background: linear-gradient(45deg, #8b5cf6, #a855f7);
  border-color: #6d28d9;
}

.pickaxe-count {
  position: absolute;
  top: -2px;
  right: -8px;
  color: var(--text-primary);
  font-size: 10px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
  padding: 1px 3px;
  border: 1px solid var(--border);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}


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

.mining-rate {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 3px;
}

.mining-status {
  font-size: 9px;
  color: var(--text-secondary);
}

/* Selling Panel */
.selling-panel {
  grid-area: selling;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.selling-panel:hover {
  background: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.sell-input {
  width: 100%;
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-primary);
  padding: 8px;
  margin-bottom: 8px;
  font-size: 11px;
}

.sell-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(0, 212, 170, 0.2);
}

.sell-btn {
  width: 100%;
  background: linear-gradient(45deg, var(--secondary), #ffb300);
  border: none;
  color: white;
  padding: 8px;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.sell-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 214, 10, 0.3);
}

/* General heading styles for better visibility */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

h1 { font-size: 24px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

/* Panel-specific heading enhancements */
.stats-panel h2, .stats-panel h3,
.wallet-panel h2, .wallet-panel h3,
.shop-panel h2, .shop-panel h3,
.mining-panel h2, .mining-panel h3,
.selling-panel h2, .selling-panel h3 {
  color: var(--text-accent);
  text-shadow: 0 2px 4px rgba(0, 212, 170, 0.3);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 4px;
  margin-bottom: 10px;
}

/* Enhanced visibility for key mining information */
#currentMiningRate {
  font-size: 18px !important;
  color: var(--text-accent) !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 4px rgba(0, 212, 170, 0.4) !important;
  letter-spacing: 0.5px !important;
}

#miningStatus {
  font-size: 16px !important;
  color: var(--text-secondary) !important;
  margin-top: 5px !important;
  font-weight: 800 !important;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.2) !important;
  letter-spacing: 0.3px !important;
}

/* Simple Inventory Display */
.simple-inventory {
  margin-top: 20px;
  background: #2a2a2a;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}

.inventory-title {
  font-size: 12px;
  color: #b0b0b0;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Pickaxe Inventory Grid */
.pickaxe-inventory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.inventory-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.inventory-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.inventory-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  position: relative;
}

.inventory-icon.silver {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
  box-shadow: 0 2px 6px rgba(192, 192, 192, 0.3);
}

.inventory-icon.gold {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.inventory-icon.diamond {
  background: linear-gradient(135deg, #00d4ff, #7dd3fc);
  box-shadow: 0 2px 6px rgba(0, 212, 255, 0.3);
}

.inventory-icon.netherite {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  box-shadow: 0 2px 6px rgba(139, 92, 246, 0.3);
}

.pickaxe-mini-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.inventory-count {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  min-height: 16px;
  display: flex;
  align-items: center;
}

/* Hide items with 0 count */
.inventory-item[data-count="0"] {
  opacity: 0.3;
}

.inventory-item[data-count="0"] .inventory-count {
  display: none;
}


/* Keep old selector for backwards compatibility */
#pickaxeInventory {
  font-size: 14px !important;
  color: var(--text-accent) !important;
  margin-top: 8px !important;
  line-height: 1.4 !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 4px rgba(0, 212, 170, 0.4) !important;
  letter-spacing: 0.3px !important;
}

/* Alternative selectors for mining information */
.mining-rate, .current-mining-rate {
  font-size: 18px !important;
  color: var(--text-accent) !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 4px rgba(0, 212, 170, 0.4) !important;
  letter-spacing: 0.5px !important;
}

.mining-status-text, .mining-status {
  font-size: 16px !important;
  color: var(--text-secondary) !important;
  font-weight: 800 !important;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.2) !important;
  letter-spacing: 0.3px !important;
}

.pickaxe-inventory-text {
  font-size: 14px !important;
  color: var(--text-accent) !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 4px rgba(0, 212, 170, 0.4) !important;
  letter-spacing: 0.3px !important;
}

/* Messages */
.msg {
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 8px;
  text-align: center;
  min-height: 16px;
}

.msg.success {
  background: rgba(0, 212, 170, 0.2);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.msg.error {
  background: rgba(255, 0, 110, 0.2);
  color: var(--danger);
  border: 1px solid var(--danger);
}

/* Responsive */
@media (max-width: 1200px) {
  .game-dashboard {
    grid-template-columns: 220px 1fr 220px;
  }
  
  .pickaxe-grid {
    grid-template-columns: 1fr;
  }
  
  .header-nav {
    gap: 8px;
  }
  
  .nav-link {
    font-size: 10px;
    padding: 3px 6px;
  }
}

@media (max-width: 900px) {
  .game-dashboard {
    grid-template-areas: 
      "header header"
      "stats shop"
      "wallet selling"
      "mining mining"
      "footer footer";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50px 1fr auto auto auto;
    gap: 8px;
    padding: 8px;
  }
  
  .footer-links {
    display: none;
  }
  
  .header-nav {
    gap: 6px;
  }
  
  .nav-link {
    font-size: 9px;
    padding: 2px 4px;
  }
  
  /* Enhanced mobile styles */
  .stat-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .pickaxe-item {
    padding: 12px;
  }
  
  .shop-item {
    padding: 12px;
  }
  
  .connect-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}

/* Gold Store Button (Clickable) */
.gold-store-button {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(0, 123, 255, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.gold-store-button:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(0, 123, 255, 0.2));
}

.store-button-content {
  text-align: center;
  padding: 15px 10px;
}

.store-button-text {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.store-button-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

/* Gold Store Modal Styles */
.gold-store-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  backdrop-filter: blur(2px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 0;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(0, 123, 255, 0.2));
}

.modal-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-primary);
  text-align: center;
  flex: 1;
}

.modal-close-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 5px;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 20px;
}

.store-items-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.store-item-modal {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px;
  transition: all 0.2s ease;
}

.store-item-modal:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
}

.store-item-details-modal {
  margin: 15px 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 12px;
}

.store-buy-btn-modal {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #0056b3);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.store-buy-btn-modal:hover {
  background: linear-gradient(135deg, #0056b3, var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.store-summary-modal {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(0, 123, 255, 0.2));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.summary-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-align: center;
}

.store-message-modal {
  text-align: center;
  padding: 12px;
  margin-top: 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid;
  min-height: 0;
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
    margin: 10px;
  }
  
  .store-items-modal {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .modal-header {
    padding: 15px;
  }
  
  .modal-body {
    padding: 15px;
  }
}

/* Store items side by side layout on hover */
.expandable-gold-store:hover .store-items {
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: 100%;
  margin: 10px 0;
}

.expandable-gold-store:hover .store-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 180px;
}

/* Store item details (hidden by default) */
.store-item-details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.expandable-gold-store:hover .store-item-details {
  opacity: 1;
  max-height: 200px;
  padding: 8px 0;
  margin-top: 10px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
  padding: 8px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.detail-label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 12px;
}

.detail-value {
  color: var(--text-primary);
  font-weight: bold;
  font-size: 12px;
}

/* Store summary (hidden by default) */
.store-summary {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.3), rgba(0, 123, 255, 0.3));
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  clear: both;
}

.expandable-gold-store:hover .store-summary {
  opacity: 1;
  max-height: 120px;
  padding: 15px;
  margin-top: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
  padding: 6px 10px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.summary-label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13px;
}

.summary-value {
  color: var(--text-primary);
  font-weight: bold;
  font-size: 13px;
}

/* Enhanced Christmas theme for expanded state */
.expandable-gold-store:hover {
  background: linear-gradient(135deg, 
    rgba(220, 53, 69, 0.1), 
    rgba(40, 167, 69, 0.1), 
    rgba(255, 193, 7, 0.1)) !important;
  animation: christmas-glow 2s infinite;
}

/* Override any conflicting styles */
.expandable-gold-store:hover .panel-title {
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

@keyframes christmas-glow {
  0% { border-color: #dc3545; }
  33% { border-color: #28a745; }
  66% { border-color: #ffc107; }
  100% { border-color: #dc3545; }
}

.summary-row.recommendation {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.recommendation .summary-value {
  color: #ffc107;
  font-weight: bold;
  font-size: 12px;
}

/* Enhanced store item styling on hover */
.expandable-gold-store:hover .store-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin: 5px 0;
  padding: 8px;
  transition: background 0.2s ease;
}

/* Christmas theme for expanded state */
.expandable-gold-store:hover {
  background: linear-gradient(135deg, 
    rgba(220, 53, 69, 0.1), 
    rgba(40, 167, 69, 0.1), 
    rgba(255, 193, 7, 0.1));
  animation: christmas-glow 2s infinite;
}

@keyframes christmas-glow {
  0% { border-color: #dc3545; }
  33% { border-color: #28a745; }
  66% { border-color: #ffc107; }
  100% { border-color: #dc3545; }
}

/* Mobile Portrait (up to 768px) */
@media (max-width: 768px) {
  .game-dashboard {
    grid-template-areas: 
      "header"
      "wallet"
      "stats"
      "shop"
      "mining"
      "selling"
      "footer";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto auto;
    gap: 10px;
    padding: 10px;
    margin: 5px;
  }
  
  .stat-cards {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .pickaxe-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .stat-card {
    padding: 10px;
  }
  
  .stat-card h3 {
    font-size: 12px;
  }
  
  .stat-card .value {
    font-size: 16px;
  }
  
  .pickaxe-item {
    padding: 15px;
  }
  
  .shop-item {
    padding: 15px;
  }
  
  .wallet-section {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .connect-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
  
  .quantity-controls {
    justify-content: center;
    gap: 10px;
  }
  
  .qty-input {
    width: 60px;
    text-align: center;
  }
  
  .buy-btn {
    width: 100%;
    margin-top: 10px;
  }
}

/* Tablet and Mobile adjustments */
@media (max-width: 1024px) {
  .game-dashboard {
    grid-template-areas: 
      "header header"
      "stats stats"
      "shop shop"
      "mining mining"
      "wallet wallet"
      "selling selling"
      "footer footer";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 60px auto auto auto auto auto 50px;
  }
}

/* Mobile Medium (up to 768px) */
@media (max-width: 768px) {
  body {
    overflow-y: auto;
    height: auto;
    background-attachment: scroll;
  }

  .game-dashboard {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding: 10px;
    gap: 15px;
  }

  .header {
    width: 100%;
    padding: 10px;
  }

  .header-content {
    flex-direction: column;
    gap: 10px;
  }

  .header-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .logo {
    text-align: center;
  }

  /* Make all sections stack vertically */
  .stats-section,
  .shop-section, 
  .mining-section,
  .wallet-section,
  .selling-section,
  .footer {
    width: 100%;
    order: initial;
  }
}

/* Mobile Small (up to 576px) */
@media (max-width: 576px) {
  .game-dashboard {
    margin: 0;
    padding: 8px;
    gap: 10px;
  }

  .header {
    padding: 8px;
  }

  .header-content {
    gap: 8px;
  }

  .logo h1 {
    font-size: 18px;
  }

  .header-buttons {
    gap: 5px;
  }

  .refer-btn,
  .v2-coming-soon-btn,
  .connect-btn {
    padding: 8px 10px;
    font-size: 10px;
  }
  
  .stat-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .stat-card {
    padding: 12px;
    text-align: center;
  }
  
  .stat-card h3 {
    font-size: 11px;
    margin-bottom: 5px;
  }
  
  .stat-card .value {
    font-size: 18px;
    font-weight: bold;
  }
  
  .pickaxe-item,
  .shop-item {
    padding: 12px;
    border-radius: 12px;
  }
  
  .pickaxe-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .pickaxe-icon {
    width: 50px;
    height: 50px;
  }
  
  .pickaxe-name {
    font-size: 14px;
  }
  
  .pickaxe-rate {
    font-size: 12px;
  }
  
  .pickaxe-price {
    font-size: 14px;
    margin: 10px 0;
  }
  
  .quantity-controls {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
  }
  
  .qty-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .qty-input {
    width: 50px;
    height: 35px;
    text-align: center;
    font-size: 14px;
  }
  
  .buy-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-top: 10px;
  }
  
  /* Wallet section mobile optimization */
  .wallet-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .wallet-address {
    font-size: 12px;
  }
  
  .wallet-balance {
    font-size: 16px;
  }
  
  /* Sections mobile optimization */
  .stats-section,
  .shop-section,
  .mining-section,
  .wallet-section,
  .selling-section {
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    padding: 10px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 8px;
  }

  /* Stats cards mobile */
  .stat-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .stat-card {
    padding: 15px;
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.3);
  }

  .stat-card h3 {
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--text-secondary);
  }

  .stat-card .value {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
  }

  /* Inventory and Shop mobile */
  .inventory-grid,
  .shop-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pickaxe-item,
  .shop-item {
    padding: 15px;
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 212, 170, 0.3);
  }

  .pickaxe-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .pickaxe-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .pickaxe-name {
    font-size: 16px;
    font-weight: bold;
  }

  .pickaxe-rate {
    font-size: 12px;
    color: var(--text-secondary);
  }

  .pickaxe-price {
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
  }

  .quantity-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
  }

  .qty-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
  }

  .qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(26, 26, 26, 0.8);
    color: white;
  }

  .buy-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 15px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
  }

  /* Wallet section mobile optimization */
  .wallet-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
  }

  .wallet-address {
    font-size: 12px;
    word-break: break-all;
    padding: 8px;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 6px;
  }

  .wallet-balance {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary);
  }

  /* Modal responsive adjustments */
  .modal-overlay {
    padding: 10px;
  }

  .modal-content {
    width: 95% !important;
    max-width: 400px !important;
    margin: 20px auto !important;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .modal-header {
    padding: 15px !important;
    text-align: center;
  }

  .modal-header h2 {
    font-size: 18px;
  }
  
  .modal-body {
    padding: 15px !important;
  }
  
  .modal-footer {
    padding: 15px !important;
  }

  /* Steps and features mobile */
  .steps-container,
  .v2-features {
    gap: 15px;
  }

  .step-item,
  .v2-feature-item {
    padding: 15px;
    border-radius: 12px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* Extra Small Mobile (up to 320px) */
@media (max-width: 320px) {
  .game-dashboard {
    padding: 5px;
    gap: 8px;
  }

  .header {
    padding: 5px;
  }

  .logo h1 {
    font-size: 16px;
  }

  .header-buttons {
    flex-direction: column;
    gap: 5px;
  }

  .refer-btn,
  .v2-coming-soon-btn,
  .connect-btn {
    padding: 6px 8px;
    font-size: 9px;
    width: 100%;
    max-width: 120px;
  }
  
  .section-title {
    font-size: 14px;
    padding: 8px;
  }
  
  .stat-card {
    padding: 10px;
  }

  .stat-card .value {
    font-size: 16px;
  }
  
  .pickaxe-item,
  .shop-item {
    padding: 12px;
  }

  .pickaxe-icon {
    width: 50px;
    height: 50px;
  }

  .pickaxe-name {
    font-size: 14px;
  }

  .pickaxe-rate {
    font-size: 11px;
  }

  .pickaxe-price {
    font-size: 13px;
  }
  
  .buy-btn {
    padding: 12px;
    font-size: 14px;
  }
  
  .quantity-controls {
    gap: 8px;
  }
  
  .qty-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .qty-input {
    width: 50px;
    height: 35px;
    font-size: 14px;
  }

  .wallet-address {
    font-size: 10px;
  }

  .wallet-balance {
    font-size: 16px;
  }

  /* Modal adjustments for tiny screens */
  .modal-content {
    width: 98% !important;
    margin: 5px auto !important;
    max-height: 95vh;
  }

  .modal-header {
    padding: 10px !important;
  }

  .modal-header h2 {
    font-size: 16px;
  }

  .modal-body {
    padding: 10px !important;
  }

  .step-content h3 {
    font-size: 14px;
  }

  .step-content p {
    font-size: 12px;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}

/* Store Message Styling */
.store-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  min-height: 20px;
}

.store-message.info {
  background: rgba(0, 212, 170, 0.1);
  border-color: rgba(0, 212, 170, 0.3);
  color: var(--primary);
}

.store-message.loading {
  background: rgba(255, 214, 10, 0.1);
  border-color: rgba(255, 214, 10, 0.3);
  color: var(--secondary);
  animation: pulse 1.5s infinite;
}

.store-message.success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.store-message.error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

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

/* Enhanced store item styling */
.store-item {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.store-item:hover {
  border-color: rgba(0, 212, 170, 0.5);
  background: rgba(26, 26, 26, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.2);
}

.store-buy-btn {
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(45deg, var(--primary), #00b894);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.store-buy-btn:hover {
  background: linear-gradient(45deg, #00b894, var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
}

.store-buy-btn.netherite-glow {
  background: linear-gradient(45deg, #8b5cf6, #ec4899);
  animation: netherite-glow 2s infinite;
}

.store-buy-btn.netherite-glow:hover {
  background: linear-gradient(45deg, #ec4899, #8b5cf6);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.5);
}

@keyframes netherite-glow {
  0%, 100% { 
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
  }
  50% { 
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.8);
  }
}

.store-price {
  font-size: 16px;
  font-weight: bold;
  color: var(--secondary);
  text-align: center;
  margin: 8px 0;
}

.store-item-name {
  font-weight: bold;
  color: var(--text-primary);
  font-size: 16px;
}

.store-item-rate {
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: 2px;
}

/* Sell Gold Header Button */
.sell-gold-header-btn {
  padding: 8px 16px;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sell-gold-header-btn:hover {
  background: linear-gradient(45deg, #d97706, #f59e0b);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Promoters Button Styling - Match other buttons exactly */
.promoters-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
  font-size: 11px;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: auto;
  justify-content: center;
  line-height: 1;
}

.promoters-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #ff7849 0%, #fa9f32 100%);
}

/* Promoters Modal Styling - Dark Theme with Glowing Border */
.promoters-modal {
  max-width: 600px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #eee;
  border: 2px solid #ff6b35;
  border-radius: 15px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 107, 53, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: modalGlow 2s ease-in-out infinite alternate;
}

@keyframes modalGlow {
  from { 
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.8),
      0 0 30px rgba(255, 107, 53, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  to { 
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.8),
      0 0 50px rgba(255, 107, 53, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

.promoters-header {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  text-align: center;
  padding: 25px;
  border-radius: 15px 15px 0 0;
  position: relative;
}

.promoters-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.promoters-hero h3 {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 24px;
}

.promoters-hero p {
  color: #ccc;
  margin: 0;
  font-size: 16px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.feature-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.feature-item h4 {
  color: #fff;
  margin: 0 0 8px 0;
  font-size: 18px;
}

.feature-item p {
  color: #ccc;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Process Steps */
.promoters-process {
  margin: 30px 0;
}

.promoters-process h3 {
  color: #ff6b35;
  text-align: center;
  margin-bottom: 25px;
  font-size: 20px;
}

.process-steps {
  display: grid;
  gap: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.step-content h4 {
  color: #fff;
  margin: 0 0 5px 0;
  font-size: 16px;
}

.step-content p {
  color: #ccc;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Promoters Link Section */
.promoters-link-section {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  backdrop-filter: blur(10px);
}

.promoters-link-container h3 {
  color: #4caf50;
  margin: 0 0 15px 0;
  text-align: center;
}

.link-copy-container {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.link-copy-container input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-family: monospace;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.copy-btn {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.link-info {
  color: #2e7d32;
  font-size: 12px;
  text-align: center;
  margin: 0;
}

/* Social Share Section */
.social-share-section {
  margin: 25px 0;
}

.social-share-section h3 {
  color: #ff6b35;
  text-align: center;
  margin-bottom: 10px;
}

.social-share-section p {
  text-align: center;
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.social-btn {
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
}

.twitter-btn { background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%); }
.facebook-btn { background: linear-gradient(135deg, #4267b2 0%, #365899 100%); }
.linkedin-btn { background: linear-gradient(135deg, #0077b5 0%, #005885 100%); }
.instagram-btn { background: linear-gradient(135deg, #e4405f 0%, #c13584 100%); }
.tiktok-btn { background: linear-gradient(135deg, #000000 0%, #333333 100%); }

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
  background: #fff3e0;
  border: 2px solid #ffcc02;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.contact-section h3 {
  color: #e65100;
  text-align: center;
  margin: 0 0 15px 0;
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-btn {
  padding: 15px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.telegram-btn {
  background: linear-gradient(135deg, #0088cc 0%, #006bb3 100%);
}

.email-btn {
  background: linear-gradient(135deg, #ea4335 0%, #d33b2c 100%);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Requirements Section */
.promoters-requirement {
  background: #fff3cd;
  border: 2px solid #ffeeba;
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.requirement-box h3 {
  color: #856404;
  text-align: center;
  margin: 0 0 20px 0;
}

.requirement-steps {
  display: grid;
  gap: 15px;
}

.requirement-step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  border: 1px solid #ffeeba;
}

.req-icon {
  font-size: 24px;
  width: 40px;
  text-align: center;
}

.req-text {
  flex: 1;
  font-weight: bold;
  color: #333;
}

.req-status {
  font-weight: bold;
  font-size: 14px;
}

.requirement-note {
  color: #856404;
  text-align: center;
  margin: 15px 0 0 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Modal Footer */
.modal-footer {
  background: #f8f9fa;
  padding: 20px 25px;
  border-radius: 0 0 15px 15px;
  text-align: center;
}

.promoters-cta-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.promoters-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .social-buttons {
    grid-template-columns: 1fr;
  }
  
  .contact-buttons {
    grid-template-columns: 1fr;
  }
  
  .promoters-modal {
    width: 98%;
    margin: 1vh auto;
  }
}



/* Banner Download Section */
.banner-download-section {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(75, 0, 130, 0.05) 100%);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  backdrop-filter: blur(10px);
}

.banner-download-section h3 {
  color: #9370db;
  text-align: center;
  margin: 0 0 10px 0;
  font-size: 20px;
}

.banner-download-section p {
  text-align: center;
  color: #ccc;
  margin: 0 0 20px 0;
  font-size: 14px;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.banner-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.banner-item:hover {
  transform: translateY(-5px);
  border-color: #9370db;
  box-shadow: 0 8px 25px rgba(147, 112, 219, 0.2);
}

.banner-preview {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.banner-placeholder {
  color: #9370db;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.banner-info {
  text-align: center;
}

.banner-name {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}

.banner-size {
  color: #999;
  font-size: 12px;
  margin-bottom: 10px;
}

.banner-download-btn {
  background: linear-gradient(135deg, #9370db 0%, #8a2be2 100%);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  transition: all 0.3s ease;
  width: 100%;
}

.banner-download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(147, 112, 219, 0.3);
}

/* Banner Tips */
.banner-tips {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

.banner-tips h4 {
  color: #ffc107;
  text-align: center;
  margin: 0 0 15px 0;
  font-size: 16px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
}

.tip-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .banner-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
}



/* Battlezone Button Styling */
.battlezone-btn {
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(220, 20, 60, 0.3);
  font-size: 11px;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: auto;
  justify-content: center;
  line-height: 1;
}

.battlezone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
  background: linear-gradient(135deg, #ff1744 0%, #c62828 100%);
}

/* Battlezone Modal Styling */
.battlezone-modal {
  max-width: 700px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg, #0d1421 0%, #1a0a0a 100%);
  color: #eee;
  border: 2px solid #dc143c;
  border-radius: 15px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(220, 20, 60, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: battlezoneGlow 3s ease-in-out infinite alternate;
}

@keyframes battlezoneGlow {
  from { 
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.9),
      0 0 30px rgba(220, 20, 60, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  to { 
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.9),
      0 0 50px rgba(220, 20, 60, 0.8),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

.battlezone-header {
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  color: white;
  text-align: center;
  padding: 25px;
  border-radius: 15px 15px 0 0;
  position: relative;
}

.battlezone-hero {
  text-align: center;
  padding: 20px 0;
}

.battlezone-icon {
  font-size: 60px;
  margin-bottom: 15px;
  animation: battlePulse 2s ease-in-out infinite;
}

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

.battlezone-hero h3 {
  color: #dc143c;
  margin: 0 0 10px 0;
  font-size: 28px;
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.battlezone-tagline {
  color: #ff4757;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

/* Countdown Timer */
.countdown-section {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
  border: 2px solid rgba(220, 20, 60, 0.3);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown-section h3 {
  color: #dc143c;
  margin: 0 0 20px 0;
  font-size: 24px;
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.time-block {
  background: rgba(220, 20, 60, 0.2);
  border: 1px solid rgba(220, 20, 60, 0.4);
  border-radius: 10px;
  padding: 15px;
  min-width: 80px;
  text-align: center;
}

.time-number {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #dc143c;
  text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
  font-family: 'Courier New', monospace;
}

.time-label {
  display: block;
  font-size: 12px;
  color: #ccc;
  margin-top: 5px;
  font-weight: bold;
}

.launch-date {
  color: #ff4757;
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
}

/* Battlezone Features */
.battlezone-features {
  margin: 25px 0;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  margin: 10px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-row.danger {
  background: rgba(220, 20, 60, 0.1);
  border-left: 4px solid #dc143c;
}

.feature-row.combat {
  background: rgba(255, 140, 0, 0.1);
  border-left: 4px solid #ff8c00;
}

.feature-row.stakes {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #ffd700;
}

.feature-row.victory {
  background: rgba(138, 43, 226, 0.1);
  border-left: 4px solid #8a2be2;
}

.feature-icon {
  font-size: 32px;
  width: 50px;
  text-align: center;
}

.feature-content h4 {
  color: #fff;
  margin: 0 0 5px 0;
  font-size: 16px;
}

.feature-content p {
  color: #ccc;
  margin: 0;
  font-size: 14px;
}

/* Warning Section */
.battlezone-warning {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(220, 20, 60, 0.1) 100%);
  border: 2px solid #ff4500;
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.warning-icon {
  font-size: 32px;
  color: #ff4500;
  animation: warningBlink 2s ease-in-out infinite;
}

@keyframes warningBlink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0.5; }
}

.warning-content h4 {
  color: #ff4500;
  margin: 0 0 10px 0;
  font-size: 18px;
}

.warning-content p {
  color: #fff;
  margin: 5px 0;
  font-size: 14px;
}

/* Battle Stats */
.battle-stats {
  margin: 25px 0;
}

.battle-stats h3 {
  color: #dc143c;
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 20, 60, 0.3);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #dc143c;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #dc143c;
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: #ccc;
}

/* Battlezone Footer */
.battlezone-footer {
  background: linear-gradient(135deg, #1a0a0a 0%, #0d1421 100%);
  padding: 25px;
  border-radius: 0 0 15px 15px;
  text-align: center;
  border-top: 1px solid rgba(220, 20, 60, 0.3);
}

.battlezone-cta-btn {
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
  animation: ctaPulse 3s ease-in-out infinite;
}

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

.battlezone-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
}

.footer-warning {
  color: #ff4757;
  font-size: 14px;
  margin: 15px 0 0 0;
  font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .countdown-timer {
    gap: 10px;
  }
  
  .time-block {
    min-width: 60px;
    padding: 10px;
  }
  
  .time-number {
    font-size: 24px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}



/* 🎰 PREMIUM Spin Wheel Styling */
.spin-wheel-btn {
  background: linear-gradient(135deg, #ff0080, #ff8c00, #ffd700);
  border: 2px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: wheelGlow 2s ease-in-out infinite;
  font-weight: bold;
}

.spin-wheel-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
}

@keyframes wheelGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
  50% { box-shadow: 0 0 40px rgba(255, 140, 0, 0.8); }
}

/* Premium Modal */
.spin-wheel-modal-premium {
  max-width: 1200px;
  max-height: 95vh;
  width: 95%;
  background: linear-gradient(145deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  border: 4px solid #ffd700;
  box-shadow: 
    0 0 60px rgba(255, 215, 0, 0.6),
    inset 0 0 40px rgba(255, 215, 0, 0.1);
  border-radius: 25px;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}

.spin-wheel-modal-premium::-webkit-scrollbar {
  width: 12px;
}

.spin-wheel-modal-premium::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.spin-wheel-modal-premium::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffd700, #ff8c00);
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.3);
}

.spin-wheel-modal-premium::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff0080, #ffd700, #00ffff, #ff0080);
  border-radius: 25px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
  opacity: 0.5;
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal-close-btn-premium {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff4444, #cc0000);
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
}

.modal-close-btn-premium:hover {
  transform: scale(1.2) rotate(90deg);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.8);
}

.modal-body-premium {
  padding: 20px;
  max-height: calc(95vh - 40px);
  overflow-y: auto;
}

.modal-body-premium::-webkit-scrollbar {
  width: 8px;
}

.modal-body-premium::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body-premium::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.5);
  border-radius: 10px;
}

/* Header Section */
.wheel-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.wheel-title {
  position: relative;
}

.title-glow {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(45deg, #ffd700, #ff8c00, #ff0080, #ffd700);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  letter-spacing: 3px;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.subtitle {
  font-size: 18px;
  color: #ffd700;
  margin-top: 10px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Main Content Layout */
.wheel-main-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Wheel Section (Left) */
.wheel-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.wheel-stage {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel-pointer-container {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  animation: pointerBounce 1.5s ease-in-out infinite;
}

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

.wheel-pointer-premium {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.wheel-wrapper-premium {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wheelCanvas {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
  border-radius: 50%;
  box-shadow: 
    0 0 40px rgba(255, 215, 0, 0.8),
    0 0 80px rgba(255, 215, 0, 0.4),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-base {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
  border-radius: 0 0 15px 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Premium Spin Button */
.spin-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.spin-btn-premium {
  position: relative;
  padding: 0;
  width: 280px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #ffd700 100%);
  background-size: 200% 200%;
  border: 4px solid #fff;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 25px rgba(255, 215, 0, 0.6),
    0 0 40px rgba(255, 140, 0, 0.4),
    inset 0 -3px 10px rgba(0, 0, 0, 0.3);
  animation: btnGlowPulse 2s ease-in-out infinite;
}

.spin-btn-premium:hover:not(:disabled) {
  transform: scale(1.08);
  box-shadow: 
    0 12px 35px rgba(255, 215, 0, 0.8),
    0 0 60px rgba(255, 140, 0, 0.6),
    inset 0 -3px 10px rgba(0, 0, 0, 0.3);
  animation: btnGlowPulse 1s ease-in-out infinite;
}

.spin-btn-premium:active:not(:disabled) {
  transform: scale(1.05);
}

.spin-btn-premium:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  animation: none;
}

@keyframes btnGlowPulse {
  0%, 100% { 
    background-position: 0% 50%;
    box-shadow: 
      0 8px 25px rgba(255, 215, 0, 0.6),
      0 0 40px rgba(255, 140, 0, 0.4),
      inset 0 -3px 10px rgba(0, 0, 0, 0.3);
  }
  50% { 
    background-position: 100% 50%;
    box-shadow: 
      0 8px 35px rgba(255, 215, 0, 0.8),
      0 0 60px rgba(255, 140, 0, 0.6),
      inset 0 -3px 10px rgba(0, 0, 0, 0.3);
  }
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2px;
}

.btn-icon {
  font-size: 28px;
  animation: btnIconSpin 4s linear infinite;
}

@keyframes btnIconSpin {
  0%, 90% { transform: rotate(0deg); }
  95%, 100% { transform: rotate(360deg); }
}

.btn-label {
  font-size: 20px;
  font-weight: 900;
  color: #000;
  text-shadow: 
    1px 1px 2px rgba(255, 255, 255, 0.5),
    -1px -1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.btn-cost {
  font-size: 14px;
  font-weight: bold;
  color: #8B4513;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Right Side: Info Section */
.wheel-info-section {
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Gold Display Card */
.gold-display-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 3px solid #ffd700;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 
    0 5px 20px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.gold-display-card:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(255, 215, 0, 0.5),
    inset 0 0 30px rgba(255, 215, 0, 0.15);
}

.card-icon {
  font-size: 50px;
  animation: coinSpin 3s ease-in-out infinite;
}

@keyframes coinSpin {
  0%, 80% { transform: rotateY(0deg); }
  85%, 95% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

.card-content {
  flex: 1;
}

.card-label {
  font-size: 14px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.card-value {
  font-size: 36px;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  letter-spacing: 1px;
}

/* Prizes Card */
.prizes-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 3px solid #ffd700;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 
    0 5px 20px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
  max-height: 500px;
  overflow-y: auto;
}

.prizes-card::-webkit-scrollbar {
  width: 8px;
}

.prizes-card::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.prizes-card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ffd700, #ff8c00);
  border-radius: 10px;
}

.prizes-header {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.prizes-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  letter-spacing: 1px;
}

.prizes-list-premium {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prize-row {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 12px;
  border: 2px solid;
  transition: all 0.3s ease;
  cursor: pointer;
}

.prize-row:hover {
  transform: translateX(5px);
}

.prize-emoji {
  font-size: 24px;
  margin-right: 12px;
  min-width: 30px;
}

.prize-name {
  flex: 1;
  font-weight: bold;
  font-size: 14px;
}

.prize-chance {
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
}

/* Prize Rarity Colors */
.legendary-prize {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(139, 0, 255, 0.2));
  border-color: #ff00ff;
  color: #ff00ff;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.legendary-prize:hover {
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.epic-prize {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 128, 255, 0.2));
  border-color: #00ffff;
  color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.epic-prize:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.rare-prize {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
  border-color: #ffd700;
  color: #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.rare-prize:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.common-prize {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(128, 128, 128, 0.2));
  border-color: #c0c0c0;
  color: #c0c0c0;
}

.gold-prize {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.2));
  border-color: #4CAF50;
  color: #4CAF50;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.special-prize {
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(21, 101, 192, 0.2));
  border-color: #2196F3;
  color: #2196F3;
  box-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
}

.lose-prize {
  background: linear-gradient(135deg, rgba(102, 102, 102, 0.2), rgba(51, 51, 51, 0.2));
  border-color: #666;
  color: #999;
}

/* Result Display */
.spin-result-premium {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 3px solid #ffd700;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 
    0 5px 20px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
  animation: resultSlideIn 0.5s ease-out;
}

@keyframes resultSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.spin-result-premium.win {
  border-color: #4CAF50;
  box-shadow: 
    0 5px 30px rgba(76, 175, 80, 0.6),
    inset 0 0 30px rgba(76, 175, 80, 0.2);
}

.spin-result-premium.lose {
  border-color: #f44336;
  box-shadow: 
    0 5px 30px rgba(244, 67, 54, 0.6),
    inset 0 0 30px rgba(244, 67, 54, 0.2);
}

.spin-result-premium.legendary-win {
  border-color: #ff00ff;
  box-shadow: 
    0 5px 40px rgba(255, 0, 255, 0.8),
    inset 0 0 40px rgba(255, 0, 255, 0.3);
  animation: resultSlideIn 0.5s ease-out, legendaryPulse 1s ease-in-out infinite;
}

@keyframes legendaryPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 5px 40px rgba(255, 0, 255, 0.8),
      inset 0 0 40px rgba(255, 0, 255, 0.3);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 
      0 8px 50px rgba(255, 0, 255, 1),
      inset 0 0 50px rgba(255, 0, 255, 0.5);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .spin-wheel-modal-premium {
    max-width: 95%;
  }
  
  .wheel-main-content {
    flex-direction: column;
    align-items: center;
  }
  
  .wheel-section {
    width: 100%;
    max-width: 500px;
  }
  
  .wheel-info-section {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .modal-body-premium {
    padding: 15px;
  }
  
  .title-glow {
    font-size: 28px;
  }
  
  .subtitle {
    font-size: 13px;
  }
  
  .wheel-stage {
    max-width: 350px;
  }
  
  .spin-btn-premium {
    width: 240px;
    height: 70px;
  }
  
  .btn-label {
    font-size: 18px;
  }
  
  .btn-cost {
    font-size: 12px;
  }
  
  .gold-display-card {
    padding: 20px;
  }
  
  .card-icon {
    font-size: 40px;
  }
  
  .card-value {
    font-size: 28px;
  }
  
  .prizes-card {
    max-height: 250px;
  }
  
  .wheel-header {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .spin-wheel-modal-premium {
    max-height: 98vh;
    width: 98%;
  }
  
  .modal-body-premium {
    padding: 10px;
  }
  
  .title-glow {
    font-size: 22px;
    letter-spacing: 0px;
  }
  
  .subtitle {
    font-size: 11px;
  }
  
  .wheel-header {
    margin-bottom: 15px;
  }
  
  .wheel-stage {
    max-width: 280px;
  }
  
  .wheel-pointer-container svg {
    width: 40px;
    height: 40px;
  }
  
  .spin-btn-premium {
    width: 200px;
    height: 60px;
  }
  
  .btn-icon {
    font-size: 20px;
  }
  
  .btn-label {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .btn-cost {
    font-size: 10px;
  }
  
  .gold-display-card {
    padding: 15px;
    gap: 15px;
  }
  
  .card-icon {
    font-size: 32px;
  }
  
  .card-label {
    font-size: 12px;
  }
  
  .card-value {
    font-size: 24px;
  }
  
  .prizes-card {
    max-height: 200px;
  }
  
  .prize-row {
    padding: 10px 12px;
  }
  
  .prize-emoji {
    font-size: 20px;
  }
  
  .prize-name {
    font-size: 12px;
  }
  
  .prize-chance {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/* How it Works Button - Enhanced Glowing Effect */
.how-it-works-btn,
.leaderboard-btn {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: auto;
  justify-content: center;
  line-height: 1;
  position: relative;
  
  /* Enhanced Glowing Effect */
  box-shadow: 
    0 0 20px rgba(74, 222, 128, 0.6),
    0 0 40px rgba(74, 222, 128, 0.4),
    0 0 60px rgba(74, 222, 128, 0.2);
  
  animation: howItWorksGlow 3s ease-in-out infinite alternate;
}

@keyframes howItWorksGlow {
  from { 
    box-shadow: 
      0 0 20px rgba(74, 222, 128, 0.6),
      0 0 40px rgba(74, 222, 128, 0.4),
      0 0 60px rgba(74, 222, 128, 0.2);
    transform: scale(1);
  }
  to { 
    box-shadow: 
      0 0 30px rgba(74, 222, 128, 0.8),
      0 0 60px rgba(74, 222, 128, 0.6),
      0 0 90px rgba(74, 222, 128, 0.4);
    transform: scale(1.05);
  }
}

.how-it-works-btn:hover,
.leaderboard-btn:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 
    0 0 40px rgba(74, 222, 128, 1),
    0 0 80px rgba(74, 222, 128, 0.8),
    0 0 120px rgba(74, 222, 128, 0.6);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Pulse Effect for Extra Attention */
.how-it-works-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-radius: 10px;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.7;
  animation: pulseRing 4s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { 
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.3;
  }
}

/* Additional sparkle effect */
.how-it-works-btn::after {
  content: '✨';
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 12px;
  animation: sparkle 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sparkle {
  0%, 100% { 
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% { 
    opacity: 0.5;
    transform: scale(1.2) rotate(180deg);
  }
}

/* Make sure it stands out among other buttons */
.how-it-works-btn {
  z-index: 10;
  position: relative;
}

/* Optional: Add a subtle text shadow for better readability */
.how-it-works-btn {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


/* Battlezone Modal Red Theme */
.battlezone-header {
  background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF0000 100%) !important;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4) !important;
}

.battlezone-title {
  color: #fff !important;
  text-shadow: 0 0 20px rgba(255, 0, 0, 0.8), 0 0 40px rgba(255, 0, 0, 0.6);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  flex: 1;
}

.battlezone-close {
  background: rgba(139, 0, 0, 0.3) !important;
  color: #fff !important;
  border: 2px solid rgba(255, 0, 0, 0.5) !important;
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
}

.battlezone-close:hover {
  background: rgba(220, 20, 60, 0.5) !important;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6) !important;
  transform: scale(1.1) rotate(90deg);
}

/* 💰 Free Gold Modal Styles */
.free-gold-hero {
  text-align: center;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.free-gold-icon {
  font-size: 60px;
  margin-bottom: 15px;
  animation: bounce 2s ease-in-out infinite;
}

.free-gold-hero h3 {
  color: #FFD700;
  font-size: 20px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.free-gold-hero p {
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.4;
}

.free-gold-content {
  display: none;
}

.free-gold-section {
  margin-bottom: 25px;
  padding: 20px;
  background: var(--bg-accent);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.free-gold-section h3 {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.free-gold-section p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.free-gold-twitter-btn {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.free-gold-twitter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.free-gold-telegram-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px;
  background: linear-gradient(45deg, #0088cc, #006699);
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.free-gold-telegram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.free-gold-note {
  color: #FFD700 !important;
  font-size: 13px !important;
  margin-top: 10px !important;
  padding: 10px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 6px;
  border-left: 3px solid #FFD700;
}

.free-gold-requirement {
  display: block;
}

/* 🔥 Netherite Challenge Modal - match old deployment (commit 0fbc56b)
   We scope overrides to #netheriteModal so other modals are unaffected.
   These values are copied from the modal styles used in that old build.
*/
#netheriteModal.modal-overlay {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

#netheriteModal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
  border: 2px solid var(--primary);
  border-radius: 15px;
  padding: 0;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

#netheriteModal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(0, 123, 255, 0.2));
}

#netheriteModal .modal-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-primary);
  text-align: center;
  flex: 1;
}

#netheriteModal .modal-close-btn {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 5px;
  border-radius: 3px;
  transition: background 0.2s ease;
}

#netheriteModal .modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
