body {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

/* Container en structuur */
.container {
  text-align: center;
  width: 90%;
  max-width: 420px;
  padding: 20px;
}

h1 {
  margin-bottom: 30px;
  font-size: 28px;
}

button {
  background: linear-gradient(to right, #ffaa00, #ff7700);
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 16px;
  margin: 10px auto;
  width: 100%;
  max-width: 250px;
  color: white;
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
}

button:hover {
  transform: scale(1.03);
}

/* -------- NFT Dropdown Style -------- */
#nftTokenIdSelect {
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 10px;
  border: 2px solid #ffae00;
  margin-bottom: 10px;
  min-width: 220px;
  max-width: 280px;
  background: #fffbe8;
  color: #222;
  box-shadow: 0 1px 6px #ffae0018;
  appearance: none;
  transition: border-color 0.15s;
}

#nftTokenIdSelect:focus {
  border-color: #ff7700;
  outline: none;
}

#nftTokenIdSelect:disabled {
  background: #f5e7cd;
  color: #aaa;
  cursor: not-allowed;
}

.nft-dropdown-loading {
  letter-spacing: 2px;
  color: #ffa500;
  font-family: 'Patrick Hand', cursive;
  font-size: 15px;
  font-style: italic;
  animation: loading-dots 1s steps(4, end) infinite;
}

@keyframes loading-dots {
  0% { opacity: 1; }
  50% { opacity: 0.45; }
  100% { opacity: 1; }
}

.nft-dropdown-claimable {
  color: #24b464 !important;
  font-weight: bold;
}
.nft-dropdown-cooldown {
  color: #ff7700 !important;
  font-style: italic;
}
.nft-dropdown-status {
  margin-left: 8px;
  font-size: 13px;
  opacity: 0.8;
  font-style: italic;
  vertical-align: middle;
}

.nft-dropdown-tick {
  color: #24b464;
  font-size: 16px;
  margin-left: 4px;
  vertical-align: middle;
}

.nft-dropdown-cooldown-time {
  color: #ff7700;
  font-size: 13px;
  margin-left: 8px;
  opacity: 0.75;
  font-style: italic;
  vertical-align: middle;
}

#walletStatus,
#status {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  word-break: break-word;
}

/* Logo */
.pecky-logo {
  width: 150px;
  margin-bottom: 10px;
}

/* Introductietekst */
.pecky-text {
  font-family: 'Patrick Hand', cursive;
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

.pecky-text h2 {
  font-size: 24px;
  margin: 0 0 10px;
}

.pecky-text p {
  margin: 0 0 10px;
  line-height: 1.4;
}

/* Links */
.image-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.image-links img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.image-links img:hover {
  transform: scale(1.05);
}

/* Popup */
#popup {
  position: fixed;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  background: linear-gradient(to right, #ffaa00, #ff7700);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23,1,0.32,1);
  text-align: center;
  box-shadow: 0 4px 32px #0006;
  min-width: 200px;
  max-width: 90vw;
}

#popup.show {
  opacity: 1;
  pointer-events: auto;
}

#popup.minimize {
  opacity: 0;
  pointer-events: none;
  transform: translateX(180%) translateY(-120%) scale(0.72);
  transition: opacity 0.4s, transform 0.7s cubic-bezier(0.23,1,0.32,1);
}

.popup-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.popup-content img {
  height: 22px;
  width: 22px;
  object-fit: contain;
}

/* Earn-secties */
.earn-section,
.tokenomics-section {
  max-width: 420px;
  padding: 30px 20px;
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

.tokenomics-section {
  background-color: #fff2e6;
  border: 2px solid #ffaa00;
  border-radius: 14px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.05);
}

.tokenomics-section h2,
.tokenomics-section h3 {
  font-family: 'Patrick Hand', cursive;
  font-size: 24px;
  color: #ff7700;
  text-align: center;
  margin-bottom: 15px;
}

.tokenomics-section .supply {
  text-align: center;
  font-weight: bold;
  margin-bottom: 16px;
}

.tokenomics-section .token-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tokenomics-section .token-list li {
  margin: 8px 0;
  padding: 6px 0;
  font-weight: 500;
}

.tokenomics-section .token-list span {
  color: #ff6600;
  font-weight: bold;
  display: inline-block;
  width: 80px;
}

