:root {
    --primary: #23243a;
    --accent: #6c63ff;
    --accent2: #ffd700;
    --bg: #f7f8fd;
    --card: #fff;
    --shadow: 0 7px 32px #6c63ff13;
    --radius: 18px;
    --gold: #FFD700;
    --success: #34C759;
}
body {
    background: var(--bg);
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0; color: var(--primary);
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
}
.header-app {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff; box-shadow: 0 1px 12px #6c63ff14;
    padding: 14px 18px 9px 18px; border-bottom: 1.5px solid #eceff1;
    position: sticky; top: 0; z-index: 20;
}
.header-logo { border-radius: 10px; background: #f5f5ff; }
.header-brand { display: flex; align-items: center; gap: 13px; }
.brand-title { font-weight: 900; font-size: 1.23em; color: var(--primary);}
.header-balance { display: flex; flex-direction: column; align-items: flex-end;}
.balance-label { font-size: 0.89em; color: #888;}
.balance-value { font-size: 1.5em; color: var(--gold); font-weight: 800; letter-spacing: 1px;}
.app-nav { background: #fff; box-shadow: var(--shadow); position: sticky; top:62px; z-index:10;}
.app-nav ul { display: flex; justify-content: space-between; gap: 0px; margin:0;padding:0;list-style:none; }
.app-nav li { flex:1; }
.app-nav a { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; padding:13px 0 8px 0; color: #6c63ff; font-weight:700; text-decoration:none; border-bottom: 3px solid transparent; transition:background .2s,border .2s;}
.app-nav a.nav-active, .app-nav a:hover { color: var(--accent); border-bottom: 3px solid var(--accent); background:#f6f7ff;}
.nav-text { font-size:0.80em; }
main { padding: 10px 0 60px 0; }
.tab-content { max-width:500px; margin:30px auto 0 auto; transition:.5s;}
.tab-fadein { animation:fadeInTab .34s;}
.tab-fadeout { animation:fadeOutTab .18s;}
@keyframes fadeInTab {from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);}}
@keyframes fadeOutTab {from{opacity:1;} to{opacity:0;}
}
.section-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 28px auto 18px auto;
    max-width: 500px;
    padding: 28px 16px 24px 16px;
    text-align: center;
    position: relative;
}
.section-card h2 { color: var(--accent); font-size:1.18em; font-weight: 800; margin-bottom:15px;}
.hero-card {
    background: linear-gradient(120deg, #f7f8fd 60%, #e9e8ff 100%);
    border-radius: 22px;
    box-shadow: 0 7px 32px #6c63ff13;
    margin: 32px auto 16px auto;
    max-width: 520px;
    padding: 38px 20px 26px 20px;
    text-align: center;
    position: relative;
    border: 1.5px solid #ecebfd;
}
.hero-content {
    display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 8px;
}
.hero-logo {
    display: flex;align-items:center;justify-content:center;width:56px;height:56px;background:#fff;border-radius:19px;box-shadow:0 2px 12px #6c63ff22;
}
.hero-text h1 { font-size: 1.6em; color: var(--primary); font-weight: 900; margin:0 0 7px 0;}
.hero-sub { font-size:1.09em; color: #7d7da1; margin:0; }
.hero-actions {margin-top:18px;}
.main-cta {
    background: linear-gradient(90deg,#6c63ff 0%,#ffd700 100%);
    color: #fff; border: none; border-radius: 23px;
    padding: 13px 29px; font-size: 1.15em; font-weight: 800;
    margin: 0 8px 0 0; cursor: pointer;
    box-shadow: 0 2px 8px #6c63ff13;
    transition: box-shadow .12s, background .15s;
    outline:none;
    display:inline-block;
}
.main-cta.secondary {background:linear-gradient(90deg,#ffd700 0%,#6c63ff 100%);}
.main-cta:active {box-shadow: 0 0 0 #fff;}
.bonus-msg {display:block;margin-top:9px;color:var(--success);font-weight:700;font-size:1.07em;}
.features-row {
    display: flex; flex-wrap:wrap; gap: 18px; justify-content: center;
    margin: 0 auto 18px auto; max-width: 600px;
}
.feature-box {
    background: #fff; border-radius: 17px; box-shadow: 0 2px 14px #6c63ff0c;
    min-width: 170px; max-width: 210px; flex:1 1 170px;
    padding: 19px 12px 15px 12px; text-align: center; margin: 0;
    display: flex; flex-direction:column; align-items:center;justify-content:space-between; position:relative;
}
.feature-emoji {font-size:2em;margin-bottom:5px;}
.feature-title {font-weight:700;color:var(--accent);font-size:1.09em;margin-bottom:3px;}
.feature-desc {color:#444;font-size:.97em;margin-bottom:9px;}
.tiny-btn {
    background:linear-gradient(90deg,#6c63ff 0%,#ffd700 100%);
    color:#fff;border:none;border-radius:17px;padding:6px 16px;font-size:0.96em;font-weight:800;box-shadow:0 2px 8px #6c63ff11;margin-top:2px;cursor:pointer;outline:none;
}
.tiny-btn:active {box-shadow: 0 0 0 #fff;}
.section-howto {margin-top:18px;}
.howto-steps {display: flex; flex-wrap: wrap; gap:13px; justify-content: space-between; margin:0;}
.howto-step {
    flex: 1 1 110px; min-width: 110px; max-width: 130px;
    background:#f7f8fa; border-radius:13px; box-shadow:0 1px 9px #6c63ff0b;
    text-align:center; padding:13px 4px 8px 4px;
}
.howto-icon {font-size:1.5em;margin-bottom:2px;}
.howto-title {font-weight:700;color:var(--accent);font-size:.97em; margin-bottom:2px;}
.howto-desc {font-size:.94em;color:#444;}
.section-incentives {margin-top:18px;}
.incentive-list {list-style:none;padding:0;margin:0;}
.incentive-list li {background:#f7f8fa;border-radius:9px;padding:7px 11px;margin:4px 0;font-size:.98em;color:#333;}
.section-trust {margin-top:18px;padding:14px 8px;}
.trust-row {display:flex;gap:17px;justify-content:center;align-items:center;font-size:1em;flex-wrap:wrap;}
.trust-icon {font-size:1.2em;}
.confetti-canvas {
    position: fixed; pointer-events:none;
    left: 0; top: 0; width: 100vw; height: 100vh; z-index: 999;
    display: none;
}
.footer-app { text-align:center; background:#fff; color:#bbb; padding:17px 0 19px 0; margin-top:50px; font-size:1em; border-top:1.5px solid #e9e6ff;}
.offers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-top: 18px;
}
.offer-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px #6c63ff18, 0 1.5px 6px #ffd70022;
    padding: 22px 18px 18px 18px;
    min-width: 260px;
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform .18s, box-shadow .18s;
    margin-bottom: 8px;
}
.offer-card:hover {
    transform: translateY(-4px) scale(1.025);
    box-shadow: 0 8px 32px #6c63ff33, 0 2px 12px #ffd70033;
}
.offer-icon {
    margin-bottom: 12px;
    font-size: 2.1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offer-info {
    text-align: center;
    margin-bottom: 14px;
}
.offer-title {
    font-size: 1.18em;
    font-weight: 700;
    color: #23243a;
    margin-bottom: 4px;
}
.offer-desc {
    font-size: 0.98em;
    color: #666;
    min-height: 36px;
}
.offer-btn {
    margin-top: 10px;
    width: 100%;
    font-size: 1.08em;
    font-weight: 600;
    background: linear-gradient(90deg,#6c63ff 0%,#ffd700 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 2px 8px #6c63ff22;
    cursor: pointer;
    transition: background .18s, transform .12s;
}
.offer-btn:hover {
    background: linear-gradient(90deg,#ffd700 0%,#6c63ff 100%);
    transform: scale(1.04);
}
.offer-progress {
    width: 100%;
    height: 7px;
    background: #f3f3f3;
    border-radius: 6px;
    margin-bottom: 8px;
    overflow: hidden;
    position: relative;
    display: none;
}
.offer-card.offer-loading .offer-progress {
    display: block;
}
.offer-progress-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,#6c63ff 0%,#ffd700 100%);
    animation: offerprogressbar 1.2s infinite alternate;
    border-radius: 6px;
}
@keyframes offerprogressbar {from{width:30%;} to{width:100%;}}

/* Pop-Up für verdiente Coins */
.earned-popup {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(36,38,58,0.32);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadein .2s;
}
.earned-popup-inner {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 7px 32px #6c63ff33;
    padding: 38px 32px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.earned-popup-coins {
    font-size: 1.35em;
    font-weight: 700;
    color: #6c63ff;
    margin-bottom: 8px;
}
.earned-popup-close {
    background: linear-gradient(90deg,#6c63ff 0%,#ffd700 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 32px;
    font-size: 1.08em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px #6c63ff22;
    transition: background .18s, transform .12s;
}
.earned-popup-close:hover {
    background: linear-gradient(90deg,#ffd700 0%,#6c63ff 100%);
    transform: scale(1.04);
}
@media (max-width: 600px) {
    .offer-card { min-width: 90vw; max-width: 98vw; padding: 16px 6vw 16px 6vw; }
    .offers-list { gap: 12px; }
    .earned-popup-inner { padding: 22px 8vw 18px 8vw; }
}
@keyframes fadein {from{opacity:0;} to{opacity:1;}}
@media (max-width: 900px){
    .features-row {flex-direction:column;align-items:stretch;}
    .feature-box {max-width:100vw;}
    .hero-card {max-width:99vw;}
    .section-card {max-width:99vw;}
}
@media (max-width: 560px){
    .hero-content {flex-direction:column;gap:9px;}
    .main-cta, .main-cta.secondary {width:100%;margin:0 0 9px 0;}
    .offers-list, .offer-card {max-width:100vw;}
    .howto-steps {flex-direction:column;}
    .howto-step {max-width:100vw;}
    .redeem-prizes {flex-direction:column;gap:10px;}
}
.dailybonus-box {
  display: flex;
  align-items: center;
  background: linear-gradient(96deg, #fffbe7 0%, #ffe066 100%);
  border-radius: 18px;
  box-shadow: 0 7px 32px #6c63ff13;
  margin-bottom: 32px;
  padding: 20px 22px 20px 18px;
  gap: 0;
  max-width: 480px;
  border: 2px solid #ffe06644;
  position: relative;
  overflow: hidden;
}

.dailybonus-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-right: 22px;
}
.dailybonus-icon {
  font-size: 2.6em;
  line-height: 1;
  filter: drop-shadow(0 2px 12px #ffd70044);
  background: linear-gradient(135deg, #ffe066 60%, #f7e9ab 100%);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  border: 2px solid #ffd70022;
  box-shadow: 0 2px 9px #ffd70022;
}

.dailybonus-content {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dailybonus-title {
  font-size: 1.18em;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 3px;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 #fff;
}

.dailybonus-desc {
  color: #23243a;
  font-size: 0.98em;
  margin-bottom: 12px;
  text-shadow: 0 1px 0 #ffe06644;
}

.dailybonus-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent) 60%, var(--accent2) 130%);
  color: #fff;
  font-weight: 700;
  font-size: 1.04em;
  padding: 10px 30px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px #6c63ff14;
  margin-bottom: 7px;
  margin-top: 2px;
  transition: background 0.18s, opacity 0.15s;
  letter-spacing: 0.01em;
  outline: none;
}

.dailybonus-btn:disabled,
.dailybonus-btn.disabled {
  background: linear-gradient(90deg, #dedede 60%, #f7e9ab 130%) !important;
  color: #bdbdbd !important;
  cursor: not-allowed;
  opacity: 0.82;
  box-shadow: none;
  border: none;
}

.dailybonus-msg {
  font-size: 0.96em;
  color: var(--accent);
  margin-top: 1px;
  min-height: 1.7em;
  font-weight: 600;
  text-shadow: 0 1px 0 #fff;
}

@media (max-width: 600px) {
  .dailybonus-box {
    padding: 14px 2vw 14px 7px;
    font-size: 0.98em;
    max-width: 98vw;
  }
  .dailybonus-left {
    margin-right: 10px;
  }
  .dailybonus-icon {
    font-size: 2em;
    width: 46px;
    height: 46px;
  }
}

/* Auth Modal Overlay und Card (zentriert, modern, UX-optimiert) */
.auth-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(36,38,58,0.32);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity .2s;
}
.auth-modal.active { display: flex; animation: fadein .2s; }
.auth-modal-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.auth-modal-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 12px 48px #6c63ff33, 0 2px 12px #ffd70033;
    padding: 38px 18px 28px 18px;
    min-width: 320px;
    max-width: 98vw;
    width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    animation: fadein .2s;
}
.auth-modal-close {
    position: absolute;
    top: 18px; right: 18px;
    background: none;
    border: none;
    color: #bbb;
    font-size: 2em;
    font-weight: 900;
    cursor: pointer;
    transition: color .15s;
    z-index: 2;
}
.auth-modal-close:hover { color: #6c63ff; }
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    width: 100%;
    justify-content: center;
}
.auth-tab-btn {
    flex: 1 1 0;
    background: #f7f8fd;
    border: none;
    border-radius: 13px 13px 0 0;
    padding: 13px 0;
    font-size: 1.13em;
    font-weight: 700;
    color: #6c63ff;
    cursor: pointer;
    transition: background .15s, color .15s;
    outline: none;
}
.auth-tab-btn.active, .auth-tab-btn:hover {
    background: linear-gradient(90deg,#6c63ff 0%,#ffd700 100%);
    color: #fff;
}
.auth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}
.auth-label {
    align-self: flex-start;
    font-size: 0.98em;
    color: #6c63ff;
    font-weight: 700;
    margin-bottom: 2px;
    margin-top: 8px;
}
.auth-form input[type="email"], .auth-form input[type="password"] {
    width: 100%;
    padding: 13px 14px;
    border-radius: 11px;
    border: 1.5px solid #ecebfd;
    font-size: 1.08em;
    margin-bottom: 2px;
    background: #f7f8fd;
    transition: border .15s;
}
.auth-form input:focus {
    border: 1.5px solid #6c63ff;
    outline: none;
}
.auth-title {
    font-size: 1.18em;
    font-weight: 800;
    color: #23243a;
    margin-bottom: 2px;
    margin-top: 0;
}
.auth-icon {
    font-size: 2.2em;
    margin-bottom: 2px;
}
.main-cta {
    background: linear-gradient(90deg,#6c63ff 0%,#ffd700 100%);
    color: #fff;
    border: none;
    border-radius: 13px;
    padding: 13px 0;
    font-size: 1.13em;
    font-weight: 700;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 2px 8px #6c63ff22;
    cursor: pointer;
    transition: background .18s, transform .12s;
}
.main-cta:hover {
    background: linear-gradient(90deg,#ffd700 0%,#6c63ff 100%);
    transform: scale(1.04);
}
.tiny-btn {
    background: #f7f8fd;
    color: #6c63ff;
    border: none;
    border-radius: 9px;
    padding: 8px 18px;
    font-size: 1em;
    font-weight: 700;
    margin-top: 6px;
    cursor: pointer;
    transition: background .13s, color .13s;
}
.tiny-btn:hover {
    background: #ecebfd;
    color: #23243a;
}
.bonus-msg {
    margin-top: 10px;
    font-size: 1.05em;
    font-weight: 700;
    color: #34C759;
    min-height: 1.5em;
    text-align: center;
}
.hero-cta, .home-seo-cta {
    text-decoration: none !important;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
    box-sizing: border-box;
}
@media (max-width: 600px) {
    .offer-card { min-width: 90vw; max-width: 98vw; padding: 16px 6vw 16px 6vw; }
    .offers-list { gap: 12px; }
    .earned-popup-inner { padding: 22px 8vw 18px 8vw; }
    .auth-modal-card { min-width: 96vw; max-width: 99vw; padding: 12px 2vw 12px 2vw; }
    .auth-tabs { gap: 2vw; }
    .main-cta, .tiny-btn, #logoutBtn { width: 100%; }
    #loginStatus { font-size: 0.98em; padding: 7px 8vw; left: 2vw; }
}
#popup {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 5000;
    min-width: 220px;
    max-width: 90vw;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.popup-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 18px #6c63ff22, 0 1.5px 6px #ffd70022;
    padding: 18px 28px;
    margin-bottom: 12px;
    color: #23243a;
    font-size: 1.09em;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s, transform .4s;
    pointer-events: auto;
    animation: popupfadein .4s forwards;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border: 1.5px solid #ecebfd;
}
.popup-content button, .popup-content .main-cta, .popup-content .tiny-btn {
    margin-top: 10px;
    width: 100%;
    font-size: 1em;
    border-radius: 10px;
    padding: 10px 0;
    background: linear-gradient(90deg,#6c63ff 0%,#ffd700 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 2px 8px #6c63ff22;
    cursor: pointer;
    transition: background .18s, transform .12s;
}
.popup-content button:hover {
    background: linear-gradient(90deg,#ffd700 0%,#6c63ff 100%);
    transform: scale(1.04);
}
@media (max-width: 600px) {
    #popup { left: 2vw; bottom: 2vw; min-width: 0; max-width: 98vw; }
    .popup-content { padding: 14px 6vw; font-size: 1em; }
}
.live-feed-msg {
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0 0 10px 0;
    border-radius: 0;
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
}
.livefeed-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 18px #6c63ff22, 0 1.5px 6px #ffd70022;
    padding: 13px 18px 10px 18px;
    min-width: 220px;
    max-width: 94vw;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1.5px solid #ecebfd;
    font-size: 1.01em;
    margin-bottom: 2px;
}
.livefeed-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}
.livefeed-icon {
    font-size: 1.25em;
    margin-right: 2px;
}
.livefeed-mail {
    font-weight: 700;
    color: #6c63ff;
    font-size: 1em;
    letter-spacing: 0.01em;
}
.livefeed-action {
    color: #23243a;
    font-size: 1.04em;
    font-weight: 600;
    margin-bottom: 2px;
}
.livefeed-time {
    color: #888;
    font-size: 0.93em;
    margin-top: 2px;
    font-weight: 500;
}
@media (max-width: 600px) {
    .livefeed-card { padding: 10px 4vw 8px 4vw; min-width: 0; }
    .livefeed-mail { font-size: 0.97em; }
    .livefeed-action { font-size: 0.99em; }
}

/* Glücksrad Card & Buttons */
.section-card.wheel-card {
    padding: 30px 14px 28px 14px;
    max-width: 420px;
    margin: 32px auto 18px auto;
    box-shadow: 0 7px 32px #6c63ff13;
    border-radius: 22px;
}
.wheel-spins-available {
    color: var(--accent);
    font-size: 1.13em;
    font-weight: 800;
    margin-bottom: 12px;
}
#wheel-container {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#p5-wheel {
    width: 100%;
    max-width: 370px;
    min-width: 220px;
    min-height: 220px;
    aspect-ratio: 1/1;
    margin: 0 auto 22px auto;
    display: block;
    position: relative;
}
#p5-wheel canvas {
    width: 100% !important;
    max-width: 370px !important;
    min-width: 220px !important;
    min-height: 220px !important;
    aspect-ratio: 1/1;
    height: auto !important;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@media (max-width: 600px) {
    #p5-wheel, #p5-wheel canvas {
        max-width: 98vw !important;
        min-width: 160px !important;
        min-height: 160px !important;
        aspect-ratio: 1/1;
    }
}
#spinBtn, #buySpinBtn {
    width: 100%;
    max-width: 320px;
    margin-bottom: 10px;
    font-size: 1.15em;
    font-weight: 800;
    border-radius: 23px;
    box-shadow: 0 2px 8px #6c63ff13;
    padding: 13px 0;
}
#spinBtn.disabled, #spinBtn:disabled {
    background: #e0e0e0 !important;
    color: #aaa !important;
    cursor: not-allowed;
    border: none;
}
#spinStatus {
    margin-top: 16px;
    font-size: 1.12em;
    font-weight: 700;
    min-height: 1.5em;
}
@media (max-width: 600px) {
    .section-card.wheel-card {
        padding: 18px 2vw 18px 2vw;
        max-width: 99vw;
    }
    #spinBtn, #buySpinBtn {
        font-size: 1em;
        padding: 12px 0;
    }
    #p5-wheel {
        max-width: 98vw !important;
        height: auto !important;
    }
    #p5-wheel canvas {
        max-width: 98vw !important;
        height: auto !important;
    }
}
.coin-animate {
    animation: coinPulse 0.9s cubic-bezier(.4,1.6,.4,1) 1;
}
@keyframes coinPulse {
    0% { transform: scale(1); color: var(--gold); }
    20% { transform: scale(1.18); color: var(--accent2); }
    40% { transform: scale(1.12); color: var(--gold); }
    60% { transform: scale(1.15); color: var(--accent2); }
    100% { transform: scale(1); color: var(--gold); }
}

/* Styles für die neue Auszahlungsseite und E-Mail-Animation */
.redeem-section {background: var(--card); border-radius: 22px; box-shadow: var(--shadow); margin: 32px auto 18px auto; max-width: 480px; padding: 32px 18px 28px 18px; text-align: center;}
.redeem-row {display: flex; flex-direction: column; align-items: center; gap: 18px;}
.redeem-info {width: 100%; text-align: center;}
.redeem-balance {font-size: 2.1em; color: var(--gold); font-weight: 900;}
.redeem-prizes {display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; width: 100%;}
.prize-box {background: #f7f8fd; border-radius: 18px; box-shadow: 0 2px 12px #6c63ff0c; padding: 18px 16px 14px 16px; min-width: 170px; max-width: 210px; flex: 1 1 170px; text-align: center;}
.prize-title {font-weight: 800; color: var(--accent); font-size: 1.13em;}
.prize-cost {color: #888; font-size: 1.01em;}
.psc-img {width: 54px; height: 54px; border-radius: 13px; margin-bottom: 8px;}
.earned-popup {display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100vw; height: 100vh; background: rgba(30,32,60,0.18); align-items: center; justify-content: center;}
.earned-popup-inner {background: #fff; border-radius: 18px; box-shadow: 0 7px 32px #6c63ff13; padding: 32px 22px 22px 22px; min-width: 260px; max-width: 95vw; text-align: center;}
.earned-popup-coins {font-size: 1.18em; color: var(--accent); font-weight: 800; margin-bottom: 12px;}
.earned-popup-close {background: var(--accent); color: #fff; border: none; border-radius: 18px; padding: 10px 28px; font-size: 1.07em; font-weight: 700; margin-top: 8px; cursor: pointer;}
.redeem-mail-animation {margin-bottom: 18px;}
.mail-envelope {width: 48px; height: 36px; background: #fff; border-radius: 7px; box-shadow: 0 2px 8px #6c63ff22; position: relative; overflow: hidden; display: inline-block;}
.mail-flap {position: absolute; top: 0; left: 0; width: 48px; height: 18px; background: var(--accent); border-radius: 7px 7px 0 0; transform: rotateX(0deg); transition: transform .7s;}
.mail-body {position: absolute; top: 18px; left: 0; width: 48px; height: 18px; background: #fff;}
.mail-sending {font-size: 1.2em; color: var(--accent); font-weight: 700; margin-left: 10px;}
@media (max-width: 600px) {
  .redeem-section {padding: 18px 2vw 18px 2vw;}
  .prize-box {min-width: 140px; max-width: 99vw;}
}
@media (max-width: 700px) {
  .redeem-section {padding: 12vw 2vw 8vw 2vw;}
  .redeem-prizes {flex-direction: column; align-items: center; gap: 14px; max-width: 99vw;}
  .prize-box {min-width: 90vw; max-width: 99vw;}
}

/* Verbesserte SEO-Boxen und Buttons für perfekte Integration und Yoast-SEO-Score */
.home-seo-section {
    margin: 36px auto 0 auto;
    max-width: 980px;
    background: linear-gradient(120deg, #f8faff 80%, #f0f4ff 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px #0001;
    padding: 36px 18px 32px 18px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.home-seo-header {
    margin-bottom: 0.5em;
}
.home-seo-head {
    font-size: 2em;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 0.2em;
    text-align: left;
}
.home-seo-intro {
    font-size: 1.13em;
    color: #333;
    margin-bottom: 0.7em;
    text-align: left;
}
.home-seo-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
}
.home-seo-main {
    flex: 2 1 420px;
    min-width: 270px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px #0001;
    padding: 24px 18px 18px 18px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.home-seo-benefits {
    margin: 1.2em 0 0.7em 0;
}
.home-seo-benefits h3 {
    font-size: 1.13em;
    color: var(--accent);
    margin-bottom: 0.4em;
    font-weight: 700;
}
.home-seo-benefits ul {
    margin: 0 0 0 1.2em;
    padding: 0;
}
.home-seo-benefits li {
    margin-bottom: 7px;
    font-size: 1.09em;
    color: #333;
    list-style: none;
    position: relative;
}
.home-seo-benefits .check {
    color: var(--accent);
    font-weight: 900;
    margin-right: 7px;
}
.home-seo-steps {
    margin: 0 0 1em 1.2em;
    padding: 0;
}
.home-seo-steps li {
    margin-bottom: 7px;
    font-size: 1.09em;
    color: #333;
}
.home-seo-cta-row {
    margin: 18px 0 0 0;
    text-align: left;
}
.home-seo-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1.15em;
    margin: 0;
    text-decoration: none;
    box-shadow: 0 2px 8px #0001;
    transition: background .2s;
    border: none;
    cursor: pointer;
}
.home-seo-cta:hover {
    background: var(--gold);
    color: #222;
}
.home-seo-explainer {
    margin: 1.2em 0 0.7em 0;
}
.home-seo-explainer h3 {
    font-size: 1.13em;
    color: var(--accent);
    margin-bottom: 0.4em;
    font-weight: 700;
}
.home-seo-faq-col {
    flex: 1 1 320px;
    min-width: 240px;
    background: #f8faff;
    border-radius: 14px;
    box-shadow: 0 2px 8px #0001;
    padding: 24px 18px 18px 18px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.home-seo-faq-col h3 {
    font-size: 1.13em;
    color: var(--accent);
    margin-bottom: 0.5em;
    font-weight: 700;
}
.home-seo-faq-list div[itemprop] {
    margin-bottom: 1em;
    background: #fff;
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 1px 4px #0001;
}
.home-seo-faq-list b {
    color: #1a1a1a;
    font-size: 1.07em;
}
.home-seo-faq-list span {
    color: #444;
}
.home-seo-trust {
    margin-top: 1.5em;
    color: #888;
    font-size: 1.01em;
    text-align: center;
    background: #f8faff;
    border-radius: 10px;
    padding: 12px 8px;
    box-shadow: 0 1px 4px #0001;
}
.home-seo-sub {
    margin-top: 1.2em;
    font-size: 1.13em;
    color: var(--accent);
    font-weight: 700;
}
@media (max-width: 900px) {
    .home-seo-flex { flex-direction: column; gap: 18px; }
    .home-seo-section { padding: 18px 6px 18px 6px; }
    .home-seo-main, .home-seo-faq-col { padding: 16px 8px 12px 8px; }
}
.live-feed-bar {
    position: sticky;
    top: 70px;
    z-index: 12;
    width: 100%;
    max-width: 980px;
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    background: none;
    box-shadow: none;
    padding: 0 0 0 0;
}
.live-feed-bar .livefeed-card {
    background: #fffbe7;
    border-radius: 12px;
    box-shadow: 0 2px 8px #ffd70022;
    padding: 8px 18px 7px 18px;
    margin: 0 0 6px 0;
    font-size: 1.01em;
    color: #23243a;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    max-width: 99vw;
    border: 1.5px solid #ffe06644;
    position: relative;
    animation: fadein .5s;
}
.live-feed-bar .livefeed-icon {
    font-size: 1.25em;
    margin-right: 2px;
}
.live-feed-bar .livefeed-mail {
    font-weight: 700;
    color: #6c63ff;
    font-size: 1em;
    letter-spacing: 0.01em;
}
.live-feed-bar .livefeed-action {
    color: #23243a;
    font-size: 1.04em;
    font-weight: 600;
    margin-bottom: 0;
}
.live-feed-bar .livefeed-time {
    color: #888;
    font-size: 0.93em;
    margin-left: auto;
    font-weight: 500;
}
@media (max-width: 700px) {
    .live-feed-bar { max-width: 99vw; padding: 0 2vw; }
    .live-feed-bar .livefeed-card { padding: 7px 4vw 7px 4vw; font-size: 0.98em; }
}
.hero-cta {
    width: 100%;
    margin: 0;
    display: block;
    text-align: center;
    font-size: 1.18em;
    padding: 15px 0;
}
.features-section {
    margin-bottom: 0;
}
.fancy-auth-modal {
    animation: fadein .3s, popauth .5s cubic-bezier(.4,1.6,.4,1);
    box-shadow: 0 12px 48px #6c63ff33, 0 2px 12px #ffd70033;
    border-radius: 28px;
    padding: 0 0 28px 0;
    background: #fff;
    max-width: 410px;
    width: 98vw;
    margin: 0 auto;
    position: relative;
}
@keyframes popauth {0%{transform:scale(.92);} 100%{transform:scale(1);}}
.auth-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 0;
    margin-bottom: 0;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(90deg,#f7f8fd 60%,#e9e8ff 100%);
    box-shadow: 0 2px 8px #6c63ff11;
    position: relative;
    z-index: 2;
}
.auth-tabs {
    display: flex;
    gap: 0;
    width: 100%;
    justify-content: flex-start;
    background: none;
    border-radius: 28px 28px 0 0;
    margin: 0;
    padding: 0 0 0 18px;
}
.auth-tab-btn {
    flex: 1 1 0;
    background: none;
    border: none;
    border-radius: 13px 13px 0 0;
    padding: 16px 0 13px 0;
    font-size: 1.13em;
    font-weight: 700;
    color: #6c63ff;
    cursor: pointer;
    transition: background .15s, color .15s;
    outline: none;
    margin: 0 8px 0 0;
    position: relative;
    z-index: 2;
}
.auth-tab-btn.active, .auth-tab-btn:hover {
    background: linear-gradient(90deg,#6c63ff 0%,#ffd700 100%);
    color: #fff;
}
.auth-modal-close {
    position: absolute;
    top: 12px; right: 18px;
    background: none;
    border: none;
    color: #bbb;
    font-size: 2em;
    font-weight: 900;
    cursor: pointer;
    transition: color .15s;
    z-index: 3;
    padding: 0 8px;
    line-height: 1;
}
.auth-modal-close:hover { color: #6c63ff; }
.auth-forms {padding: 0 22px;}
.auth-form {width: 100%;display: flex;flex-direction: column;align-items: center;gap: 10px;margin-bottom: 0;}
.auth-form input[type="email"], .auth-form input[type="password"] {
    width: 100%;padding: 13px 14px;border-radius: 11px;border: 1.5px solid #ecebfd;font-size: 1.08em;margin-bottom: 2px;background: #f7f8fd;transition: border .15s;}
.auth-form input:focus {border: 1.5px solid #6c63ff;outline: none;box-shadow: 0 0 0 2px #ffd70033;}
.auth-title {font-size: 1.18em;font-weight: 800;color: #23243a;margin-bottom: 2px;margin-top: 0;}
.auth-icon {font-size: 2.2em;margin-bottom: 2px;}
.auth-trust-box {
    display: flex;
    align-items: center;
    background: linear-gradient(96deg, #fffbe7 0%, #ffe066 100%);
    border-radius: 13px;
    box-shadow: 0 2px 8px #ffd70022;
    margin: 12px 0 8px 0;
    padding: 10px 14px;
    gap: 12px;
    font-size: 1.01em;
    color: #23243a;
    border: 1.5px solid #ffe06644;
}
.auth-trust-emoji {font-size: 1.6em;margin-right: 7px;}
.auth-trust-text {font-size: 0.99em;line-height: 1.4;}
.g-recaptcha {margin: 0 0 8px 0;}
@media (max-width: 600px) {
    .fancy-auth-modal {padding: 0 0 18px 0;max-width: 99vw;}
    .auth-forms {padding: 0 2vw;}
    .auth-modal-header {padding: 0 0 0 0;}
    .auth-tab-btn {font-size: 1em;}
    .auth-modal-close {top: 10px; right: 8px; font-size: 1.5em;}
    .auth-trust-box {padding: 8px 4vw; font-size: 0.97em;}
}