:root {
  --terminal-bg: #090611;
  --terminal-content: #05030a;
  --terminal-line: #ad8dff;
  --terminal-border: rgba(173, 141, 255, 0.34);
  --terminal-soft: rgba(173, 141, 255, 0.14);
  --terminal-soft-strong: rgba(173, 141, 255, 0.22);
  --tab-bg: rgba(111, 87, 186, 0.32);
  --tab-hover: rgba(129, 101, 209, 0.36);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top, #1a1132 0%, var(--terminal-bg) 58%);
  color: var(--terminal-line);
  font-family: Consolas, "Courier New", monospace;
  overflow-x: hidden;
}

body.home-no-scroll {
  height: 100dvh;
  overflow: hidden;
}

.site-header {
  position: relative;
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 4px 20px 0;
  background: rgba(255, 255, 255, 0.02);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--terminal-border);
  z-index: 1;
}

.terminal-chrome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(173, 141, 255, 0.75);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #d7c3ff;
  padding-bottom: 12px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.site-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-left: 20px;
}

.nav-link {
  position: relative;
  z-index: 2;
  color: #d7c3ff;
  text-decoration: none;
  border: 1px solid var(--terminal-border);
  border-bottom-color: rgba(173, 141, 255, 0.2);
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(150, 122, 231, 0.3) 0%, var(--tab-bg) 100%);
  padding: 14px 20px 16px;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1;
  min-width: 128px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.nav-link:hover {
  background: linear-gradient(180deg, rgba(169, 141, 248, 0.36) 0%, var(--tab-hover) 100%);
}

.nav-link.is-active {
  z-index: 4;
  background: var(--terminal-content);
  border-bottom-color: transparent;
  margin-bottom: -1px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -2px;
  height: 3px;
  background: var(--terminal-content);
}

.page-content {
  min-height: calc(100dvh - 148px);
  padding: 28px 24px 36px;
  display: grid;
  place-items: center;
  background: var(--terminal-content);
}

.page-block {
  width: min(900px, 100%);
  text-align: left;
}

.hero-title {
  margin: 0;
  color: #d9c6ff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
}

.hero-title::before {
  content: "> ";
}

.page-text {
  margin: 14px 0 0;
  color: #bf9dff;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.5;
}

.page-text::before {
  content: "> ";
}

.hero-actions {
  margin-top: 24px;
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cta-button,
.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--terminal-border);
  border-radius: 10px;
  background: var(--terminal-soft);
  color: #dac8ff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.cta-button:hover,
.cta-button-secondary:hover {
  background: var(--terminal-soft-strong);
}

.page-block-home {
  transform: none;
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 12px 16px 0;
  }

  .terminal-chrome,
  .brand {
    padding-bottom: 10px;
  }

  .site-nav {
    margin-left: 0;
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .nav-link {
    min-width: max-content;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.98rem;
  }

  .nav-link.is-active {
    margin-bottom: 0;
    border-bottom-color: var(--terminal-border);
  }

  .nav-link.is-active::after {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}

.home-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-main-title {
  margin: 0;
  color: #d9c6ff;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.home-heading {
  margin: 10px 0 0;
  color: #ceb0ff;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 700;
}

.home-subtitle {
  margin: 8px 0 0;
  color: #bf9dff;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.home-stats {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-stat {
  border: 1px solid var(--terminal-border);
  border-radius: 10px;
  background: rgba(173, 141, 255, 0.08);
  padding: 14px 12px;
  text-align: center;
}

.home-stat-value {
  color: #dccbff;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
}

.home-stat-label {
  margin-top: 8px;
  color: #b693ff;
  font-size: clamp(0.9rem, 1.8vw, 1.02rem);
}

@media (max-width: 860px) {
  .home-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.home-layout-terminal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-type-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #d9c6ff;
  font-size: clamp(2rem, 8vw, 5.1rem);
  font-weight: 800;
  line-height: 1.05;
}

#home-heading-line {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #c9abff;
}

.home-prompt {
  color: #bf9dff;
}

.home-cursor {
  animation: homeBlink 1s steps(1, end) infinite;
}

.home-subtitle-terminal {
  margin: 8px 0 0;
  color: #bf9dff;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.home-reveal {
  opacity: 0;
  transform: translateY(8px);
}

.home-reveal.home-show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@keyframes homeBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.home-left {
  justify-self: start;
  align-self: start;
  width: min(1100px, 100%);
  margin-top: 12px;
}

.home-layout-terminal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-type-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #d9c6ff;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-weight: 800;
  line-height: 1.05;
}