/* Sidebar en knoppen */
.menu-button {
  position: fixed;
  top: 10px;
  right: 18px;
  font-size: 24px;
  background: #ff7700;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1001;
  font-family: 'Patrick Hand', cursive;
}

.sidebar {
  position: fixed;
  top: 56px;
  right: -320px;
  width: 280px;
  height: 56%;
  min-hight: 360px;
  background: linear-gradient(to bottom right, #ffffff, #fff8e6);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1000;
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
}

.sidebar.open {
  right: 0;
}

.sidebar .wallet-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.sidebar .wallet-controls button {
  font-family: 'Patrick Hand', cursive;
  background: #ff7700;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  max-width: 220px;
  width: 100%;
}

#connectBtn span {
  display: block;
  font-size: 12px;
  font-style: italic;
  margin-top: 4px;
  color: #fff;
}

#walletStatus {
  display: none;
}

#peckyBalance {
  font-weight: bold;
  font-size: 16px;
  color: #222;
  text-align: center;
  margin-top: 6px;
}

#peckyHint {
  font-style: italic;
  font-size: 13px;
  color: #666;
  margin-top: 2px;
  display: block;
}

#peckyHint.hidden {
  display: none;
}

.sidebar-note {
  font-size: 12px;
  font-style: italic;
  color: #999;
  text-align: center;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
  width: 100%;
}

/* Overlay voor buiten klikken */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 999;
  display: none;
}

.sidebar-overlay.active {
  display: block;
}

/* Vault Progress Bar */
.vault-progress-section {
  margin: 24px 0 14px 0;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vault-total-label {
  font-size: 15px;
  font-weight: bold;
  color: #ff7700;
  margin-bottom: 6px;
  text-align: center;
}

.vault-bar-bg {
  background: #f5e7cd;
  border-radius: 14px;
  position: relative;
  height: 28px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 2px 8px #ffae0044;
  overflow: hidden;
}

.vault-bar-fill {
  background: linear-gradient(90deg, #ffce6e 10%, #ff7700 90%);
  height: 100%;
  border-radius: 14px 0 0 14px;
  transition: width 0.9s cubic-bezier(0.2,0.7,0.4,1.1);
  width: 0%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.vault-bar-text {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  color: #ff7700;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 2px 6px #fff9, 0 1px 0 #fff;
  letter-spacing: 0.5px;
}

/* NFT Reward Pyramid / Flip Cards */
.nft-flip-cards-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 14px auto;
}

.flip-card {
  perspective: 700px;
  cursor: pointer;
  width: 100%;
  max-width: 340px;
  min-width: 0;
  min-height: 130px;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}
.flip-card-inner {
  width: 100%;
  height: 100%;
  min-height: 130px;
  transition: transform 0.55s cubic-bezier(.86,.12,.5,1.2);
  transform-style: preserve-3d;
  position: relative;
}
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 12px #ffae0020;
  border: 2px solid var(--tile-color, #ddd);
  transition: box-shadow 0.22s;
  font-family: 'Patrick Hand', cursive;
  font-size: 18px;
  box-sizing: border-box;
}
.flip-card-front { z-index: 2; }
.flip-card-back {
  transform: rotateY(180deg);
  background: #fffbe8;
  color: #444;
  z-index: 3;
  padding: 18px 10px;
  text-align: center;
}
.nft-tile {
  background: #fff;
  border-radius: 14px;
  border: 2px solid var(--tile-color, #ddd);
  box-shadow: 0 2px 12px #ffae0020;
  min-width: 105px;
  max-width: 125px;
  padding: 16px 10px 13px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  transition: box-shadow 0.22s;
}
.nft-tile:hover {
  box-shadow: 0 4px 18px #ffae0044;
}
.nft-type {
  color: var(--tile-color, #ff7700);
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 2px;
}
.nft-amount {
  font-size: 13px;
  color: #444;
  margin-bottom: 2px;
}
.nft-percentage {
  font-size: 14px;
  color: #ff7700;
  font-weight: bold;
  margin-bottom: 1px;
}
.nft-hodl-text {
  font-size: 16px;
  color: #ff7700;
  font-family: 'Patrick Hand', cursive;
  margin-top: 4px;
  font-weight: bold;
  text-align: center;
}


.nft-row:last-child {
  margin-top: -4px;
  gap: 60px;
}


@media (max-width: 600px) {
  .nft-flip-cards-vertical,
  .flip-card,
  .flip-card-inner,
  .flip-card-front,
  .flip-card-back {
    max-width: 96vw;
    width: 100%;
    min-height: 95px;
    font-size: 15px;
  }
  .nft-row {
    gap: 7px;
    flex-wrap: wrap;
  }
  .nft-row:last-child {
    gap: 14vw;
  }
  .nft-tile {
    min-width: 86px;
    max-width: 96vw;
    padding: 11px 3px 9px 3px;
    font-size: 14px;
  }
}

/* Optioneel: dropdown styling */
#nftTokenIdSelect {
  background: #fff7e7;
  border: 2px solid #ffaa00;
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 15px;
  color: #222;
  outline: none;
  margin-bottom: 6px;
  width: 100%;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px #ffae0020;
  transition: border-color 0.18s;
}
#nftTokenIdSelect:disabled {
  background: #f8eedc;
  color: #aaa;
  opacity: 0.85;
}
#nftTokenIdSelect option {
  color: #444;
  background: #fff;
  font-size: 14px;
}

.nft-status-cooldown {
  color: #999;
  font-size: 13px;
  font-style: italic;
  margin-left: 8px;
}

.nft-status-claimable {
  color: #25c36a;
  font-size: 15px;
  font-weight: bold;
  margin-left: 8px;
  font-family: 'Patrick Hand', cursive;
}

.nft-status-unknown {
  color: #bbb;
  margin-left: 8px;
  font-size: 13px;
}

@media (max-width: 480px) {
  .pecky-text {
    font-size: 16px;
  }
  .image-links {
    gap: 20px;
  }
  .image-links img {
    width: 48px;
    height: 48px;
  }
  #popup {
    font-size: 16px;
    min-width: 120px;
    padding: 12px 12px;
  }
  .menu-button {
    font-size: 24px;
    padding: 4px 10px;
  }
  .popup-content img {
    height: 18px;
    width: 18px;
  }
  .vault-bar-bg {
    height: 22px;
    max-width: 98vw;
  }
  .vault-progress-section {
    max-width: 98vw;
  }
}

