/* =========================================================================================================================== */
/*                                            🏠 HOME (MOBILE)                                                                 */
/*                                            📍 static/css/pages/home/home_mobile.css                                         */
/* =========================================================================================================================== */


@media (max-width: 1024px), (hover: none) and (pointer: coarse) {


/* ❌ MATRIX OFF (Performance + Fokus) */
#matrix-canvas {
  display: none;
}

/* =========================================================================================================================== */

/* HERO HEADLINE  */
.rotating-title {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-transform: uppercase;

  font-family: "Courier New", monospace;

  color: #f7931a;
  text-shadow:
    0 0 6px rgba(247,147,26,0.35),
    0 0 12px rgba(247,147,26,0.2);

  animation: none;
}

.rotating-title span {
  display: inline-block;
}

/* CARDS  */
#home .card {
  width: 100%;
  margin: 1.6rem auto;
  border-radius: 1rem;
}

/* =========================================================================================================================== */

/* Header */
#home .card-header h4 {
  font-size: 1rem;
  letter-spacing: 0.14rem;
}

/* Top BTC Header kompakt */
.card-header.top-btc-transactions h4,
.card-header.top-btc-transactions-ever h4 {
  font-size: 0.8rem !important;
  letter-spacing: 0.1rem !important;
}

/* =========================================================================================================================== */

/* CARD CONTENT – LESBARKEIT FIX */
#home .card-body p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 0.15rem;
  padding: 0.4rem 0;

  font-size: 0.8rem;
  line-height: 1.25;

  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#home .card-body p:last-child {
  border-bottom: none;
}

/* LABEL */
#home .card-body p strong {
  font-size: 0.65rem;
  opacity: 0.6;
  letter-spacing: 0.04rem;
}

/* VALUE */
#home .card-body p span {
  font-size: 0.92rem;
  font-weight: 700;

  overflow-wrap: anywhere;
}

/* BTC LABEL */
#home .card-body p.btc-label {
  text-align: center;
}

#home .card-body p.btc-label strong {
  font-size: 0.8rem;
}

/* =========================================================================================================================== */

/* 📱 HASH – MOBILE SHORT + EXPANDABLE  */
#winner_hash_marquee-container {
  display: block;
  width: 100%;
  overflow: visible; /* kein clipping */
}

#winner_hash_marquee {
  display: block;
  animation: none !important;   /* ❌ stoppt marquee */
  transform: none !important;
  white-space: nowrap !important;
}

/* DEFAULT → kurze Version (eine Zeile) */
#winner_hash {
  display: block;

  font-family: monospace;
  font-size: 0.85rem;
  line-height: 1.3;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  cursor: pointer;
}

/* EXPANDED → voller Hash */
#winner_hash.expanded {
  white-space: normal;
  overflow-wrap: anywhere;
}

/* =========================================================================================================================== */

/* TOP BTC TABLE  */
#home .top-btc-table {
  width: 100%;
  table-layout: fixed;
  font-size: 0.7rem;
  border-collapse: collapse;
}

#home .top-btc-table th,
#home .top-btc-table td {
  padding: 0.35rem 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Header */
#home .top-btc-table thead th {
  font-size: 0.62rem;
  letter-spacing: 0.05rem;
  text-align: center;
}

/* Spalten */
#home .top-btc-table th:nth-child(1),
#home .top-btc-table td:nth-child(1) {
  width: 10%;
  text-align: center;
}

#home .top-btc-table th:nth-child(2),
#home .top-btc-table td:nth-child(2) {
  width: 65%;
  font-family: monospace;
}

#home .top-btc-table th:nth-child(3),
#home .top-btc-table td:nth-child(3) {
  width: 25%;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* =========================================================================================================================== */

/* 🔗 TXID – MOBILE CLICKABLE STYLE  */
#home .top-btc-table td a {
  color: #f0c674;
  text-decoration: underline;
  text-decoration-color: rgba(247,147,26,0.4);
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}

/* Tap Feedback */
#home .top-btc-table td a:active {
  color: #f7931a;
  text-shadow: 0 0 6px rgba(247,147,26,0.4);
}

/* =========================================================================================================================== */

/* DONATION  */
.donation .card-body {
  flex-direction: column;
  gap: 0.6rem;
}

.donation .text {
  font-size: 0.8rem;
}

.donation img {
  max-width: 140px;
}

/* =========================================================================================================================== */

/* FOOTER  */
footer {
  font-size: 0.7rem;
  padding: 1rem;
}



}