/* ===============================
   MININGPOOL.CLUB MAIN STYLES
   =============================== */
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, sans-serif;
  background: 
    /* LEFT glow */
    linear-gradient(to right,
      #3333ff33 0%,
      #ff33ff33 10%,
      #33ffff22 20%,
      transparent 30%
    ),
    /* RIGHT glow */
    linear-gradient(to left,
      #3333ff33 0%,
      #ff33ff33 10%,
      #33ffff22 20%,
      transparent 30%
    ),
    /* CENTER background (pure black) */
    #000;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #e8e8e8;
  line-height: 1.6;
}

/* ---------- HEADER ---------- */
header {
  background: linear-gradient(135deg, #002b5b, #0077b6, #7209b7);
  color: #ffd700;
  text-align: center;
  padding: 80px 20px;
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

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

header .logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 1px;
}

header p {
  font-size: 1.6em;
  margin-top: 10px;
  color: #f6d84e;
}

/* ---------- NAVIGATION ---------- */
nav {
  background: #111a2b;
  text-align: center;
  padding: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: #ffd700;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

nav a:hover {
  text-decoration: underline;
  color: #fff;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 60px 15%;
}

.section h2 {
  color: #f6d84e;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.section p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

/* informational note style */
.source-note {
  font-size: 0.9em;
  color: #bbb;
  font-style: italic;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 8px;
}


/* ---------- NOTE BOX ---------- */
.note {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff4b4b;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff5cc;
  margin: 25px 0;
  font-size: 1em;
  box-shadow: 0 0 10px rgba(255, 75, 75, 0.25); /* red glow */
}

/* Red highlighted text inside note */
.alert-text {
  color: #ff4b4b;
  font-weight: bold;
  display: inline-block;
  margin: 5px 0;
}

/* ---------- BENEFITS LIST ---------- */
.benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefits li {
  margin: 8px 0;
  font-size: 1.05em;
}

/* ---------- REVIEWS ---------- */
.reviews blockquote {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #f6d84e;
  padding: 10px 15px;
  margin: 10px 0;
  font-style: italic;
  border-radius: 5px;
}

/* ---------- DELEGATION STEPS ---------- */
.delegate-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 25px;
}

.step {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.step h3 {
  color: #f6d84e;
  margin-top: 0;
}

.step h4 {
  color: #ffd700;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 1.05em;
}

/* ================= STEP CARDS ================= */
.delegate-steps {
  display: flex;
  flex-direction: column; /* stack 1 by 1 */
  gap: 25px;
  margin-top: 30px;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-left: 4px solid #f6d84e;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-left-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.step-card h3 {
  color: #f6d84e;
  margin-top: 0;
}

.step-card h4 {
  color: #ffd700;
  margin-bottom: 5px;
}

.step-card p,
.step-card ul {
  color: #e8e8e8;
  font-size: 1.05em;
  line-height: 1.6;
}

.step-card ul {
  list-style-type: none;
  padding-left: 0;
}

.step-card ul li {
  margin: 6px 0;
}

/* Wallet images fit nicely inside cards */
.wallet-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 15px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* QR Image in Pool Step */
.qr {
  width: 180px;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
}



/* ---------- PRODUCER KEY ---------- */
.producer-key {
  display: inline-block;
  background: #111;
  padding: 12px 16px;
  border-radius: 10px;
  color: #f0c94b;
  font-size: 1.2em;
  font-weight: bold;
  word-break: break-all;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- QR CODE & WALLET IMAGES ---------- */
.qr {
  width: 150px;
  margin-top: 12px;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Large wallet images */
.wallet-img {
  display: block;
  max-width: 100%;   /* fit page width, prevents horizontal scroll */
  height: auto;      /* keep proportion */
  border-radius: 8px;
  margin: 20px auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- DASHBOARD ---------- */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.dashboard-stats .stat {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-stats h4 {
  color: #ffd700;
  margin-bottom: 5px;
}

/* Dashboard images layout */
.dashboard-images {
  display: flex;
  flex-direction: column;  /* vertical stacking ALWAYS */
  align-items: center;      /* center the images */
  gap: 25px;
  margin-top: 20px;
}

.dashboard-img {
  width: 90%;               /* fits nicely in the page */
  max-width: 800px;         /* optional: prevent huge scaling */
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.06);
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .dashboard-img {
    max-width: 90%;
  }
}


/* ---------- FOOTER ---------- */
footer {
  background: #081020;
  text-align: center;
  padding: 40px 10px;
  color: #ccc;
  font-size: 0.95em;
}

footer a {
  color: #f6d84e;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .section {
    padding: 50px 8%;
  }
}

@media (max-width: 768px) {
  header {
    padding: 60px 10px;
  }

  header h1 {
    font-size: 2em;
  }

  header p {
    font-size: 1.2em;
  }

  .delegate-steps {
    grid-template-columns: 1fr;
  }

  .qr {
    width: 100px;
    margin: 10px auto;
  }

  nav a {
    display: inline-block;
    margin: 6px 10px;
  }
}