.circulating-supply-block {
  margin-top: 16px;
  margin-bottom: 12px;
  width: 100%;
  text-align: center;
}
#circulatingSupplyLabel {
  font-size: 15px;
  font-weight: bold;
  color: #ff7700;
}
#circulatingSupplyValue {
  font-size: 21px;
  font-family: 'Patrick Hand', cursive;
  margin-top: 4px;
  color: #222;
  letter-spacing: 1px;
}

.token-address-box {
  background: #fffbea;
  border: 2.5px solid #ffd45a;
  border-radius: 18px;
  padding: 12px 10px 8px 10px;
  max-width: 480px;
  margin: 0 auto 18px auto;
  text-align: center;
  box-shadow: 0 2px 16px #ffd45a24;
}

.token-address-title {
  color: #ec9700;
  font-size: 1em; 
  font-family: 'Patrick Hand', cursive;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.token-address-code {
  background: #fff4d4;
  color: #a77a26;
  font-family: 'Fira Mono', 'Consolas', monospace;
  font-size: 0.72em;
  letter-spacing: 0.1px;
  border-radius: 7px;
  padding: 5px 6px;
  word-break: break-all;
  margin: 0;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  opacity: 0.95;
}


.burn-section {
  background: #fff2e6;
  border: 2px solid #ffaa00;
  border-radius: 16px;
  box-shadow: 2px 2px 6px rgba(0,0,0,.07);
  padding: 28px 18px 20px 18px;
  margin: 40px auto 0;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}


.burn-logo {
  display: block;
  height: 108px;
  margin: 0 auto 14px auto;
  animation: wiggle 2.1s infinite ease-in-out;
}
@keyframes wiggle {
  0%,100%{transform:rotate(-2deg);}
  14%{transform:rotate(3deg);}
  29%{transform:rotate(-3deg);}
  48%{transform:rotate(2deg);}
  65%{transform:rotate(-2deg);}
  83%{transform:rotate(1deg);}
}


.burn-title {
  font-family: 'Patrick Hand', 'Comic Sans MS', cursive, sans-serif;
  color: #ff9100;
  font-size: 2.12em;   
  font-weight: bold;
  margin: 0 0 22px 0;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0 #fff7e2, 0 2px 8px #ffd45a44;
}


.burn-section {
  background: #fff2e6;
  border: 2.5px solid #ffaa00;
  border-radius: 18px;
  box-shadow: 2px 2px 12px rgba(255, 170, 0, 0.10);
  padding: 30px 22px 28px 22px;
  margin: 40px auto 0;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}


.burn-logo {
  display: block;
  height: 108px;
  margin: 0 auto 14px auto;
  animation: wiggle 2.1s infinite ease-in-out;
}
@keyframes wiggle {
  0%,100%{transform:rotate(-2deg);}
  14%{transform:rotate(3deg);}
  29%{transform:rotate(-3deg);}
  48%{transform:rotate(2deg);}
  65%{transform:rotate(-2deg);}
  83%{transform:rotate(1deg);}
}


.burn-title {
  font-family: 'Patrick Hand', 'Comic Sans MS', cursive, sans-serif;
  color: #ff9100;
  font-size: 3.7em;
  font-weight: bold;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0 #fff7e2, 0 2px 8px #ffd45a44;
}


.burn-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px 0;
  width: 100%;
  max-width: 350px;
}
.burn-bullet-list li {
  font-family: 'Patrick Hand', 'Comic Sans MS', cursive, sans-serif;
  font-size: 0.90em;
  color: #191919;
  margin: 0 0 17px 0;
  font-weight: 600;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.burn-bullet-icon {
  height: 39px;
  margin-bottom: 3px;
  margin-top: 4px;
}
.burn-light {
  color: #868686;
  font-size: 0.95em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.13;
  margin-top: 1px;
}


.burn-summary-meme {
  margin: 9px auto 0 auto;
  color: #d78a00;
  font-size: 1.13em;
  font-family: 'Patrick Hand', 'Comic Sans MS', cursive, sans-serif;
  background: transparent;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12px;
  text-shadow: 0 1px 0 #fff7e2, 0 1px 12px #ffd45a20;
  border: none;
  padding-bottom: 7px;
}

/* ===== STAKING BOX ===== */
.staking-box {
  background: linear-gradient(145deg, #1a1c2b 0%, #29284a 100%);
  opacity: .93;
  color: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.17) inset;
  max-width: 90%;
  width: 90%
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.staking-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 8px;
  width: 100%;
  max-width: 320px;
}
.staking-row strong { color: #ffd45a; }
#supraWalletBalance, #supraStakedBalance { min-width: 90px; text-align: right; }
.stake-input-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 14px;
}
.stake-input-inner {
  display: flex;
  align-items: center;
  background: transparent;
}

#stakeAmountInput {
  width: 210px;
  max-width: 68vw;
  padding: 10px 16px;
  border-radius: 8px 0 0 8px;
  border: none;
  background: #181c24;
  color: #fff;
  font-size: 17px;
  text-align: center;
  margin: 0;
  outline: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.07);
  height: 40px;
  box-sizing: border-box;
}

