/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #050505;
}

/* PAGE */
.working-page {
  position: relative;
  height: 100vh;
  width: 100%;

  background: linear-gradient(
    to bottom,
    #7A1E1E 0%,
    #6b1919 25%,
    #4a1111 50%,
    #1a0505 75%,
    #000000 100%
  );
}

/* CENTER CONTENT */
.center {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
}

/* TITLE */
.center h1 {
  font-weight: 300;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.9);
}

/* NOTE */
.note {
  margin-top: 20px;
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* SUPPORT BLOCK */
.support {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.support p:first-child {
  margin-bottom: 6px;
}

/* BRAND */
.brand {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);

  font-family: 'Playfair Display', serif;
  font-size: 20px;              /* slightly smaller */
  letter-spacing: 2px;

  font-weight: 300;             /* lighter weight */
  color: rgba(255, 255, 255, 0.6); /* softer tone */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .center h1 {
    letter-spacing: 5px;
  }
}

@media (max-width: 480px) {
  .center h1 {
    letter-spacing: 4px;
  }

  .note {
    font-size: 12px;
  }

  .support {
    font-size: 11px;
  }
}




/*Support Section*/
/* SUPPORT */
.support {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  text-align: center;
}

/* TITLE */
.support-title {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
}

/* ROW */
.wallet-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 10px;
  flex-wrap: wrap;
}

/* LABEL */
.wallet-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* CODE BOX */
.code-box {
  display: block;

  padding: 10px 14px;
  border-radius: 12px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);

  font-size: 12px;
  color: rgba(255,255,255,0.85);

  min-width: 280px;
  max-width: 100%;

  cursor: pointer;
  transition: all 0.25s ease;

  backdrop-filter: blur(6px);
}

/* HOVER */
.code-box:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
}

/* COPIED STATE */
.code-box.copied {
  border-color: #B8965A;
}

.code-box.copied::after {
  content: "Copied";
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #B8965A;
}