.home-type-line-sub {
  margin-top: 10px;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  color: #c9abff;
  font-weight: 700;
}

.home-prompt {
  color: #bf9dff;
}

.home-cursor {
  animation: homeBlink 1s steps(1, end) infinite;
}

.home-cursor.is-hidden {
  display: none;
}

.home-terminal-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.home-terminal-actions.is-hidden {
  display: none;
}

.home-terminal-actions.is-visible {
  display: flex;
}

.home-terminal-actions .terminal-link {
  color: #d5c1ff;
  text-decoration: none;
  border: 1px solid rgba(171, 135, 255, 0.32);
  border-radius: 10px;
  background: rgba(168, 132, 255, 0.14);
  padding: 10px 12px;
  width: fit-content;
}

.home-terminal-actions .terminal-link:hover {
  background: rgba(168, 132, 255, 0.24);
}

.home-mini-about {
  margin-top: 12px;
  width: min(780px, 100%);
  min-height: 178px;
  border-left: 1px solid rgba(171, 135, 255, 0.3);
  padding-left: 12px;
}

.home-mini-about.is-hidden {
  display: none;
}

.home-mini-about.is-visible {
  display: block;
}

.home-mini-about-title {
  margin: 0;
  color: #cdb3ff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-mini-about-text {
  margin: 7px 0 0;
  color: #b99bff;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 74ch;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .home-terminal-actions .terminal-link {
    width: 100%;
  }
}

.blog-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-grid {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.blog-widget {
  border: 1px solid var(--terminal-border);
  border-radius: 10px;
  background: rgba(173, 141, 255, 0.08);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-widget-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--terminal-border);
  background: rgba(173, 141, 255, 0.12);
}

.blog-widget-title {
  margin: 0;
  color: #dbc9ff;
  font-size: 1.05rem;
}

.blog-widget-time {
  color: #b896ff;
  font-size: 0.82rem;
  white-space: nowrap;
}

.blog-widget-body {
  padding: 12px;
  color: #c9abff;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow: auto;
  max-height: 280px;
}