#maxStakeBtn {
  padding: 0;
  font-size: 1.12em;
  border-radius: 0 12px 12px 0;
  border: 2px solid #ffd45a;
  background: linear-gradient(90deg, #ffb800 40%, #ffd45a 100%);
  color: #e69900;
  cursor: pointer;
  font-weight: bold;
  margin-left: -2px;
  min-width: 78px;  /* breder maken */
  max-width: 120px;
  height: 47px;
  box-sizing: border-box;
  border-left: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s, border-color .18s;
  letter-spacing: 0.01em;
}

#stakeAmountInput::placeholder {
  color: #bbb;
  opacity: 1;
}

#maxStakeBtn:hover {
  background: #ffde96;
  color: #222;
  border-color: #ff7700;
}


@media (max-width: 540px) {
  .burn-section { max-width: 99vw; padding: 11px 2vw 12px 2vw; }
  .burn-title { font-size: 1.17em; }
  .burn-bullet-list { max-width: 97vw; }
  .staking-box { max-width: 97vw; }
}

.reward-table {
  font-size: 0.97em;
  color: #fff;
  margin: 18px 0 0 0;
  padding: 0;
  list-style: none;
  text-align: center;
  letter-spacing: 0.1px;
  font-family: 'Patrick Hand', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 500;
}

