/* staking.css — Optimized styles for staking page */
/* Updated: 2025-06-01 2:40 AM PST */

body.staking .hero-section {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  min-height: 50vh;
  background-color: var(--color-background-dark);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
}

body.staking .wrapper {
  display: block !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.staking .content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


body.staking .btn {
  display: inline-block;
  background-color: var(--color-accent-dark);
  color: #fff !important;
  font-weight: bold;
  padding: 10px 16px;
  margin: 1rem 0.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

body.staking .btn:hover {
  background-color: #007bff;
}

body.staking:not(.dark-mode) .hero-section .container {
  background-color: rgba(255, 255, 255, 0.85);
  color: #111;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}

body.staking.dark-mode .hero-section {
  background-color: var(--color-background-dark);
  color: var(--color-text-dark);
}

body.staking.dark-mode .hero-section .container {
  background-color: rgba(30, 30, 30, 0.8); /* richer dark */
  color: #eee;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.8);
  text-align: center;
}

body.staking.dark-mode .btn {
  background-color: #3399ff;
  color: #fff;
}

body.staking.dark-mode .btn:hover {
  background-color: #007bff;
}

/* 📱 Responsive - Mobile Cleanup */
@media (max-width: 768px) {
  body.staking .hero-section {
    min-height: 30vh;
    padding: 1rem 0 !important;
  }

  body.staking .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (prefers-color-scheme: light) {
  .hero-content h1,
  .hero-content p {
    color: #111 !important;  /* or #000 if needed */
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5); /* subtle contrast */
  }
}


body.staking .page-title,
body.staking .page-subtitle {
  color: #000;
  text-align: center;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.2);
}

body.staking.dark-mode .page-title,
body.staking.dark-mode .page-subtitle {
  color: #f5f5f5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}


body.dark-mode .hero-section .lead {
  color: #ccc;
}
