﻿@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;500;600;700&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --recto-brand-font: 'Bebas Neue', 'Barlow Condensed', sans-serif;
}

/* Shared top navigation â€” ZwolleBonus (KurwaBonus-Stil) */
.recto-nav .logo .logo-text,
nav .nav-logo span,
.hero h1 .a,
.hero h1 .b,
.brand-word {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
}

.recto-nav {
  background: #0f1018;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 22px;
  display: flex; align-items: center; gap: 18px;
  height: 60px; position: sticky; top: 0; z-index: 100;
  font-family: 'Barlow Condensed', sans-serif;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.recto-nav.admin-mode {
  justify-content: space-between;
}
.recto-nav.admin-mode .links {
  display: none;
}
.recto-nav .logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}
.recto-nav .logo .nav-logo-badge {
  width: 44px; height: 44px; border-radius: 8px; object-fit: contain;
  display: block !important;
  background: #04060c;
  padding: 3px;
}
.recto-nav .logo .logo-text {
  color: #fff; text-transform: uppercase;
  font-size: 1.05rem; line-height: 1; letter-spacing: 1px;
  font-weight: 700;
  display: flex; align-items: baseline; gap: 0;
}
.recto-nav .logo .logo-text small {
  color: #3b82f6; font-size: 1.05rem; letter-spacing: 1px;
  font-weight: 700; text-transform: uppercase; margin-left: 2px;
}