.reward-table-note {
  display: block;
  margin-top: 7px;
  font-size: 0.86em;
  color: #ececec;
  font-style: italic;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.burn-title {
  font-size: 1.5em !important;
  line-height: 1.07;
}

.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: #fffbe8;
  border-bottom: 2px solid #ffd45a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  padding: 0 12px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-pecky-logo {
  height: 38px;
  width: 38px;
  margin-right: 8px;
}

.header-quote {
  flex: 1;
  text-align: center;
  font-family: 'Patrick Hand', cursive;
  font-size: 17px;
  color: #b87b00;
  margin: 0 10px;
  line-height: 1.2;
}

.header-balance {
  font-family: 'Patrick Hand', cursive;
  font-size: 19px;
  color: #ff7700;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;  /* Zorg dat er geen marge op zit! */
  padding: 0;
  background: transparent;
}


.page, .container {
  margin: 0 auto;
  padding: 0;
  max-width: 520px;
  width: 100%;
  box-sizing: border-box;
  min-height: calc(100vh - 112px); /* 56 header + 56 footer */
  padding-top: 66px;  /* Iets meer dan header, zodat je content niet onder je header zit */
  padding-bottom: 80px; /* Genoeg ruimte voor de footer */
  background: #fff;
}



.main-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 520px;
  background: linear-gradient(to right, #fffbe8, #fff);
  border-top: 2px solid #ffd45a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 4px 4px 4px;
  z-index: 1200;
  box-sizing: border-box;
  height: 67px;
}

.footer-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 4px 2px 0 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Patrick Hand', cursive;
  font-size: 13px;
  color: #ff7700;
  outline: none;
  transition: color 0.2s;
  cursor: pointer;
  position: relative;
  border-radius: 13px;
  height: 100%;
}

.footer-btn img {
  height: 28px;
  margin-bottom: 3px;
}

