/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background-color: #0c0d18;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(12,13,24, 0.85);
  padding: 20px 0;
  z-index: 100;
}
.navbar-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}
.logo span {
  color: #8be6ff;
}

.logo-img {
  height: 40px; /* adjust size */
  width: auto;
  display: block;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}
.nav-links a {
  color: #dddddd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #8be6ff;
}
.nav-actions {
  display: flex;
  gap: 1rem;
}
.btn-primary {
  background: #8be6ff;
  color: #0c0d18;
  padding: 0.6rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #6fd9e8;
}
.btn-outline {
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.5rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover {
  background: #ffffff;
  color: #0c0d18;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Hero section */
.hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(rgba(16, 0, 40, 0.7), rgba(25, 0, 66, 0.7)),
              url('images/home-hero.jpg') center center/cover no-repeat;
  /* Replace with your own background image path */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
}

/* HERO TEXT */
.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #b794f4; /* Light purple accent */
  display: block;
}

.hero-text p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  background-color: #7b5cff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #a184ff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #fff;
  color: #000;
}.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
}
.stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.stat-icon {
  font-size: 1.8rem;
}
.small {
  font-size: 0.9rem;
  color: #ccc;
}
.large {
  font-size: 1.3rem;
  font-weight: bold;
}
.hero-image img {
  width: 100%;
  max-width: 400px;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #0c0d18;
    width: 70%;
    height: calc(100vh - 70px);
    padding: 2rem;
    gap: 2rem;
    transition: right 0.4s ease;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hamburger {
    display: flex;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 80px 15px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

/* MEDIA LOGOS SECTION */
.media-logos {
  width: 100%;
  background-color: #0c0d18;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.logos-container img {
  max-height: 28px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logos-container img:hover {
  opacity: 1;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .logos-container {
    justify-content: center;
    gap: 25px;
  }

  .logos-container img {
    max-height: 22px;
  }
}


.mining-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 5rem 10%;
  flex-wrap: wrap;
  background-color: #fff;
}

.mining-content {
  flex: 1 1 45%;
}

.mining-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f0f1c;
  margin-bottom: 1rem;
}

.mining-content p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.mining-stats {
  display: flex;
  gap: 3.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.mining-stats .label {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.mining-stats h3 {
  font-size: 2rem;
  color: #0f0f1c;
  font-weight: 700;
}

.mining-content .note {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 2rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #6c3df4;
  color: #fff;
}

.btn.primary:hover {
  background-color: #532cd8;
}

.btn.secondary {
  border: 2px solid #ccc;
  color: #333;
}

.btn.secondary:hover {
  border-color: #6c3df4;
  color: #6c3df4;
}

/* IMAGE SECTION */
.mining-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  position: relative;
}

.image-bg {
  background-color: #f6f7fb;
  padding: 2rem;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-bg img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .mining-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 7%;
  }

  .mining-content {
    flex: 1 1 100%;
  }

  .mining-content h2 {
    font-size: 2.2rem;
  }

  .mining-stats {
    justify-content: center;
    gap: 2rem;
  }

  .image-bg {
    width: 100%;
    margin-top: 2rem;
  }

  .image-bg img {
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  .mining-content h2 {
    font-size: 1.9rem;
  }

  .mining-content p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .image-bg img {
    max-width: 90%;
  }
}

.btc-rewards-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 5rem 10%;
  flex-wrap: wrap;
  background-color: #fff;
}

.btc-content {
  flex: 1 1 45%;
}

.btc-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0f0f1c;
  margin-bottom: 1rem;
}

.btc-content p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btc-content .btn {
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #6c3df4;
  color: #fff;
}

.btc-content .btn:hover {
  background-color: #532cd8;
}

/* IMAGE SECTION */
.btc-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  position: relative;
}

.image-bg {
  background-color: #f6f7fb;
  padding: 2rem;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-bg img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .btc-rewards-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 3rem 7%;
  }

  .btc-content h2 {
    font-size: 2.2rem;
  }

  .btc-content p {
    font-size: 1rem;
  }

  .image-bg {
    width: 100%;
    margin-top: 2rem;
  }

  .image-bg img {
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  .btc-content h2 {
    font-size: 1.9rem;
  }

  .btc-content p {
    font-size: 0.95rem;
  }

  .btc-content .btn {
    width: 100%;
    text-align: center;
  }

  .image-bg img {
    max-width: 180px;
  }
}

/* BTC stats section with subtle SVG pattern background */
.btc-stats-pattern {
  position: relative;
  padding: 60px 6%;
  overflow: hidden;
  /* subtle dark gradient behind the pattern so cards pop */
  background: linear-gradient(180deg, #0f1724 0%, #121623 100%);
}

/* repeating lightweight SVG pattern (BTC glyph) */
.btc-stats-pattern::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffb000' fill-opacity='0.06'%3E%3Cpath d='M60 0a60 60 0 1 0 0 120A60 60 0 0 0 60 0z'/%3E%3C/text x='28' y='82' font-size='60' font-family='Arial'%3EB%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-position: center;
  background-size: 140px;
  z-index: 0;
  pointer-events: none;
}

/* container that holds the two cards */
.stats-wrap {
  position: relative;           /* above the pattern */
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: stretch;
  justify-content: center;
}

/* each card: light grey background, rounded */
.stat-card {
  background: #f6f7fb;         /* light grey card background */
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 6px 20px rgba(2,6,23,0.12);
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-width: 240px;
}

/* big number style */
.stat-number {
  font-size: 3rem;             /* large number */
  font-weight: 700;
  color: #0f1724;              /* dark text */
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.6px;
}

/* label below the number */
.stat-label {
  font-size: 1rem;
  color: #4b5563;
  font-weight: 600;
}

/* small screens: stack cards and center content */
@media (max-width: 768px) {
  .btc-stats-pattern {
    padding: 36px 4%;
  }

  .stats-wrap {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .stat-card {
    flex: 1 1 auto;
    text-align: center;
    padding: 24px;
    border-radius: 14px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }
}

/* very small screens: tighten spacing */
@media (max-width: 380px) {
  .stat-number { font-size: 1.9rem; }
  .stat-card { padding: 18px; border-radius: 12px; }
}



/* === Wallets === */
.wallets-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.wallets-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.wallets-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e3c72;
}

.wallets-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.wallets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.wallet-item {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.wallet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.wallet-item img {
  max-width: 60px;
  height: auto;
  margin-bottom: 0.75rem;
}

.wallet-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  margin: 50% 5%;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.progress-bar {
  background: #ddd;
  border-radius: 20px;
  overflow: hidden;
  height: 20px;
  margin-top: 1rem;
}

.progress {
  height: 100%;
  width: 0;
  background: #4CAF50;
  transition: width 3s ease;
}

.selected-wallet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.selected-wallet-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid #ddd;
}

#walletForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

#walletForm textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  font-size: 1rem;
}

#walletForm button {
  width: 100%;
  padding: 0.75rem;
  background: green;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