.recto-nav .links {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
  margin-left: 10px;
}
.recto-nav .links a {
  color: #8b8d9b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0 16px;
  height: 60px;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
  transition: color .2s, background .2s;
  cursor: pointer;
}
.recto-nav .links a:hover { color: #fff; background: rgba(255,255,255,0.03); }
.recto-nav .links a::after {
  content: ''; position: absolute; left: 10px; right: 10px; bottom: 0; height: 3px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  border-radius: 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform .22s ease, opacity .22s ease;
  box-shadow: 0 0 12px rgba(59,130,246,.55);
}
.recto-nav .links a:hover::after { transform: scaleX(.55); opacity: .55; }
.recto-nav .links a.active::after { transform: scaleX(1); opacity: 1; }
.recto-nav .links a.active {
  color: #fff;
  background: linear-gradient(180deg, rgba(59,130,246,0.18) 0%, rgba(59,130,246,0.04) 100%);
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}
.recto-nav .links a svg {
  display: inline-block;
  width: 16px; height: 16px;
  opacity: 0.85;
}
.recto-nav .links a.active svg { color: #3b82f6; opacity: 1; }

/* Right side actions */
.recto-nav .actions {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.recto-nav .stream-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 4px 12px 4px 10px;
  height: 44px;
  background: #0a0d1c;
  border: 1px solid #7c3aed;
  color: #c4b5fd;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: background .15s, border-color .15s;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.recto-nav .stream-btn:hover {
  background: #0f1326; border-color: #a855f7; color: #fff;
}
.recto-nav .stream-btn .stream-icon {
  width: 16px; height: 16px; color: #a855f7;
}
.recto-nav .stream-btn .stream-meta {
  display: flex; flex-direction: column; line-height: 1; align-items: flex-start;
  gap: 3px;
}
.recto-nav .stream-btn .stream-meta b {
  font-size: 0.85rem; letter-spacing: 1px;
}
.recto-nav .stream-btn .stream-meta span {
  font-size: 0.65rem; font-weight: 600; color: #a855f7;
  display: inline-flex; align-items: center; gap: 5px;
}
.recto-nav .stream-btn .stream-meta span::before {
  content: ''; width: 6px; height: 6px;
  background: #ff3b3b; box-shadow: 0 0 8px #ff3b3b;
  clip-path: polygon(2px 0,100% 0,100% calc(100% - 2px),calc(100% - 2px) 100%,0 100%,0 2px);
  animation: recto-live-pulse 1.4s ease-in-out infinite;
}
@keyframes recto-live-pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.recto-nav .icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: #b8b8c8;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background .15s, color .15s;
  position: relative;
}
.recto-nav .icon-btn:hover { background: rgba(255,255,255,0.06); color: #fff; }
.recto-nav .icon-btn svg { width: 18px; height: 18px; }

/* Twitch login pill (when logged out) */
.recto-nav .twitch-login {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 16px;
  height: 38px;
  background: rgba(145,70,255,0.15);
  border: 1px solid rgba(145,70,255,0.45);
  color: #fff;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: background .2s, border-color .2s;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.recto-nav .twitch-login:hover { background: rgba(145,70,255,0.3); border-color: rgba(145,70,255,0.7); }
.recto-nav .twitch-login svg { width: 14px; height: 14px; }

/* User profile (when logged in via Twitch) */
.recto-nav .user-card {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 4px 10px 4px 10px;
  height: 44px;
  background: #0a0d1c;
  border: 1px solid #2e3454;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
  cursor: pointer;
  transition: background .15s, border-color .15s;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
}
.recto-nav .user-card:hover { background: #0f1326; border-color: #3b82f6; }
.recto-nav .user-card .user-meta {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 1px; line-height: 1;
}
.recto-nav .user-card .user-name {
  color: #fff; font-size: 0.9rem; font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 1px;
}
.recto-nav .user-card .user-coins {
  color: #60a5fa; font-size: 0.72rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: .5px;
}
.recto-nav .user-card .user-coins::before {
  content: ''; width: 6px; height: 6px;
  background: #3b82f6; box-shadow: 0 0 6px rgba(59,130,246,0.7);
  clip-path: polygon(2px 0,100% 0,100% calc(100% - 2px),calc(100% - 2px) 100%,0 100%,0 2px);
}
.recto-nav .user-card img.avatar {
  width: 32px; height: 32px;
  object-fit: cover;
  clip-path: polygon(4px 0,100% 0,100% calc(100% - 4px),calc(100% - 4px) 100%,0 100%,0 4px);
  border: none;
}
.recto-nav .user-card .chev {
  width: 14px; height: 14px; color: #8990a8; margin-right: 2px;
  transition: transform .2s;
}
.recto-nav .user-card.open .chev { transform: rotate(180deg); }

/* Dropdown menu under user card */
.recto-user-menu {
  position: absolute; top: 64px; right: 22px;
  min-width: 220px;
  background: #0a0d1c;
  border: 1px solid #2e3454;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.7);
  padding: 8px;
  z-index: 200;
  display: none;
  font-family: 'Barlow Condensed', sans-serif;
}
.recto-user-menu.open { display: block; }
.recto-user-menu a, .recto-user-menu button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 12px;
  background: transparent; border: none;
  color: #8990a8; text-decoration: none;
  font-size: 0.88rem; font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer;
  text-align: left;
  transition: color .15s, background .15s;
  clip-path: polygon(4px 0,100% 0,100% calc(100% - 4px),calc(100% - 4px) 100%,0 100%,0 4px);
}
.recto-user-menu a:hover, .recto-user-menu button:hover {
  background: rgba(59,130,246,0.08); color: #fff;
}
.recto-user-menu .divider { height: 1px; background: #22273f; margin: 6px 4px; }
.recto-user-menu svg { width: 16px; height: 16px; opacity: 0.7; }

/* Hidden admin link (kept for compatibility) */
.recto-nav .links a.admin { display: none !important; }
.recto-nav .links a.twitch { display: none !important; }

body.recto-admin-page {
  --recto-admin-sidebar-width: 252px;
}
body.recto-admin-page.recto-admin-collapsed {
  --recto-admin-sidebar-width: 92px;
}
.recto-admin-sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: var(--recto-admin-sidebar-width);
  background: linear-gradient(180deg,#10131d 0%,#0b0d14 100%);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 14px 12px 18px;
  z-index: 90;
  transition: width .22s ease, transform .25s ease;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
}
.recto-admin-sidebar::-webkit-scrollbar { width: 6px; }
.recto-admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 3px; }
.recto-admin-sidebar-head {
  padding: 10px 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.recto-admin-sidebar-head .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #5f84ff;
}
.recto-admin-sidebar-head .title {
  font-family: 'Barlow Condensed', sans-serif;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 4px;
}
.recto-admin-sidebar-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(96,165,250,0.18);
  background: rgba(59,130,246,0.06);
  color: #fff;
  border-radius: 0;
  padding: 11px 14px;
  margin-bottom: 14px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.84rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
  transition: border-color .18s ease, background .18s ease;
}
.recto-admin-sidebar-toggle:hover {
  border-color: rgba(59,130,246,0.45);
  background: rgba(59,130,246,0.08);
}
.recto-admin-sidebar-toggle .toggle-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7ea1ff;
  transition: transform .22s ease;
}
body.recto-admin-page.recto-admin-collapsed .recto-admin-sidebar-toggle .toggle-icon {
  transform: rotate(90deg);
}
.recto-admin-sidebar-toggle .toggle-icon svg {
  width: 18px;
  height: 18px;
}
.recto-admin-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recto-admin-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 0;
  color: #9ea5bb;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color .16s ease, background .16s ease, border-color .16s ease;
  border: 1px solid transparent;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
  position: relative;
}
.recto-admin-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background .18s ease;
}
.recto-admin-link .icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.recto-admin-link .icon svg {
  width: 18px;
  height: 18px;
}
.recto-admin-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-color: rgba(96,165,250,0.18);
}
.recto-admin-link:hover::before { background: rgba(96,165,250,0.5); }
.recto-admin-link.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(59,130,246,0.22), rgba(59,130,246,0.04));
  border-color: rgba(96,165,250,0.45);
  box-shadow: inset 0 0 0 1px rgba(59,130,246,0.08);
}
.recto-admin-link.active::before { background: linear-gradient(180deg, #60a5fa, #1d4ed8); }
.recto-admin-main {
  margin-left: var(--recto-admin-sidebar-width);
  transition: margin-left .22s ease;
}
body.recto-admin-page.recto-admin-collapsed .recto-admin-sidebar-head .title,
body.recto-admin-page.recto-admin-collapsed .recto-admin-sidebar-head .eyebrow,
body.recto-admin-page.recto-admin-collapsed .recto-admin-sidebar-toggle .toggle-label,
body.recto-admin-page.recto-admin-collapsed .recto-admin-link .label {
  display: none;
}
body.recto-admin-page.recto-admin-collapsed .recto-admin-link,
body.recto-admin-page.recto-admin-collapsed .recto-admin-sidebar-toggle {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .recto-nav .stream-btn .stream-meta span { display: none; }
  .recto-nav .links a { padding: 0 10px; font-size: 0.75rem; }
}
@media (max-width: 860px) {
  .recto-nav .user-card .user-meta { display: none; }
}
/* Admin mobile toggle: hidden by default, shown via media query */
.recto-admin-mobile-toggle { display: none; }
.recto-admin-sidebar-backdrop { display: none; }

@media (max-width: 900px) {
  body.recto-admin-page {
    --recto-admin-sidebar-width: 0px;
  }
  .recto-admin-sidebar {
    width: 260px;
    transform: translateX(-100%);
    box-shadow: 8px 0 30px rgba(0,0,0,0.6);
    z-index: 9000;
  }
  .recto-admin-mobile-toggle { display: inline-flex !important; }
  .recto-admin-sidebar-backdrop { display: block !important; }
  body.recto-admin-sidebar-open .recto-admin-sidebar {
    transform: translateX(0);
  }
  .recto-admin-sidebar-head .title,
  .recto-admin-sidebar-head .eyebrow,
  body.recto-admin-page .recto-admin-link .label,
  body.recto-admin-page.recto-admin-collapsed .recto-admin-link .label,
  body.recto-admin-page.recto-admin-collapsed .recto-admin-sidebar-head .title,
  body.recto-admin-page.recto-admin-collapsed .recto-admin-sidebar-head .eyebrow {
    display: inline !important;
  }
  .recto-admin-sidebar-toggle { display: none !important; }
  body.recto-admin-page .recto-admin-link,
  body.recto-admin-page.recto-admin-collapsed .recto-admin-link {
    justify-content: flex-start !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .recto-admin-main {
    margin-left: 0 !important;
    padding-top: 8px;
    padding-left: 6px;
    padding-right: 6px;
  }
  /* Floating button to open admin sidebar */
  .recto-admin-mobile-toggle {
    position: fixed;
    top: 70px;
    left: 10px;
    z-index: 8500;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: none; border-radius: 12px;
    box-shadow: 0 6px 18px rgba(245,158,11,0.5);
    cursor: pointer;
  }
  .recto-admin-mobile-toggle svg { width: 22px; height: 22px; }
  body.recto-admin-sidebar-open .recto-admin-mobile-toggle {
    left: 270px;
  }
  .recto-admin-sidebar-backdrop {
    position: fixed; inset: 60px 0 0 0;
    background: rgba(0,0,0,0.55);
    z-index: 8400;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  body.recto-admin-sidebar-open .recto-admin-sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}


/* Login modal (used by all pages) */
#recto-login-modal {
  position: fixed; inset: 0; background: rgba(4,6,15,.92); backdrop-filter: blur(8px); z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
#recto-login-modal.open { display: flex; }
#recto-login-modal .box {
  background: linear-gradient(180deg,#151a30 0%,#0a0d1c 100%);
  border: 1px solid #2e3454; border-radius: 0; padding: 32px 30px 26px;
  width: 100%; max-width: 380px;
  clip-path: polygon(14px 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%,0 14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 30px rgba(59,130,246,.18);
}
#recto-login-modal h2 {
  font-family: 'Barlow Condensed', sans-serif; color: #60a5fa; text-align: center;
  margin-bottom: 22px; text-transform: uppercase; letter-spacing: 2px; font-size: 1.2rem;
}
#recto-login-modal input {
  width: 100%; padding: 12px 14px; background: #04060c;
  border: 1px solid #2e3454; border-radius: 0; color: #fff;
  font-size: 0.95rem; margin-bottom: 12px; outline: none;
  font-family: 'Barlow', sans-serif; letter-spacing: .5px;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
  transition: border-color .15s ease, box-shadow .15s ease;
}
#recto-login-modal input:focus { border-color: #3b82f6; box-shadow: 0 0 0 1px #3b82f6; }
/* Kill yellow/white autofill background from browser */
#recto-login-modal input:-webkit-autofill,
#recto-login-modal input:-webkit-autofill:hover,
#recto-login-modal input:-webkit-autofill:focus,
#recto-login-modal input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #04060c inset !important;
  caret-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
}
#recto-login-modal .actions { display: flex; gap: 10px; margin-top: 8px; }
#recto-login-modal button {
  flex: 1; padding: 12px; border: none; border-radius: 0;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  cursor: pointer; font-size: 0.88rem; letter-spacing: 1.5px;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
  transition: filter .15s ease, transform .15s ease;
}
#recto-login-modal button:hover { filter: brightness(1.15); transform: translateY(-1px); }
#recto-login-modal .primary { background: linear-gradient(90deg,#3b82f6,#1d4ed8); color: #fff; box-shadow: 0 6px 20px rgba(59,130,246,.35); }
#recto-login-modal .secondary { background: transparent; color: #cfd2e0; border: 1px solid #2e3454; }
#recto-login-modal .secondary:hover { border-color: #60a5fa; color:#fff; }
#recto-login-modal .err {
  color: #ff4770; text-align: center; min-height: 20px; font-size: 0.85rem;
  margin-top: 6px; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; text-transform: uppercase;
}