.footer-btn.active,
.footer-btn:active,
.footer-btn:focus {
  color: #fff;
  background: linear-gradient(120deg, #ffae00 45%, #ff7700 100%);
  box-shadow: 0 2px 12px #ffb80018;
}

.footer-btn span {
  display: block;
  font-size: 12px;
  margin-top: 1px;
}

@media (max-width: 600px) {
  .main-header,
  .main-footer {
    max-width: 100vw;
    padding: 0 7px;
  }
  .header-pecky-logo {
    height: 35px;
  }
  .main-footer {
    height: 60px;
  }
  .footer-btn img {
    height: 24px;
  }
}

.staking-retro-card {
  background: linear-gradient(
    to bottom,
    #fff 0%,             /* boven wit */
    #fffbe8 18%,         /* lichte geel */
    #ffe6b0 50%,         /* midden: warmer/geel */
    #fffbe8 82%,         /* lichte geel terug */
    #fff 100%            /* onder weer wit */
  );
  border-radius: 0px;
  box-shadow: 0 7px 32px #ffd45a22;
  max-width: 420px;
  margin: 32px auto 0 auto;
  padding: 24px 12px 18px 12px;
  text-align: center;
  font-family: 'Patrick Hand', cursive;
  position: relative;
}
.staking-retro-logo img {
  height: 56px;
  margin-bottom: 6px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.staking-retro-title {
  font-size: 1.32em;
  font-weight: bold;
  color: #ff9000;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 #fff, 0 1px 8px #ffe6b088;
}
.staking-retro-meme > div {
  font-size: 1.09em;
  color: #e69900;
  font-weight: 600;
  margin-bottom: 1px;
}
.staking-retro-meme > div:nth-child(2) { font-size: 1.13em; color: #ff7700;}
.staking-retro-meme > div:last-child { color: #ffb600; font-style: italic; }
.staking-retro-balances {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 13px 0 6px 0;
  font-size: 1.08em;
}
.staking-retro-balances > div {
  background: #fffbe8;
  border-radius: 9px;
  padding: 7px 18px;
  box-shadow: 0 1px 2px #ffd45a15;
  font-weight: 600;
}
.staking-retro-input-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 11px auto 15px auto;
  max-width: 240px;
}
.staking-retro-input-wrap input {
  border-radius: 12px 0 0 12px;
  border: 2px solid #ffae00;
  background: #fff;
  font-size: 1.17em;
  padding: 13px 13px;
  width: 120px;
  text-align: left;
  font-family: inherit;
  color: #a06500;
  font-weight: 600;
  outline: none;
  box-sizing: border-box;
}
.staking-retro-input-wrap button {
  border-radius: 0 12px 12px 0;
  border: 2px solid #ffae00;
  border-left: none;
  background: linear-gradient(90deg, #ffb800 40%, #ffd45a 100%);
  color: #e69900;
  font-size: 1.09em;
  font-weight: bold;
  padding: 13px 0;
  width: 90px;
  text-align: center;
  cursor: pointer;
  height: 47px;
  margin-left: -2px;
}
.staking-retro-main-btn {
  width: 98%;
  max-width: 310px;
  background: linear-gradient(92deg, #ffd45a 20%, #ffb800 90%);
  color: #a06500;
  border: none;
  border-radius: 16px;
  padding: 13px 0;
  font-size: 1.18em;
  font-family: inherit;
  font-weight: 800;
  margin: 0 auto 13px auto;
  box-shadow: 0 2px 8px #ffd45a28;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.19s;
}
.staking-retro-claim-btn {
  width: 98%;
  max-width: 310px;
  background: linear-gradient(92deg, #ffae00 40%, #ff9100 90%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 13px 0;
  font-size: 1.10em;
  font-family: inherit;
  font-weight: 800;
  margin: 0 auto 8px auto;
  box-shadow: 0 2px 8px #ffd45a18;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.19s;
}
.staking-retro-info {
  background: #fffae1;
  border-radius: 9px;
  margin: 13px 0 7px 0;
  padding: 8px 2px;
  color: #e69900;
  font-size: 1em;
  font-weight: 600;
}
.staking-retro-info .staking-retro-note {
  font-size: 0.97em;
  color: #ffb700;
  font-style: italic;
}
.staking-retro-progress {
  margin: 12px 0 0 0;
}
.staking-retro-progress-bar {
  background: #f5e7cd;
  border-radius: 14px;
  height: 26px;
  width: 95%;
  max-width: 325px;
  margin: 4px auto 0 auto;
  box-shadow: 0 2px 8px #ffae0044;
  overflow: hidden;
  position: relative;
}
.staking-retro-progress-fill {
  background: linear-gradient(90deg, #ffce6e 10%, #ff7700 90%);
  height: 100%;
  border-radius: 14px 0 0 14px;
  transition: width 0.9s cubic-bezier(0.2,0.7,0.4,1.1);
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.staking-retro-progress-text {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  color: #ff7700;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 2px 6px #fff9, 0 1px 0 #fff;
}

.nft-retro-card {
  background: linear-gradient(120deg, #fffbe8 75%, #ffe6b0 100%);
  border: 3.5px solid #ffd45a;
  border-radius: 32px;
  box-shadow: 0 7px 32px #ffd45a22;
  max-width: 420px;
  margin: 32px auto 0 auto;
  padding: 22px 12px 18px 12px;
  text-align: center;
  font-family: 'Patrick Hand', cursive;
  position: relative;
}

/* Crystara logo styling */
.nft-retro-logo img {
  height: 62px;
  margin-bottom: 7px;
  margin-top: -4px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nft-retro-title {
  font-size: 1.38em;
  font-weight: bold;
  color: #ff9000;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 #fff, 0 1px 8px #ffe6b088;
}

.nft-retro-meme {
  font-size: 1.11em;
  color: #e69900;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.42;
}

.nft-retro-actions select {
  min-width: 154px;
  margin-bottom: 3px;
  background: #fffbe8;
  border: 2px solid #ffae00;
  border-radius: 12px;
  padding: 12px 8px;
  font-family: 'Patrick Hand', cursive;
  color: #a06500;
  font-weight: 600;
}

/* --- NFT STATUS CONTROLS (input + button) --- */
.nft-retro-controls-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 13px;
  margin-top: 2px;
}

.nft-retro-input {
  border-radius: 14px 0 0 14px;
  border: 2px solid #ffae00;
  background: #fff;
  color: #a06500;
  padding: 0 16px;
  min-width: 125px;
  height: 48px;
  font-size: 1.11em;
  font-family: 'Patrick Hand', cursive;
  font-weight: 600;
  border-right: none;
  outline: none;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.nft-retro-btn {
  border-radius: 0 14px 14px 0;
  border: 2px solid #ffae00;
  border-left: none;
  background: linear-gradient(90deg, #ffce6e 10%, #ff7700 90%);
  color: #fff;
  font-weight: 800;
  padding: 0 32px;
  min-width: 108px;
  height: 48px;
  font-size: 1.11em;
  font-family: 'Patrick Hand', cursive;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}

.nft-retro-btn:hover {
  background: linear-gradient(90deg, #ffd45a 15%, #ffb800 85%);
  color: #a06500;
}

/* --- GROTE KNOPPEN VOOR CLAIMS --- */
.nft-retro-main-btn,
.nft-retro-airdrop-btn {
  background: linear-gradient(90deg, #ffaa00 5%, #ff7700 98%);
  color: #fff;
  font-size: 1.19em;
  font-family: inherit;
  padding: 15px 0;
  border: none;
  border-radius: 16px;
  margin: 13px auto 9px auto;
  width: 98%;
  max-width: 370px;
  box-shadow: 0 2px 14px #ffd45a28;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.12s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nft-retro-main-btn:hover,
.nft-retro-airdrop-btn:hover {
  background: linear-gradient(90deg, #ffd45a 20%, #ffb800 80%);
  color: #a06500;
}

.tx-snackbar {
  position: fixed;
  bottom: 75px; /* net boven de footer */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(95deg, #fffbe8 85%, #ffe6b0 100%);
  border: 2.5px solid #ffd45a;
  color: #b27e00;
  border-radius: 17px;
  box-shadow: 0 2px 16px #ffd45a40;
  padding: 10px 16px;
  font-family: 'Patrick Hand', cursive;
  font-size: 16px;
  min-width: 180px;
  max-width: 92vw;
  z-index: 1800;
  display: flex;
  align-items: center;
  gap: 17px;
  opacity: 0.95;
  transition: bottom .25s, opacity .25s;
  cursor: pointer;
}
.tx-copy-btn {
  background: linear-gradient(90deg, #ffce6e 15%, #ff7700 85%);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 9px;
  font-size: 15px;
  padding: 7px 14px;
  cursor: pointer;
  margin-left: 6px;
  transition: background .16s;
}
.tx-copy-btn:hover {
  background: linear-gradient(90deg, #ffd45a 10%, #ffb800 90%);
  color: #a06500;
}
@media (max-width: 600px) {
  .tx-snackbar {
    font-size: 15px;
    padding: 8px 6vw;
    bottom: 68px;
    max-width: 99vw;
  }
  .tx-copy-btn { font-size: 14px; padding: 7px 10px;}
}

#page-bot .staking-retro-card .peckybot-flex-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 6px;
}
#botDaysInput {
  max-width: 160px;
  min-width: 150px
  padding: 8px 10px;
  border-radius: 11px;
  border: 1.6px solid #ffae00;
  font-size: 12px;
  height: 38px;          /* exact gelijk aan de knop hieronder */
  box-sizing: border-box;
  background: #fff;
}
#activateBotPeckyBtn {
  height: 38px !important;
  font-size: 14px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-retro-card {
  background: linear-gradient(to bottom, #fff 0%, #fffbe8 45%, #ffe6b0 100%, #fff 100%);
  box-shadow: 0 7px 32px #ffd45a22;
  margin: 32px auto 0 auto;
  padding: 24px 12px 22px 12px;
  text-align: center;
  font-family: 'Patrick Hand', cursive;
  position: relative;
  max-width: 420px;
  width: 95vw;
  /* border-radius: 0;  Uncomment deze regel als je geen rondingen wilt */
  border-radius: 0;
  /* Geen border! */
}

.home-earn-intro {
  text-align: center;
  margin: 2.3rem 0 1.4rem 0;
  font-size: 19px;
  font-weight: bold;
  font-family: 'Patrick Hand', cursive;
  color: #b48512;
}
.home-earn-intro span {
  display: block;
  font-size: 15px;
  font-weight: normal;
  margin-top: 7px;
  color: #77613e;
}