* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: url('../img/Doge2.0Web.jpg') no-repeat center top fixed;
  background-size: contain;
  background-color: black;
  color: #fff;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 90px 0 90px;
  background: transparent;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 28px;
}

.header a {
  text-decoration: none;
  color: #d7d7d7;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.header a:hover {
  color: #fff;
}

/* FOOTER */
.footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}

.footer a {
  margin: 0 12px;
  text-decoration: none;
  color: #aaa;
  transition: 0.3s;
}

.footer a:hover {
  color: #fff;
}


/* MOBILE BACKGROUND */
@media (max-width: 768px) {
  body {
    background: url('../img/Dogemobile.jpg') no-repeat center top fixed;
    background-size: cover;
  }
}


/* MOBILE NAV LAYOUT */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-end;
    padding: 20px 20px 0 20px;
  }

  .nav-left,
  .nav-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}

/* MOBILE LINK SPACING FIX */
@media (max-width: 768px) {
  .nav-left a,
  .nav-right a {
    margin-bottom: 10px;
  }

  .nav-right a:last-child {
    margin-bottom: 0;
  }
}


/* SUBPAGE (ABOUT, ETC) */
.subpage-body {
  background: #000 !important;
  color: #fff;
}

.content-page {
  max-width: 900px;
  margin: 120px auto 80px auto;
  padding: 20px;
}

.content-box {
  line-height: 1.6;
  font-size: 16px;
}

.content-box h1 {
  margin-bottom: 20px;
}

.content-box h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.signature {
  margin-top: 30px;
  font-weight: bold;
}


/* HOTSPOTS */
.coin-hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  pointer-events: auto;
}

/* DESKTOP POSITIONS (adjust if needed) */
.hotspot-bch2 { left: 12%; top: 63%; }
.hotspot-btc2 { left: 34%; top: 63%; }
.hotspot-dgb2 { left: 56%; top: 63%; }
.hotspot-ltc2 { left: 78%; top: 63%; }

/* HIDE HOTSPOTS ON PORTRAIT MOBILE */
@media (max-width: 768px) and (orientation: portrait) {
  .coin-hotspots {
    display: none;
  }
}
