/* =====================================================
   Web3Kiste – FINALER FOOTER
   ===================================================== */

.wk-footer-pro {
  background: #000;
  padding: 1rem 1rem 0.8rem;
  color: #ccc;
  font-size: .85rem;
  border-top: 1px solid rgba(255,140,0,.25);
  margin-top: auto;
}

.wk-footer-pro__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* Navigation */
.wk-footer-pro__links {
  display: inline-flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.wk-footer-pro__links a {
  color: #ffb566;
  text-decoration: none;
}

.wk-footer-pro__links a:hover {
  color: #fff;
  text-decoration: underline;
}

.wk-footer-pro__links span {
  color: #777;
}

/* Linie */
.wk-footer-pro__line {
  margin: .45rem auto;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(255,140,0,0),
    rgba(255,140,0,.35),
    rgba(255,140,0,0)
  );
}

/* Hinweis */
.wk-footer-pro__hint {
  margin: 0;
  font-size: .8rem;
  color: #b8b8b8;
}

/* Wrapper für Spenden-Pills */
.wk-footer-pro__support {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .35rem;
}

/* Spenden-Pills */
.wk-footer-pro__pill {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: 2px 8px;
  height: 24px;

  background: rgba(255,140,0,.16);
  border: 1px solid rgba(255,140,0,.55);
  border-radius: 999px;

  cursor: pointer;
  white-space: nowrap;
  line-height: 1;

  box-shadow: 0 0 8px rgba(255,140,0,.22);
  color: #fff;
  transition: .18s ease;
}

.wk-footer-pro__pill:hover {
  background: rgba(255,140,0,.22);
  border-color: rgba(255,140,0,.75);
  box-shadow: 0 0 12px rgba(255,140,0,.35);
  transform: translateY(-1px);
}

/* Icons */
.pill-icon-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.pill-icon-img--round {
  border-radius: 50%;
}

/* Text */
.pill-label {
  font-weight: 600;
  font-size: .78rem;
  color: #fff !important;
}

.pill-code {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .70rem;
  transform: translateY(1px);
  color: #e6e6e6 !important;
}

/* Copy Icon */
.pill-copy {
  opacity: .8;
  font-size: .75rem;
  transform: translateY(1px);
  transition: .15s ease;
}

.wk-footer-pro__pill:hover .pill-copy {
  transform: scale(1.12) translateY(1px);
  opacity: 1;
}

/* Copyright */
.wk-footer-pro__copy {
  margin-top: .45rem;
  font-size: .75rem;
  color: #888;
}

/* Mobile */
@media (max-width: 600px) {
  .wk-footer-pro {
    padding: .8rem .6rem .6rem;
  }
  .wk-footer-pro__inner {
    max-width: 100%;
  }
}
/* ==================================
   Web3Kiste – Minimal Header FULL WIDTH
   ================================== */

.wk-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid rgba(255,140,0,.45);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

/* ⬇️ WICHTIG: keine max-width, keine margin:auto – nimmt volle Breite */
.wk-header__inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;  /* Logo ganz links, Icons ganz rechts */
  padding: 0 16px;                 /* kleiner Abstand zum Fensterrand */
}

/* Logo */
.wk-header__logo .logo{
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(255,140,0,.2));
}

/* Social Icons rechts */
.wk-header__social{
  display: flex;
  align-items: center;
  gap: .9rem;
}

.wk-header__social img{
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: .15s ease;
}

.wk-header__social img:hover{
  opacity: 1;
  transform: scale(1.07);
}

/* Platz unter Header */
body{
  padding-top: 80px;
}

/* Mobile */
@media (max-width: 540px){
  .wk-header{
    height: 62px;
  }

  body{
    padding-top: 70px;
  }

  .wk-header__logo .logo{
    height: 38px;
  }

  .wk-header__social img{
    width: 20px;
    height: 20px;
  }
}
/* Spenden-Pills kompakter machen */
.wk-footer-pro__pill {
  padding: 4px 8px;                /* weniger Innenabstand */
  max-width: 220px;                 /* maximale Breite reduzieren */
  width: fit-content;               /* nur so breit wie nötig */
  font-size: 0.78rem;               /* etwas kleinere Schrift */
  border-radius: 14px;              /* kompaktere Form */
}

/* Icon kleiner */
.wk-footer-pro__pill .pill-icon-img {
  width: 22px;
  height: 22px;
}

/* Wallet-Adresse kleiner */
.wk-footer-pro__pill .pill-code {
  font-size: 0.75rem;
}

/* Label leicht kleiner */
.wk-footer-pro__pill .pill-label {
  font-size: 0.88rem;
  font-weight: 600;
}