.admin-body {
  background: radial-gradient(circle at top, #1a1132 0%, var(--terminal-bg) 58%);
  color: var(--terminal-line);
  font-family: Consolas, "Courier New", monospace;
}

.admin-wrap {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 24px;
}

.admin-card {
  width: min(840px, 100%);
  border: 1px solid var(--terminal-border);
  border-radius: 12px;
  background: rgba(173, 141, 255, 0.08);
  padding: 16px;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.admin-label {
  color: #c9abff;
  font-size: 0.95rem;
}

.admin-input,
.admin-textarea {
  width: 100%;
  border: 1px solid var(--terminal-border);
  border-radius: 8px;
  background: rgba(5, 3, 10, 0.9);
  color: #e0d0ff;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.98rem;
  padding: 10px;
}

.admin-textarea {
  min-height: 190px;
  resize: vertical;
}

.admin-actions {
  margin-top: 6px;
}

.admin-btn {
  border: 1px solid var(--terminal-border);
  border-radius: 8px;
  background: var(--terminal-soft);
  color: #e0d0ff;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
}

.admin-btn:hover {
  background: var(--terminal-soft-strong);
}

.admin-btn-ghost {
  margin-top: 12px;
}

.admin-error {
  color: #ff8eb0;
}

.admin-ok {
  color: #9df2c2;
}

@media (max-width: 900px) {
  .blog-grid {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
}


/* Blog placement overrides */
.blog-page {
  justify-self: start;
  align-self: start;
  width: min(1240px, 100%);
}

.blog-grid {
  width: 100%;
  justify-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .blog-page {
    width: 100%;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.admin-posts {
  margin-top: 20px;
  border-top: 1px solid var(--terminal-border);
  padding-top: 16px;
}

.admin-posts-title {
  margin: 0 0 12px;
  color: #d8c5ff;
  font-size: 1.1rem;
}

.admin-post-item {
  border: 1px solid var(--terminal-border);
  border-radius: 10px;
  padding: 12px;
  background: rgba(173, 141, 255, 0.06);
  margin-bottom: 12px;
}

.admin-actions-split {
  display: flex;
  gap: 10px;
}

.admin-delete-form {
  margin-top: 8px;
}

.admin-btn-danger {
  background: rgba(255, 89, 130, 0.16);
  border-color: rgba(255, 114, 148, 0.45);
}

.admin-btn-danger:hover {
  background: rgba(255, 89, 130, 0.26);
}

/* Admin compact list with search */
.admin-post-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-post-item {
  margin: 0;
  padding: 0;
}

.admin-post-summary {
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  cursor: pointer;
  user-select: none;
}

.admin-post-summary::-webkit-details-marker {
  display: none;
}

.admin-post-summary-title {
  color: #ddccff;
  font-weight: 700;
}

.admin-post-summary-time {
  color: #b693ff;
  font-size: 0.84rem;
}

.admin-post-detail-body {
  padding: 0 12px 12px;
  border-top: 1px solid var(--terminal-border);
}

.admin-textarea-edit {
  min-height: 150px;
}

.blog-cursor {
  display: inline-block;
  margin-left: 6px;
  animation: homeBlink 1s steps(1, end) infinite;
}

.crypto-page {
  justify-self: start;
  align-self: start;
  width: min(1240px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.crypto-type-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #d9c6ff;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
}

.crypto-type-sub {
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  font-weight: 700;
  color: #c9abff;
}

.crypto-grid-wrap.is-hidden {
  display: none;
}

.crypto-grid-wrap.is-visible {
  display: block;
}

.crypto-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.crypto-card {
  border: 1px solid var(--terminal-border);
  border-radius: 10px;
  background: rgba(173, 141, 255, 0.1);
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}

.crypto-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}

.crypto-card span {
  color: #dccbff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}

@media (max-width: 1100px) {
  .crypto-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .crypto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .crypto-grid {
    grid-template-columns: 1fr;
  }
}

/* Supported crypto: terminal-like card overrides */
.crypto-card {
  position: relative;
  border: 1px solid rgba(171, 135, 255, 0.32);
  border-radius: 10px;
  background: rgba(168, 132, 255, 0.12);
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 30px;
}

.crypto-card::before {
  content: ">";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-52%);
  color: #c9b0ff;
  font-weight: 700;
}

.crypto-card img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.crypto-card span {
  color: #d5c1ff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.crypto-card:hover {
  background: rgba(168, 132, 255, 0.2);
}

.home-jtip-widget {
  position: fixed;
  right: 24px;
  bottom: 22px;
  width: min(520px, calc(100vw - 34px));
  border: 1px solid rgba(171, 135, 255, 0.32);
  border-radius: 10px;
  background: rgba(19, 13, 36, 0.94);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  padding: 10px 12px;
  z-index: 20;
}

.home-jtip-widget.is-hidden {
  display: none;
}

.home-jtip-widget.is-visible {
  display: block;
}

.home-jtip-head {
  color: #b896ff;
  font-size: 0.86rem;
  margin-bottom: 8px;
  text-transform: lowercase;
}

.home-jtip-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #d5c1ff;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.35;
  min-height: 24px;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 860px) {
  .home-jtip-widget {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
}

/* Home jtip widget: larger + real terminal feel */
.home-jtip-widget {
  right: 28px;
  bottom: 88px;
  width: min(760px, calc(100vw - 44px));
  border: 1px solid rgba(171, 135, 255, 0.34);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 10, 32, 0.98) 0%, rgba(8, 5, 18, 0.98) 100%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
  padding: 0 0 120px 0;
  overflow: hidden;
}

.home-jtip-head {
  margin: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: #d2bbff;
  font-size: 0.94rem;
  border-bottom: 1px solid rgba(171, 135, 255, 0.26);
  background: rgba(255, 255, 255, 0.03);
}

.home-jtip-head::before,
.home-jtip-head::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(173, 141, 255, 0.72);
}

.home-jtip-line {
  min-height: 88px;
  padding: 16px 16px 18px;
  gap: 12px;
  color: #e1d0ff;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
}

@media (max-width: 860px) {
  .home-jtip-widget {
    width: 100%;
    margin-top: 20px;
    padding: 0 0 72px 0;
  }

  .home-jtip-line {
    min-height: 62px;
    font-size: clamp(1.08rem, 4.4vw, 1.45rem);
  }
}





.site-footer {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--terminal-border);
  background: rgba(255, 255, 255, 0.02);
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #d7c3ff;
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.terminal-link {
  color: #d5c1ff;
  text-decoration: none;
  border: 1px solid rgba(171, 135, 255, 0.32);
  border-radius: 10px;
  background: rgba(168, 132, 255, 0.14);
  padding: 10px 12px;
  line-height: 1;
}

.terminal-link:hover {
  background: rgba(168, 132, 255, 0.24);
}

@media (max-width: 860px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }

  .footer-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.terms-page {
  width: min(1100px, 100%);
  margin-top: 0;
  justify-self: start;
  align-self: start;
}

.terms-scroll-type {
  margin: 22px 0 0;
  padding-top: 300px;
  color: #d7c3ff;
  font-size: clamp(0.95rem, 1.45vw, 1.08rem);
  line-height: 1.68;
  white-space: pre-wrap;
  word-break: break-word;
}

.privacy-page {
  width: min(1100px, 100%);
  margin-top: 0;
  justify-self: start;
  align-self: start;
}

.privacy-scroll-type {
  margin: 22px 0 0;
  padding-top: 300px;
  color: #d7c3ff;
  font-size: clamp(0.95rem, 1.45vw, 1.08rem);
  line-height: 1.68;
  white-space: pre-wrap;
  word-break: break-word;
}

.how-page {
  width: min(1100px, 100%);
  justify-self: start;
  align-self: start;
}

.how-content {
  margin-top: 18px;
  width: min(900px, 100%);
}

.how-content.is-hidden {
  display: none;
}

.how-content.is-visible {
  display: block;
}

.how-subline,
.how-note {
  margin: 0;
  color: #bf9dff;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.6;
}

.how-note {
  margin-top: 14px;
}

.how-section-title {
  margin: 16px 0 10px;
  color: #d7c3ff;
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
}

.how-command-list {
  margin: 0;
  padding-left: 22px;
  color: #d9c6ff;
  display: grid;
  gap: 8px;
}

.how-command-list li {
  line-height: 1.5;
}

.how-command-list code {
  color: #e4d5ff;
  background: rgba(168, 132, 255, 0.12);
  border: 1px solid rgba(171, 135, 255, 0.24);
  border-radius: 6px;
  padding: 2px 6px;
}

.donate-page {
  width: min(980px, 100%);
  justify-self: start;
  align-self: start;
}

.donate-type-line {
  margin: 0;
  color: #d9c6ff;
  font-size: clamp(1.2rem, 3vw, 2.15rem);
  line-height: 1.28;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.donate-type-sub {
  margin-top: 12px;
  color: #bf9dff;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
}

.donate-note {
  margin: 10px 0 0;
  color: #b99bff;
  font-size: 0.93rem;
  line-height: 1.5;
  max-width: 86ch;
}

.donate-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.donate-item {
  border: 1px solid rgba(171, 135, 255, 0.32);
  border-radius: 10px;
  background: rgba(168, 132, 255, 0.1);
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.donate-coin {
  margin: 0;
  color: #d7c3ff;
  font-size: 1rem;
}

.donate-address {
  margin: 0;
  border: 1px solid rgba(171, 135, 255, 0.26);
  border-radius: 8px;
  background: rgba(8, 5, 18, 0.92);
  color: #d9c6ff;
  padding: 9px 10px;
  font-family: inherit;
  font-size: 0.93rem;
  text-align: left;
  cursor: pointer;
  word-break: break-all;
}

.donate-copy-btn {
  border: 1px solid rgba(171, 135, 255, 0.32);
  border-radius: 8px;
  background: rgba(168, 132, 255, 0.16);
  color: #d9c6ff;
  padding: 9px 11px;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.donate-address:hover,
.donate-copy-btn:hover {
  background: rgba(168, 132, 255, 0.25);
}

.crypto-note {
  margin: 12px 0 0;
  color: #bca0ff;
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  line-height: 1.5;
}

.crypto-note.is-hidden {
  display: none;
}

.crypto-note.is-visible {
  display: block;
}

@media (max-width: 900px) {
  .donate-item {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (max-width: 900px) {
  body.home-no-scroll {
    height: auto;
    min-height: 100dvh;
    overflow-y: auto;
  }

  .page-content {
    padding: 18px 14px 24px;
  }

  .home-left {
    width: 100%;
    margin-top: 4px;
  }

  .home-type-line {
    font-size: clamp(2rem, 9vw, 3rem);
    gap: 8px;
  }

  .home-type-line-sub {
    font-size: clamp(1rem, 4.8vw, 1.35rem);
    margin-top: 6px;
  }

  .home-mini-about {
    min-height: 0;
    width: 100%;
    padding-left: 10px;
  }

  .home-jtip-widget {
    margin-top: 16px;
  }

  .home-jtip-line {
    white-space: normal;
    word-break: break-word;
  }

  .terms-scroll-type,
  .privacy-scroll-type {
    padding-top: 120px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 12px 0;
    gap: 10px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .page-content {
    padding: 14px 10px 20px;
  }

  .home-jtip-line {
    font-size: clamp(0.96rem, 5vw, 1.2rem);
  }

  .terms-scroll-type,
  .privacy-scroll-type {
    padding-top: 72px;
    font-size: 0.95rem;
  }

  .how-command-list {
    padding-left: 16px;
  }
}