/* === Unified action-button style (Active-Nav-Tab look) === */
/* Dark transparent pill + subtle border + accent underline + glow on hover */
.recto-action-btn,
a.btn-bonus-link,
.btn-bonus-link,
.comm-card .btn-comm-action,
.btn,
.btn.gold,
.btn.gold.full,
.btn.full,
.btn.sec,
.btn.secondary,
.btn.danger,
.btn.stop,
.btn.primary,
.gw-cta,
.btn.twitch,
button.redeem,
.shop-grid .item .redeem,
.quick-btn,
.btn-confirm {
  --acc: #3b82f6;
  --acc2: #60a5fa;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px !important;
  background: rgba(59,130,246,0.08) !important;
  color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  font-size: .92rem !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 10px !important;
  cursor: pointer;
  overflow: hidden;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .25s ease, transform .15s ease;
  box-shadow: none;
}
/* Accent underline (like the active-tab strip in your screenshot) */
.recto-action-btn::after,
a.btn-bonus-link::after,
.btn-bonus-link::after,
.comm-card .btn-comm-action::after,
.btn::after,
.gw-cta::after,
button.redeem::after,
.shop-grid .item .redeem::after,
.quick-btn::after,
.btn-confirm::after {
  content: '';
  position: absolute;
  left: 14%; right: 14%; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--acc), var(--acc2));
  border-radius: 2px 2px 0 0;
  box-shadow: 0 0 10px var(--acc);
  transform: scaleX(.6);
  opacity: .85;
  transition: transform .2s ease, opacity .2s ease, box-shadow .25s ease;
}
.recto-action-btn:hover,
a.btn-bonus-link:hover,
.btn-bonus-link:hover,
.comm-card .btn-comm-action:hover,
.btn:hover,
.btn.gold:hover,
.btn.sec:hover,
.btn.secondary:hover,
.gw-cta:hover,
button.redeem:hover,
.shop-grid .item .redeem:hover,
.quick-btn:hover,
.btn-confirm:hover {
  transform: translateY(-1px);
  background: rgba(59,130,246,0.14) !important;
  border-color: rgba(255,255,255,.18) !important;
  box-shadow:
    0 0 0 1px rgba(59,130,246,.35),
    0 6px 18px rgba(59,130,246,.35),
    0 0 24px rgba(59,130,246,.35);
}
.recto-action-btn:hover::after,
a.btn-bonus-link:hover::after,
.btn-bonus-link:hover::after,
.comm-card .btn-comm-action:hover::after,
.btn:hover::after,
.gw-cta:hover::after,
button.redeem:hover::after,
.shop-grid .item .redeem:hover::after,
.quick-btn:hover::after,
.btn-confirm:hover::after {
  transform: scaleX(1);
  opacity: 1;
  box-shadow: 0 0 18px var(--acc);
}
.recto-action-btn:active,
.btn-bonus-link:active,
.btn:active,
button.redeem:active { transform: translateY(0); filter: brightness(.95); }
.recto-action-btn:disabled,
.btn:disabled,
.quick-btn:disabled {
  opacity: .4 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Quick-Trigger numbers */
.quick-btn .num { color: #fff !important; }
.quick-btn .lbl { color: #3b82f6 !important; opacity: .8; }

/* === Color variants (only swap accent + tint) === */

/* Offer buttons (zwollebonus.html) — neutralize the per-page --btn-color tint so the unified style wins */
body[data-btn-override="1"] a.btn-bonus-link,
a.btn-bonus-link {
  background: rgba(59,130,246,0.08) !important;
  color: #fff !important;
}
body[data-btn-override="1"] a.btn-bonus-link:hover,
a.btn-bonus-link:hover {
  background: rgba(59,130,246,0.14) !important;
}

/* Danger / Stop: red */
.btn.danger,
.btn.stop {
  --acc: #ef4444;
  --acc2: #ff6b6b;
  background: rgba(239,68,68,.10) !important;
}
.btn.danger:hover,
.btn.stop:hover {
  background: rgba(239,68,68,.18) !important;
  box-shadow:
    0 0 0 1px rgba(239,68,68,.45),
    0 6px 18px rgba(239,68,68,.45),
    0 0 24px rgba(239,68,68,.4) !important;
}

/* Discord: blue */
.comm-card.discord .btn-comm-action {
  --acc: #5865F2;
  --acc2: #7983ff;
  background: rgba(88,101,242,.12) !important;
}
.comm-card.discord .btn-comm-action:hover {
  background: rgba(88,101,242,.22) !important;
  box-shadow:
    0 0 0 1px rgba(88,101,242,.5),
    0 6px 18px rgba(88,101,242,.45),
    0 0 24px rgba(88,101,242,.45) !important;
}

/* Twitch: purple */
.btn.twitch,
.comm-card.twitch .btn-comm-action {
  --acc: #9146FF;
  --acc2: #b07bff;
  background: rgba(145,70,255,.12) !important;
}
.btn.twitch:hover,
.comm-card.twitch .btn-comm-action:hover {
  background: rgba(145,70,255,.22) !important;
  box-shadow:
    0 0 0 1px rgba(145,70,255,.5),
    0 6px 18px rgba(145,70,255,.45),
    0 0 24px rgba(145,70,255,.45) !important;
}

/* "small" modifier */
.btn.small {
  padding: 8px 16px;
  font-size: .78rem;
  border-radius: 9px;
}

/* "full" modifier */
.btn.full,
.gw-cta {
  width: 100%;
}


/* === Current page label (mobile only) === */
.recto-current-page {
  display: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-left: 4px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === Mobile quicklinks (in burger drawer) === */
.mobile-quicklinks {
  display: none;
  gap: 14px;
  justify-content: center;
  padding: 18px 16px 10px;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mq-btn {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.mq-btn svg { width: 22px; height: 22px; }
.mq-btn:hover { transform: translateY(-2px); }
.mq-btn.mq-discord {
  background: linear-gradient(135deg, #5865F2, #4752c4);
  box-shadow: 0 6px 16px rgba(88,101,242,0.4);
}
.mq-btn.mq-twitch {
  background: linear-gradient(135deg, #9146FF, #6441a5);
  box-shadow: 0 6px 16px rgba(145,70,255,0.4);
}

/* === Burger button (mobile only) === */
.recto-nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  flex-shrink: 0;
  transition: background .2s;
}
.recto-nav-burger:hover { background: rgba(59,130,246,0.12); }
.recto-nav-burger span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.recto-nav.mobile-open .recto-nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.recto-nav.mobile-open .recto-nav-burger span:nth-child(2) { opacity: 0; }
.recto-nav.mobile-open .recto-nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.recto-nav-locked { overflow: hidden; }

/* === Mobile responsive (<= 900px) === */
@media (max-width: 900px) {
  .recto-nav {
    padding: 0 10px;
    gap: 8px;
    height: 56px;
    overflow: visible;
  }
  .recto-nav-burger { display: inline-flex; }
  .recto-current-page { display: block; }
  .mobile-quicklinks { display: flex; }
  .recto-nav .logo .logo-text { display: none; }
  .recto-nav .logo .nav-logo-badge { width: 36px; height: 36px; }
  .recto-nav .links {
    position: fixed;
    top: 56px; left: 0; right: 0;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    background: #0f1018;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 8px 0;
    gap: 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
    z-index: 9999;
  }
  .recto-nav.mobile-open .links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .recto-nav .links a {
    height: 48px;
    padding: 0 20px;
    font-size: 0.9rem;
    width: 100%;
    white-space: nowrap;
    justify-content: flex-start;
    gap: 14px;
    border-radius: 0;
  }
  .recto-nav .links a::after { display: none; }
  .recto-nav .links a.active { background: rgba(59,130,246,0.12); border-left: 3px solid #3b82f6; padding-left: 17px; }
  .recto-nav .links a span.label,
  .recto-nav .links a .label { display: inline !important; }
  .recto-nav .links a svg { width: 18px; height: 18px; opacity: 1; }
  .recto-nav .actions { gap: 6px; margin-left: auto; }
  .recto-nav .stream-btn {
    padding: 8px 10px;
    height: 40px;
    min-width: 44px;
  }
  .recto-nav .stream-btn .stream-meta { display: none; }
  .recto-nav .twitch-login span { display: none; }
  .recto-nav .twitch-login {
    width: 40px; padding: 0; justify-content: center;
  }
  .recto-nav .user-card .user-meta { display: none; }
  .recto-nav .user-card { padding: 4px 6px; height: 44px; }
  .recto-user-menu { right: 10px; left: 10px; min-width: 0; }
}

@media (max-width: 480px) {
  .recto-nav { padding: 0 6px; gap: 4px; }
  .recto-nav .links a { padding: 0 8px; }
  .recto-nav .stream-btn { padding: 0 10px; min-width: 40px; height: 38px; }
  .recto-nav .stream-btn .stream-icon { width: 18px; height: 18px; }
}

/* Login-Modal mobil */
@media (max-width: 600px) {
  #recto-login-modal .box {
    width: 92% !important;
    max-width: 360px !important;
    padding: 22px !important;
  }
  #recto-login-modal .box input {
    font-size: 16px !important; /* verhindert iOS Auto-Zoom */
  }
}


/* ============================================================
   ZwolleBonus – globale Button- & Slider-Overrides
   ============================================================ */

/* --- Range-Slider: dezent dunkelblau ----------------------- */
input[type=range]{
  -webkit-appearance:none; appearance:none;
  height:4px; background:transparent; outline:none;
  accent-color:#3b82f6;
}
input[type=range]::-webkit-slider-runnable-track{
  height:4px; border-radius:3px;
  background:#1e293b;
}
input[type=range]::-moz-range-track{
  height:4px; border-radius:3px;
  background:#1e293b;
}
input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none; appearance:none;
  width:14px; height:14px; border-radius:50%;
  background:#3b82f6; border:none;
  margin-top:-5px;
  box-shadow:0 0 0 1px rgba(0,0,0,.4);
  cursor:pointer; transition:transform .15s, background .15s;
}
input[type=range]::-webkit-slider-thumb:hover{
  transform:scale(1.12); background:#60a5fa;
}
input[type=range]::-moz-range-thumb{
  width:14px; height:14px; border-radius:50%;
  background:#3b82f6; border:none;
  box-shadow:0 0 0 1px rgba(0,0,0,.4);
  cursor:pointer;
}

/* --- Abbrechen / Zurücksetzen → ROT ------------------------ */
.btn.secondary, .btn.sec, .btn.ghost,
#recto-login-modal .secondary,
button.secondary, button.sec,
button.btn.ghost,
button.btn[id*="reset" i],
button.btn[id*="cancel" i],
button.btn[onclick*="reset" i],
button.btn[onclick*="close" i],
button.btn[onclick*="cancel" i],
button.btn[onclick*="clear" i],
button.btn[onclick*="Abbrechen" i],
button.btn[onclick*="Zurueck" i]{
  --acc:#ef4444; --acc2:#ff6b6b;
  background:rgba(239,68,68,.10) !important;
  color:#fff !important;
}
.btn.secondary:hover, .btn.sec:hover, .btn.ghost:hover,
#recto-login-modal .secondary:hover,
button.secondary:hover, button.sec:hover,
button.btn.ghost:hover,
button.btn[id*="reset" i]:hover,
button.btn[onclick*="reset" i]:hover,
button.btn[onclick*="close" i]:hover,
button.btn[onclick*="cancel" i]:hover,
button.btn[onclick*="clear" i]:hover{
  background:rgba(239,68,68,.18) !important;
  border-color:rgba(255,255,255,.18) !important;
  box-shadow:
    0 0 0 1px rgba(239,68,68,.45),
    0 6px 18px rgba(239,68,68,.45),
    0 0 24px rgba(239,68,68,.4) !important;
}
.btn.secondary::after, .btn.sec::after, .btn.ghost::after,
button.secondary::after, button.sec::after,
button.btn.ghost::after,
button.btn[id*="reset" i]::after,
button.btn[onclick*="reset" i]::after,
button.btn[onclick*="close" i]::after,
button.btn[onclick*="cancel" i]::after,
button.btn[onclick*="clear" i]::after{
  background:linear-gradient(90deg,#ef4444,#ff6b6b) !important;
  box-shadow:0 0 10px #ef4444 !important;
}
/* Login-Modal Primary bleibt im Blau-Akzent (Standardstyle) */
