@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #F4B728;
  --bg: #0b0b0b;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--bg);
  font-family: 'Source Code Pro', monospace;
  color: var(--gold);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* ── Background SVG shapes ── */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Path 38 — blob circular, parte inferior izquierda */
.shape-38 {
  position: absolute;
  top: -3.52vh;
  left: -35.26vw;
  width: 112.19vw;
  height: auto;
}

/* Path 32 — ola inferior ancho completo */
.shape-32 {
  position: absolute;
  top: 45.19vh;
  left: 0;
  width: 106.09vw;
  height: auto;
}

/* ── Decorative "Hello World!" text ── */
.deco-text {
  position: absolute;
  top: 14.8vh;
  left: 7.29vw;
  display: flex;
  flex-direction: column;
  gap: 0.42vw;
  z-index: 1;
}

.deco-text span {
  display: block;
  font-family: 'Source Code Pro', monospace;
  color: var(--gold);
  letter-spacing: 0;
}

.deco-text span:first-child {
  font-size: clamp(14px, 2.08vw, 55px);
  opacity: 0.4;
  margin-bottom: 0.52vw;
}

.deco-text span:not(:first-child) {
  font-size: clamp(14px, 2.08vw, 55px);
  opacity: 0.7;
}

/* ── Logo ── */
.logo {
  position: absolute;
  top: 39px;
  right: 42px;
  width: 111px;
  height: 115px;
  z-index: 2;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Hero / main text ── */
.hero {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 7.29vw;
  z-index: 1;
}

.coming-soon {
  font-family: 'Source Code Pro', monospace;
  font-size: 55px;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1.2;
}

.sub-text {
  font-family: 'Source Code Pro', monospace;
  font-size: 40px;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 50px;
}

.btn-donate {
  display: inline-block;
  margin-top: 40px;
  width: 170px;
  height: 74px;
  background: url('bgbuttom.svg') no-repeat center / cover;
  border-radius: 10px;
  font-family: 'Source Code Pro', monospace;
  font-size: 35px;
  line-height: 74px;
  color: #141414;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0;
}

/* ── Donate page ── */
.page-donate {
  overflow-y: auto;
  overflow-x: hidden;
}

.donate-content {
  position: relative;
  z-index: 1;
  padding: 170px 14.5vw 80px;
}

.donate-title {
  font-family: 'Source Code Pro', monospace;
  font-size: 50px;
  line-height: 63px;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 48px;
}

.donate-desc {
  font-family: 'Source Code Pro', monospace;
  font-size: 23px;
  line-height: 30px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 64px;
}

.donate-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 64px;
}

.donate-section:last-child {
  align-items: center;
}

.donate-section-text {
  flex: 1;
  min-width: 0;
}

.donate-label {
  font-family: 'Source Code Pro', monospace;
  font-size: 23px;
  line-height: 30px;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 16px;
}

.donate-address {
  font-family: 'Source Code Pro', monospace;
  font-size: 23px;
  line-height: 30px;
  color: var(--gold);
  opacity: 0.7;
  word-break: break-all;
  min-height: 128px;
}

.donate-qr {
  flex-shrink: 0;
  width: 185px;
  height: 185px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  padding: 6px;
  object-fit: contain;
}

.donate-mailto {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
}

.donate-mailto:hover {
  opacity: 0.7;
}

.copy-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0 0 0 6px;
  cursor: pointer;
  color: var(--gold);
  vertical-align: middle;
  transition: opacity 0.15s;
}

.copy-btn:hover {
  opacity: 1;
}

.copy-btn.copied {
  opacity: 1;
}

.copy-btn::after {
  content: 'Copied!';
  position: absolute;
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: #0b0b0b;
  font-family: 'Source Code Pro', monospace;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}

.copy-btn.copied::after {
  opacity: 1;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .shape-38 {
    top: auto;
    bottom: -80vw;
    left: -80vw;
    width: 180vw;
    height: auto;
  }

  .shape-32 {
    top: auto;
    bottom: -10vw;
    left: -110px;
    width: 180vw;
    height: auto;
  }
  /*hello world block*/
  .deco-text {
    top: 20vh;
    left: 10vw;
    gap: 1vw;
  }

  .deco-text span:first-child {
    font-size: clamp(14px, 4.5vw, 28px);
    margin-bottom: 2vw;
  }

  .deco-text span:not(:first-child) {
    font-size: clamp(14px, 4.5vw, 28px);
  }

  .sub-text {
    font-size: 24px;
    line-height: 30px;
    margin-top: 8px;
  }

  .logo {
    top:19px;
    right:15px;
    width: 70px;
    height: 72px;
  }

  .hero {
    padding-left: 10vw;
    padding-right: 5vw;
    height: 40vh;
    align-items: flex-start;
  }

  .coming-soon {
    font-size: clamp(22px, 6.5vw, 40px);
    letter-spacing: 0;
  }

  .btn-donate {
    width: 120px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    margin-top: 34px;
  }

  .donate-content {
    padding: 120px 10vw 60px;
  }

  .donate-title {
    font-size: clamp(13px, 4.5vw, 50px);
    line-height: 1.3;
    white-space: nowrap;
    margin-bottom: 32px;
  }

  .donate-desc,
  .donate-label,
  .donate-address {
    font-size: clamp(13px, 3.5vw, 20px);
    line-height: 1.5;
  }

  .donate-section {
    flex-direction: column;
    gap: 24px;
  }

  .donate-section:last-child {
    align-items: flex-start;
  }

  .donate-qr {
    width: 140px;
    height: 140px;
  }
}
