/* =========================================================
   BandBuddy – style.css
   ========================================================= */

/* Fonts werden lokal via System Font Stack geladen */

/* ---------- Tokens ---------- */
:root {
  --bg:        #070709;
  --surface:   #111118;
  --surface2:  #1a1a24;
  --border:    rgba(255,255,255,.06);
  --border2:   rgba(255,255,255,.10);
  --txt:       #f0f0f5;
  --txt2:      #a0a0b8;
  --txt3:      #5a5a78;
  --accent:    #e8ff47;
  --accent-dim:rgba(232,255,71,.12);
  --green:     #22c55e;
  --blue:      #38bdf8;
  --red:       #f87171;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --sp-xs: 8px; --sp-sm: 16px; --sp-md: 24px; --sp-lg: 48px;
  --px:    clamp(16px, 4vw, 32px);
  --nav-h: 56px;
  --safeT: env(safe-area-inset-top);
  --safeB: env(safe-area-inset-bottom);
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  /* legacy */
  --color-primary: #f0f0f5; --color-secondary: #e8ff47; --color-tertiary: #22c55e;
  --color-background-light: #070709; --color-text: #f0f0f5;
  --color-light-gray: #1a1a24; --color-white: #111118;
  --color-shadow: rgba(0,0,0,.4); --color-primary-rgb: 240,240,245;
  --border-radius: 12px; --spacing-xs: 8px; --spacing-sm: 16px;
  --spacing-md: 24px; --spacing-lg: 48px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--txt); background: var(--bg);
  -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
html, body {
  overflow-x: auto;
  max-width: 100%;
}

.site-wrapper { 
    display: flex; 
    flex-direction: column; 
    min-height: 100dvh; 
    overflow-x: hidden;
    max-width: 100%;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--px); }
.section    { max-width: 1200px; margin: 0 auto; padding: 0 var(--px); }
.section-divider { height: 1px; background: var(--border); }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading); font-weight: 900; line-height: 1.1; color: var(--txt);
}

/* ---------- Buttons ---------- */
.btn, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius);
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .3px;
  cursor: pointer; border: none;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  white-space: nowrap; -webkit-tap-highlight-color: transparent;
}
.btn-primary, .button-primary { background: var(--accent); color: #000; }
.btn-primary:hover  { background: #f5ff6e; transform: translateY(-1px); }
.btn-primary:active { opacity: .75; transform: scale(.98); }
.btn-outline, .button-outline { background: transparent; color: var(--txt); border: 1.5px solid var(--border2); }
.btn-outline:hover  { border-color: var(--accent); color: var(--accent); }
.btn-ghost          { background: var(--surface); color: var(--txt2); border: 1px solid var(--border); }
.btn-ghost:hover    { background: var(--surface2); color: var(--txt); }
.btn-danger         { background: rgba(248,113,113,.12); color: var(--red); border: 1px solid rgba(248,113,113,.2); }
.btn-danger:hover   { background: rgba(248,113,113,.2); }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.main-header {
  background: rgba(7,7,9,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  z-index: 500;
}
.header-content {
  display: flex; justify-content: space-between; align-items: center;
  height: var(--nav-h);
}
.site-logo {
  font-family: var(--font-heading); font-size: 22px; font-weight: 900;
  letter-spacing: -.5px; color: var(--txt); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; transition: color .15s;
}
.site-logo:hover { color: var(--accent); }
.site-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent); flex-shrink: 0;
}

/* Desktop Nav */
.main-navigation ul {
  list-style: none; display: flex; align-items: center; gap: 2px;
}
.main-navigation a {
  color: var(--txt2); padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; transition: color .15s, background .15s;
  display: block;
}
.main-navigation a:hover  { color: var(--txt); background: var(--surface2); }
.main-navigation a.active { background: var(--accent); color: #000; }

.nav-cta-btn {
  font-family: var(--font-heading); font-size: 14px; font-weight: 900;
  letter-spacing: .3px; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--radius-sm);
  background: var(--accent); color: #000; border: none; cursor: pointer;
  transition: opacity .15s; white-space: nowrap;
}
.nav-cta-btn:hover { opacity: .85; }

/* Burger */
.burger-menu-toggle {
  display: none;
  background: none; border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 8px 12px;
  color: var(--txt); cursor: pointer; font-size: 18px;
  align-items: center; gap: 8px;
  transition: border-color .15s, color .15s;
  -webkit-tap-highlight-color: transparent;
  position: relative; z-index: 99999;
}
.burger-menu-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* Mobile Nav – Fullscreen Overlay */
@media (max-width: 899px) {
  .burger-menu-toggle { display: flex; }
  .nav-cta-btn { display: none; }

  .main-navigation {
    /* Nicht display: none nutzen, sonst funktionieren Animationen nicht */
    display: block; 
    position: fixed;
    inset: 0;
    background: #070709;
    padding: 100px clamp(16px,4vw,32px) 40px;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100dvh;
    
    /* Menü standardmäßig nach links aus dem Bild schieben */
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Sicherstellen, dass nichts im Hintergrund geklickt wird, 
       wenn das Menü zu ist */
    visibility: hidden; 
    pointer-events: none;
    isolation: isolate;
  }

  /* Wenn das Menü offen ist */
  .main-navigation.is-open {
    transform: translateX(0); /* Reinschieben */
    visibility: visible;
    pointer-events: auto; /* Klicks erlauben! */
  }

  /* Der Rest bleibt gleich */
  .main-navigation ul { flex-direction: column; gap: 6px; }
  .main-navigation li { width: 100%; }
  .main-navigation a {
    display: block; 
    padding: 18px 20px;
    border-radius: 12px; 
    font-size: 22px; /* Etwas kleiner als 26px, damit es auf kleinen Handys passt */
    font-weight: 900;
    border: 1px solid rgba(255,255,255,.06);
    text-transform: uppercase; 
    letter-spacing: .5px; 
    color: #a0a0b8;
    transition: all .15s;
  }
  .main-navigation a:hover { color: #f0f0f5; background: #1a1a24; border-color: rgba(255,255,255,.10); }
  .main-navigation a.active { background: #e8ff47; color: #000; border-color: #e8ff47; }
}
/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 20px; flex-wrap: wrap; gap: 8px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(22px, 4vw, 32px);
  font-weight: 900; text-transform: uppercase; letter-spacing: -.5px;
}
.section-link {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  color: var(--txt3); text-transform: uppercase; letter-spacing: .5px;
  white-space: nowrap; transition: color .15s;
}
.section-link:hover { color: var(--accent); }

/* =========================================================
   CARDS
   ========================================================= */
.lanyard-card, .latest-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit; position: relative;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
}
.lanyard-card:hover, .latest-card:hover {
  transform: translateY(-3px); border-color: var(--border2);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.lanyard-card:active { transform: scale(.98); }

/* Portrait→Landscape Bild */
.lanyard-image-wrapper, .imgwrap, .col-card-img, .lanyard-card-img {
    aspect-ratio: 3 / 1; 
    background: #050508; 
    overflow: hidden;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative;
    padding: 10px; /* Etwas Luft zum Rand */
}
.lanyard-image-wrapper img, .lanyard-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Zeigt das ganze Band ohne es abzuschneiden */
    transition: transform .3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.lanyard-card:hover img {
    transform: scale(1.05); /* Leichter Zoom-Effekt beim Hover */
}
.lanyard-card:hover .lanyard-card-img img,
.latest-card:hover .imgwrap img { opacity: .85; }

.lanyard-card-img-placeholder, .col-card-no-img {
  font-size: 11px; color: var(--txt3); text-transform: uppercase; letter-spacing: .5px;
}
.lanyard-info, .col-card-meta, .lanyard-card-meta { padding: 10px 12px 12px; flex: 1; }
.lanyard-title, .col-card-name, .lanyard-card-name {
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  color: var(--txt); line-height: 1.2; margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.lanyard-brand, .col-card-brand, .lanyard-card-brand {
  font-size: 11px; color: var(--txt3);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Card Badges */
.swap-badge, .home-swap, .col-swap-badge {
  position: absolute; top: 6px; right: 6px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3);
  color: var(--green); padding: 2px 7px; border-radius: 999px;
}
.new-badge {
  position: absolute; top: 6px; left: 6px;
  font-family: var(--font-heading); font-size: 10px; font-weight: 900;
  background: var(--accent); color: #000;
  padding: 2px 7px; border-radius: 999px; text-transform: uppercase;
}

/* =========================================================
   GRIDS & STRIPS
   ========================================================= */
.lanyard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-sm);
}
.lanyard-strip {
  display: flex; gap: 12px;
  overflow-x: auto; overflow-y: visible;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lanyard-strip::-webkit-scrollbar { display: none; }
.lanyard-strip .lanyard-card {
  flex: 0 0 clamp(160px, 44vw, 260px); scroll-snap-align: start;
}

/* =========================================================
   KPI CARDS
   ========================================================= */
.kpi-card, .ack-kpi {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.kpi-card small, .ack-kpi-label {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--txt3); margin-bottom: 4px;
}
.kpi-card strong, .ack-kpi-val {
  font-family: var(--font-heading); font-size: 28px; font-weight: 900;
  color: var(--accent); line-height: 1;
}

/* =========================================================
   FORMS
   ========================================================= */
input, textarea, select {
  font-family: var(--font-body); font-size: 14px; color: var(--txt);
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 10px 14px;
  outline: none; transition: border-color .15s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(232,255,71,.4); }
input::placeholder, textarea::placeholder { color: var(--txt3); }
select option { background: var(--surface); }
label { font-size: 13px; font-weight: 700; color: var(--txt2); display: block; margin-bottom: 6px; }

/* =========================================================
   TAGS / PILLS / BADGES
   ========================================================= */
.tag, .col-filter-pill {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px;
  border-radius: 999px; background: var(--accent-dim);
  border: 1px solid rgba(232,255,71,.2); font-size: 12px; font-weight: 700; color: var(--accent);
}
.badge {
  display: inline-flex; align-items: center; padding: 3px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 700;
}
.badge-green  { background: rgba(34,197,94,.12);  color: var(--green); border: 1px solid rgba(34,197,94,.2); }
.badge-blue   { background: rgba(56,189,248,.12);  color: var(--blue);  border: 1px solid rgba(56,189,248,.2); }
.badge-yellow { background: var(--accent-dim);     color: var(--accent); border: 1px solid rgba(232,255,71,.2); }
.badge-red    { background: rgba(248,113,113,.12); color: var(--red);   border: 1px solid rgba(248,113,113,.2); }

/* =========================================================
   TABLES
   ========================================================= */
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th {
  background: var(--surface2); color: var(--txt3); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; padding: 10px 14px;
  text-align: left; border-bottom: 1px solid var(--border);
}
td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--txt); }
tr:hover td { background: var(--surface2); }

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination, .col-pagination {
  display: flex; gap: 6px; align-items: center;
  justify-content: center; flex-wrap: wrap; padding: 28px 0 48px;
}

/* =========================================================
   ALERTS
   ========================================================= */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; margin-bottom: var(--sp-sm); }
.alert-success { background: rgba(34,197,94,.1);  border: 1px solid rgba(34,197,94,.3);  color: var(--green); }
.alert-error   { background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.3); color: var(--red); }
.alert-info    { background: rgba(56,189,248,.1);  border: 1px solid rgba(56,189,248,.3);  color: var(--blue); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.92); z-index: 20000;
  justify-content: center; align-items: center;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); box-shadow: 0 24px 64px rgba(0,0,0,.8); }
.lightbox-close {
  position: fixed; top: 16px; right: 20px; background: var(--surface);
  border: 1px solid var(--border2); border-radius: 999px; color: var(--txt);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px; transition: background .15s;
}
.lightbox-close:hover { background: var(--surface2); }

/* =========================================================
   FOOTER
   ========================================================= */
.main-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  color: var(--txt2); margin-top: auto;
}
.footer-gallery {
  display: flex; gap: 6px; overflow: hidden; padding: 20px 0 0; align-items: flex-end;
}
.footer-gallery-item {
  flex-shrink: 0; width: 80px; aspect-ratio: 3 / 1;
  background: #050508; border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center; position: relative;
  transition: border-color .15s, transform .15s;
}
.footer-gallery-item:hover { border-color: var(--border2); transform: translateY(-2px); }
.footer-gallery-item img {
  height: 300%; width: auto; max-width: none;
  transform: rotate(90deg); object-fit: cover; pointer-events: none;
}
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 24px; padding: 16px 0 20px;
  border-top: 1px solid var(--border); margin-top: 16px;
}
.footer-logo {
  font-family: var(--font-heading); font-size: 18px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.5px; color: var(--txt);
  display: flex; align-items: center; gap: 6px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 4px 2px; flex: 1; }
.footer-links a {
  font-size: 13px; font-weight: 700; color: var(--txt3);
  padding: 4px 10px; border-radius: 6px; transition: color .15s, background .15s;
}
.footer-links a:hover { color: var(--txt); background: var(--surface2); }
.footer-copy { width: 100%; font-size: 12px; color: var(--txt3); padding-top: 4px; }

/* =========================================================
   IMAGE POPUP
   ========================================================= */
.img-popup {
  display: none; position: fixed; inset: 0; z-index: 20000;
  align-items: center; justify-content: center;
}
.img-popup.open { display: flex; }
.popup-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.88); cursor: pointer; }
.popup-figure   { position: relative; z-index: 1; max-width: 92vw; max-height: 92vh; }
.popup-figure img { max-width: 92vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 24px 64px rgba(0,0,0,.8); display: block; }
.popup-close {
  position: absolute; top: -14px; right: -14px; width: 32px; height: 32px;
  border-radius: 999px; background: var(--surface2); border: 1px solid var(--border2);
  color: var(--txt); font-size: 16px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s;
}
.popup-close:hover { background: var(--accent); color: #000; }

/* =========================================================
   SCROLL-TO-TOP
   ========================================================= */
.scroll-top-btn {
  position: fixed; bottom: 100px; right: 24px; z-index: 9000;
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border2); color: var(--txt2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .2s, background .15s, color .15s, transform .15s;
}
.scroll-top-btn.show  { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--accent); color: #000; transform: translateY(-2px); }

/* =========================================================
   UTILITY
   ========================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--txt3); }
.text-green   { color: var(--green); }
.text-red     { color: var(--red); }
.text-center  { text-align: center; }
.fw-900       { font-weight: 900; }
.font-heading { font-family: var(--font-heading); }
.uppercase    { text-transform: uppercase; }
.truncate     { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* =========================================================
   INDEX – Hero, Search, Strips, Tausch, Info-Banner
   ========================================================= */

body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero {
  min-height: min(90dvh, 760px); display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
}
.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(232,255,71,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(56,189,248,.04) 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 52px var(--px); display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.hero-kicker {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.hero-kicker::before { content: ''; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; flex-shrink: 0; }
.hero-title {
  font-family: var(--font-heading); font-size: clamp(44px, 9vw, 90px);
  font-weight: 900; line-height: .95; letter-spacing: -1px; text-transform: uppercase; margin-bottom: 6px;
}
.hero-title-accent { color: var(--accent); }
.hero-count {
  font-family: var(--font-heading); font-size: clamp(72px, 16vw, 160px);
  font-weight: 900; line-height: 1; letter-spacing: -4px;
  color: var(--accent); text-shadow: 0 0 60px rgba(232,255,71,.2); display: block;
  animation: countPop .6s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes countPop {
  from { transform: scale(.8); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.hero-count-label {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--txt3); margin-bottom: 24px;
}
.hero-extra-note { font-size: 13px; color: var(--txt3); margin-bottom: 14px; }
.hero-actions    { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-stats      { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--border); }
.hero-stat       { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num   { font-family: var(--font-heading); font-size: 26px; font-weight: 900; line-height: 1; }
.hero-stat-num.green { color: var(--green); }
.hero-stat-num.blue  { color: var(--blue); }
.hero-stat-label { font-size: 11px; color: var(--txt3); text-transform: uppercase; letter-spacing: .5px; }
.hero-mascot {
  width: clamp(120px, 16vw, 220px); height: auto; opacity: .9;
  filter: drop-shadow(0 20px 40px rgba(232,255,71,.15));
  animation: floatMascot 4s ease-in-out infinite;
}
@keyframes floatMascot { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-scroll-hint {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: var(--txt3); letter-spacing: 1px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: fadeInUpHint 1s .8s both;
}
@keyframes fadeInUpHint {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.scroll-arrow {
  width: 16px; height: 16px;
  border-right: 2px solid var(--txt3); border-bottom: 2px solid var(--txt3);
  transform: rotate(45deg); animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(4px); }
}

/* Search */
.search-bar-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px var(--px);
}
.search-form { display: flex; gap: 8px; max-width: 680px; margin: 0 auto; }
.search-inp {
  flex: 1; padding: 12px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--border2); background: var(--surface2);
  color: var(--txt); font-size: 15px; outline: none;
  transition: border-color .15s; -webkit-appearance: none; appearance: none;
}
.search-inp:focus { border-color: rgba(232,255,71,.5); }
.search-inp::placeholder { color: var(--txt3); }
.search-btn {
  padding: 12px 20px; border-radius: var(--radius); border: none;
  background: var(--accent); color: #000; font-family: var(--font-heading);
  font-size: 15px; font-weight: 900; letter-spacing: .3px; text-transform: uppercase;
  cursor: pointer; transition: opacity .15s; white-space: nowrap;
  flex-shrink: 0; -webkit-tap-highlight-color: transparent;
}
.search-btn:active { opacity: .75; }

/* Index Sections */
.idx-section { padding: 48px var(--px); max-width: 1200px; margin: 0 auto; }
.idx-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
}
.idx-section-title {
  font-family: var(--font-heading); font-size: clamp(26px, 5vw, 40px);
  font-weight: 900; text-transform: uppercase; letter-spacing: -.5px; line-height: 1;
}
.idx-section-title span { color: var(--accent); }
.idx-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }

/* Tausch */
.swap-section-inner {
  background: linear-gradient(135deg, rgba(34,197,94,.06), transparent 60%), var(--surface);
  border: 1px solid rgba(34,197,94,.15); border-radius: var(--radius-lg);
  padding: 28px 24px; position: relative; overflow: hidden;
}
.swap-section-inner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(34,197,94,.05); pointer-events: none;
}
.swap-header  { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.swap-icon    { width: 44px; height: 44px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.swap-title   { font-family: var(--font-heading); font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: -.5px; }
.swap-count-badge { font-family: var(--font-heading); font-size: 13px; font-weight: 900; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.25); color: var(--green); padding: 3px 10px; border-radius: 999px; }
.swap-sub     { font-size: 14px; color: var(--txt2); margin-bottom: 18px; line-height: 1.55; }

/* Info Banner */
.info-banner {
  background: linear-gradient(135deg, rgba(232,255,71,.05), transparent 60%);
  border: 1px solid rgba(232,255,71,.1); border-radius: var(--radius-lg);
  padding: 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.info-banner-kicker { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.info-banner-title  { font-family: var(--font-heading); font-size: clamp(20px, 3vw, 30px); font-weight: 900; text-transform: uppercase; letter-spacing: -.5px; margin: 0 0 8px; }
.info-banner-title span { color: var(--accent); }
.info-banner-text   { font-size: 14px; color: var(--txt2); max-width: 560px; line-height: 1.6; }

/* Flash */
.flash-msg     { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13px; margin-top: 10px; }
.flash-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: var(--green); }
.flash-error   { background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.2); color: var(--red); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; text-align: center; }
  .hero-mascot   { display: none; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .hero-kicker   { justify-content: center; }
  .idx-grid      { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .lanyard-grid  { grid-template-columns: repeat(2, 1fr); gap: var(--sp-xs); }
}
@media (max-width: 560px) {
  .hero          { min-height: auto; }
  .hero-inner    { padding: 32px var(--px) 40px; }
  .hero-scroll-hint { display: none; }
  .lanyard-strip .lanyard-card { flex: 0 0 58vw; }
  .idx-grid      { grid-template-columns: repeat(2, 1fr); }
  .swap-section-inner { padding: 18px 16px; }
  .idx-section   { padding: 32px var(--px); }
  .info-banner   { padding: 20px; }
  .info-banner > .btn { width: 100%; justify-content: center; }
  .search-form   { gap: 6px; }
  .search-btn    { padding: 12px 14px; font-size: 13px; }
}
@media (max-width: 480px) {
  .lanyard-grid  { grid-template-columns: 1fr; }
}
/* =========================================================
   ACKNOWLEDGEMENTS
   ========================================================= */
.ack-hero {
  padding: 56px 0 44px;
  position: relative; overflow: hidden;
}
.ack-hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%, rgba(232,255,71,.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 85% 30%, rgba(56,189,248,.04) 0%, transparent 65%);
}
.ack-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
}
.ack-hero-kicker {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.ack-hero-kicker::before { content: ""; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.ack-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 900; line-height: .9;
  text-transform: uppercase; letter-spacing: -2px;
  margin: 0 0 14px;
}
.ack-hero h1 em { color: var(--accent); font-style: normal; }
.ack-hero-sub { font-size: 15px; color: var(--txt2); line-height: 1.6; margin: 0 0 24px; max-width: 52ch; }
.ack-hero-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.ack-kpis { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.ack-kpi {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px; min-width: 140px; text-align: right;
}
.ack-kpi-val { font-family: var(--font-heading); font-size: 36px; font-weight: 900; line-height: 1; color: var(--accent); }
.ack-kpi-label { font-size: 11px; color: var(--txt3); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }

.ack-controls {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  padding: 20px 0 24px;
  border-bottom: 1px solid var(--border); margin-bottom: 8px;
}
.ack-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm); padding: 0 14px;
  transition: border-color .15s;
}

.ack-search:focus-within { border-color: var(--accent); }

.ack-search input {
  background: transparent; border: none; padding: 10px 0;
  width: 100%; min-width: 200px;
}
.ack-search input::placeholder { color: var(--txt3); }
.ack-toggle-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border2); background: var(--surface);
  font-size: 13px; font-weight: 700; color: var(--txt2);
  cursor: pointer; transition: border-color .15s, color .15s; user-select: none;
}
.ack-toggle-label:has(input:checked) { border-color: rgba(232,255,71,.3); color: var(--accent); }
.ack-toggle-label input { display: none; }
.ack-count-info { font-size: 13px; color: var(--txt3); font-weight: 700; }
.ack-count-info strong { color: var(--accent); }

.ack-stage { position: relative; padding-top: 10px; }
.ack-rope {
  position: absolute; left: -20px; right: -20px; height: 8px;
  border-radius: 4px;
  background: repeating-linear-gradient(
    45deg,
    #5a3a1a 0px, #5a3a1a 5px,
    #7a5230 5px, #7a5230 10px,
    #5a3a1a 10px, #5a3a1a 15px
  );
  box-shadow: 0 2px 6px rgba(0,0,0,.5), inset 0 1px 2px rgba(255,255,255,.1);
  z-index: 1; pointer-events: none;
}
.ack-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  column-gap: clamp(6px, 1vw, 16px); row-gap: 40px;
  align-items: flex-start; position: relative; z-index: 2;
}
.ack-item {
  display: flex; flex-direction: column; align-items: center;
  margin-top: -2px; transition: opacity .2s, filter .2s;
}
.ack-item.is-faded { opacity: .15; filter: grayscale(.8); pointer-events: none; }
.ack-item.is-hidden { display: none; }
.ack-hook {
  width: 2px; height: 16px;
  background: linear-gradient(to bottom, #888, #555); border-radius: 1px; flex-shrink: 0;
}
.ack-lanyard {
  width: 68px; position: relative; cursor: default;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.ack-item:hover .ack-lanyard { transform: translateY(-6px) rotate(-1deg); }
.ack-item:nth-child(even):hover .ack-lanyard { transform: translateY(-6px) rotate(1deg); }
.ack-band-img {
  width: 100%; aspect-ratio: 1 / 4;
  background-size: contain; background-repeat: no-repeat; background-position: center top;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.5)); border-radius: 4px;
}
.ack-band-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; padding: 20% 8px;
}
.ack-band-text-inner {
  writing-mode: vertical-rl; transform: rotate(180deg);
  color: #fff; font-weight: 900; letter-spacing: .5px;
  text-shadow: 0 1px 3px rgba(0,0,0,.8), 0 0 8px rgba(0,0,0,.5);
  line-height: 1.05; font-size: 13px;
  max-height: 100%; overflow: hidden;
  word-break: break-word; text-align: center;
}
.ack-lanyard-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
.ack-tooltip {
  position: absolute; bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 6px 10px;
  font-size: 12px; font-weight: 700; color: var(--txt);
  white-space: nowrap; opacity: 0;
  transition: opacity .15s, transform .15s;
  pointer-events: none; z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.ack-item:hover .ack-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }
.ack-tooltip::after {
  content: ""; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--border2);
}
.ack-cta {
  margin-top: 64px;
  background: linear-gradient(135deg, rgba(232,255,71,.06), transparent 60%);
  border: 1px solid rgba(232,255,71,.12); border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.ack-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 24px; font-weight: 900; text-transform: uppercase;
  letter-spacing: -.3px; margin: 0 0 6px;
}
.ack-cta-text p { font-size: 13px; color: var(--txt3); margin: 0; }
.ack-cta-actions { display: flex; gap: 8px; flex-shrink: 0; }

@media (max-width: 900px) {
  .ack-hero-inner { grid-template-columns: 1fr; }
  .ack-kpis { flex-direction: row; }
  .ack-cta { flex-direction: column; }
  .ack-cta-actions { width: 100%; }
  .ack-cta-actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 640px) {
  .ack-lanyard { width: 52px; }
  .ack-controls { flex-direction: column; align-items: stretch; }
  .ack-search { width: 100%; }
  .ack-search input { min-width: unset; width: 100%; }
}
/* =========================================================
   COLLECTION
   ========================================================= */
.col-hero {
  padding: 36px 0 28px;
  position: relative; overflow: hidden;
}
.col-hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(232,255,71,.04) 0%, transparent 70%);
}
.col-hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.col-hero-kicker {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.col-hero-kicker::before { content: ""; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.col-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900; line-height: .95;
  text-transform: uppercase; letter-spacing: -1px; margin: 0 0 6px;
}
.col-hero h1 span { color: var(--accent); }
.col-hero-sub { font-size: 14px; color: var(--txt3); margin: 0; max-width: 55ch; }
.col-hero-stat {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--txt3); flex-shrink: 0;
}
.col-hero-stat strong { color: var(--accent); font-size: 22px; }

/* Toolbar */
.col-toolbar { padding: 16px 0; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.col-toolbar-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.col-toolbar-left  { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; flex: 1; }
.col-toolbar-right { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

.col-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-sm); padding: 0 12px;
  flex: 1; min-width: 200px; max-width: 380px;
  transition: border-color .15s;
}
.col-search:focus-within { border-color: rgba(232,255,71,.4); }
.col-search svg { flex-shrink: 0; color: var(--txt3); }
.col-search input {
  flex: 1; border: none; outline: none;
  background: transparent; color: var(--txt);
  font-size: 14px; padding: 10px 0;
  width: auto; -webkit-appearance: none;
}
.col-search input::placeholder { color: var(--txt3); }
.col-search-btn {
  background: none; border: none; cursor: pointer;
  color: var(--txt3); padding: 4px; display: flex; transition: color .15s;
}
.col-search-btn:hover { color: var(--accent); }

.col-swap-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border2); background: var(--surface);
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .3px; color: var(--txt2);
  cursor: pointer; transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
}
.col-swap-toggle:has(input:checked),
.col-swap-toggle.active {
  border-color: rgba(34,197,94,.4);
  background: rgba(34,197,94,.08);
  color: var(--green);
}
.col-swap-toggle input { display: none; }

.col-select {
  padding: 9px 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border2);
  background: var(--surface); color: var(--txt);
  font-size: 13px; font-weight: 700;
  cursor: pointer; outline: none; transition: border-color .15s;
  -webkit-appearance: none; appearance: none;
}
.col-select:focus { border-color: rgba(232,255,71,.4); }

.col-result-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-wrap: wrap; padding: 0 0 16px;
}
.col-result-count { font-size: 13px; color: var(--txt3); font-weight: 700; }
.col-result-count strong { color: var(--txt); font-size: 15px; }
.col-active-filters { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }

.col-tag-panel {
  margin-bottom: 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.col-tag-summary {
  padding: 12px 16px; cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: var(--txt2);
  display: flex; align-items: center; gap: 8px; transition: color .15s;
}
.col-tag-summary::-webkit-details-marker { display: none; }
.col-tag-summary:hover { color: var(--txt); }
.col-tag-grid { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 14px; }
.col-tag-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--border2); background: var(--surface2);
  font-size: 13px; font-weight: 700; color: var(--txt2);
  cursor: pointer; transition: border-color .15s, color .15s, background .15s;
}
.col-tag-label:hover { color: var(--txt); }
.col-tag-label.active {
  background: rgba(232,255,71,.1);
  border-color: rgba(232,255,71,.3);
  color: var(--accent);
}
.col-tag-label input { display: none; }

/* Grid & Cards */
.col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}
.col-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit; position: relative;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
}
.col-card:hover {
  transform: translateY(-3px); border-color: var(--border2);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.col-card:active { transform: scale(.98); }
.col-card-img {
  aspect-ratio: 3 / 1; background: #050508; overflow: hidden;
  position: relative; display: flex; align-items: center; justify-content: center;
  contain: strict;
}
.col-card-img img {
    width: 100%;
    height: 100%;
    /* 'contain' statt 'cover' sorgt dafür, dass das ganze Band sichtbar bleibt, 
       auch wenn es das falsche Format hat */
    object-fit: contain; 
    background: #000; /* Schwarzer Hintergrund für die Ränder */
    display: block;
}
.col-card:hover .col-card-img img { opacity: .85; }
.col-card-no-img {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--txt3); text-transform: uppercase; letter-spacing: .5px;
}
.col-swap-badge {
  position: absolute; bottom: 6px; right: 6px;
  font-family: var(--font-heading); font-size: 11px; font-weight: 900;
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3);
  color: var(--green); padding: 2px 8px; border-radius: 999px;
}
.col-card-meta { padding: 10px 12px 12px; flex: 1; }
.col-card-name {
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  line-height: 1.2; color: var(--txt); margin-bottom: 4px;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.col-card-brand {
  font-size: 11px; color: var(--txt3);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Pagination */
.col-pagination {
  display: flex; gap: 6px; align-items: center;
  justify-content: center; flex-wrap: wrap; padding: 28px 0 48px;
}
.col-page-info { font-size: 13px; color: var(--txt3); font-weight: 700; padding: 0 6px; }

/* Empty state */
.col-empty { text-align: center; padding: 80px 20px; }
.col-empty-icon { font-size: 40px; margin-bottom: 12px; }
.col-empty h3 {
  font-family: var(--font-heading); font-size: 22px; font-weight: 900;
  text-transform: uppercase; margin-bottom: 8px;
}
.col-empty p { font-size: 14px; color: var(--txt3); margin-bottom: 20px; }

@media (max-width: 768px) {
  .col-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .col-search { max-width: 100%; min-width: unset; }
  .col-toolbar-left { width: 100%; }
}
@media (max-width: 480px) {
  .col-grid { grid-template-columns: 1fr; }
  .col-toolbar-right { width: 100%; }
  .col-select { flex: 1; }
}
/* =========================================================
   DETAIL PAGE
   ========================================================= */
.dt-back { padding: 16px 0 0; }
.dt-back a {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--txt3);
  display: inline-flex; align-items: center; gap: 6px; transition: color .15s;
}
.dt-back a:hover { color: var(--accent); }

.dt-wrap {
  padding: 24px 0 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start;
}
.dt-img-col { position: sticky; top: 80px; }
.dt-img-wrap {
  aspect-ratio: 3 / 1; background: #050508;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; contain: strict;
}

.dt-img-no { font-size: 12px; color: var(--txt3); text-transform: uppercase; letter-spacing: .5px; }

.dt-img-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.dt-swap-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25);
  font-family: var(--font-heading); font-size: 14px; font-weight: 900;
  text-transform: uppercase; color: var(--green);
}
.dt-link-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border2);
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  text-transform: uppercase; color: var(--txt2); text-decoration: none;
  transition: border-color .15s, color .15s;
}
.dt-link-btn:hover { border-color: var(--accent); color: var(--accent); }

.dt-kicker {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.dt-kicker::before { content: ""; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.dt-name {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: .95;
  text-transform: uppercase; letter-spacing: -1px; margin: 0 0 8px;
}
.dt-brand {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--txt3); margin-bottom: 20px;
}
.dt-desc {
  font-size: 14px; color: var(--txt2); line-height: 1.6;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.dt-props {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px; margin-bottom: 24px;
}
.dt-prop {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
}
.dt-prop-label {
  font-size: 11px; color: var(--txt3); font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px;
}
.dt-prop-val { font-family: var(--font-heading); font-size: 18px; font-weight: 700; }
.dt-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.dt-tag {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(232,255,71,.08); border: 1px solid rgba(232,255,71,.2);
  font-size: 12px; font-weight: 700; color: var(--accent);
  text-decoration: none; transition: background .15s;
}
.dt-tag:hover { background: rgba(232,255,71,.14); }
.dt-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.dt-likes {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--txt3); margin-left: auto; align-self: center;
}

@media (max-width: 900px) {
  .dt-wrap { grid-template-columns: 1fr; }
  .dt-img-col { position: static; }
  .dt-actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 560px) {
  .dt-props { grid-template-columns: 1fr; }
}
/* =========================================================
   LANYARD CARD (Template)
   ========================================================= */
.lanyard-card-img-link { display: block; text-decoration: none; }
.lanyard-card-name-link { text-decoration: none; color: inherit; }

.lc-desc {
  font-size: 12px; color: var(--txt3); line-height: 1.5;
  margin: 4px 0 8px;
}
.lc-tags {
  display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px;
}
.lc-tag {
  font-size: 11px; font-weight: 700; color: var(--accent);
  background: rgba(232,255,71,.07); border: 1px solid rgba(232,255,71,.15);
  padding: 2px 8px; border-radius: 999px; text-decoration: none;
  transition: background .15s;
}
.lc-tag:hover { background: rgba(232,255,71,.14); }

.lc-actions {
  display: flex; gap: 4px; align-items: center;
  padding-top: 8px; border-top: 1px solid var(--border);
  margin-top: 8px;
}
.lc-action-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 10px; border-radius: var(--radius-sm);
  background: none; border: 1px solid transparent;
  color: var(--txt3); cursor: pointer; font-size: 12px;
  transition: color .15s, background .15s, border-color .15s;
  -webkit-tap-highlight-color: transparent;
}
.lc-action-btn:hover { color: var(--txt); background: var(--surface2); border-color: var(--border); }
.lc-like-btn.is-liked { color: var(--red); }
.lc-like-btn.is-liked svg { fill: var(--red); stroke: var(--red); }
.lc-fav-btn.is-saved { color: var(--accent); }
.lc-fav-btn.is-saved svg { fill: var(--accent); stroke: var(--accent); }
.lc-like-count { font-family: var(--font-heading); font-weight: 700; font-size: 13px; }

/* Card Actions */
.col-card-actions {
  display: flex; gap: 2px;
  padding-top: 8px; margin-top: 6px;
  border-top: 1px solid var(--border);
}
.lc-action-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 8px; border-radius: var(--radius-sm);
  background: none; border: 1px solid transparent;
  color: var(--txt3); cursor: pointer; font-size: 12px;
  transition: color .15s, background .15s, border-color .15s;
  -webkit-tap-highlight-color: transparent;
}
.lc-action-btn:hover       { color: var(--txt); background: var(--surface2); border-color: var(--border); }
.lc-like-btn.is-liked      { color: var(--red); }
.lc-like-btn.is-liked svg  { fill: var(--red); stroke: var(--red); }
.lc-fav-btn.is-saved       { color: var(--accent); }
.lc-fav-btn.is-saved svg   { fill: var(--accent); stroke: var(--accent); }
.lc-like-count             { font-family: var(--font-heading); font-weight: 700; font-size: 13px; }


/* Col-Card Outer Wrapper (für Actions außerhalb des Links) */
.col-card-outer {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--surface);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.col-card-outer:hover {
  border-color: var(--border2);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  transform: translateY(-3px);
}
.col-card-outer .col-card {
  border: none; border-radius: 0; box-shadow: none;
  background: transparent; flex: 1;
}
.col-card-outer .col-card:hover { transform: none; box-shadow: none; }
.col-card-actions {
  display: flex; gap: 4px; padding: 8px 10px;
  border-top: 1px solid var(--border);
}

/* =====================================================
   COMMUNITY-BEREICH
   ===================================================== */
.dt-community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border1);
}
@media (max-width: 768px) {
  .dt-community { grid-template-columns: 1fr; }
}

.dt-section { display: flex; flex-direction: column; gap: 16px; }

.dt-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0;
  color: var(--txt1);
}

.dt-section-sub {
  margin: -8px 0 0;
  font-size: 13px;
  color: var(--txt3);
}

/* Feedback-Boxen */
.dt-feedback {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}
.dt-feedback--ok    { background: #1a3a1a; color: #6fcf6f; border: 1px solid #2d5a2d; }
.dt-feedback--error { background: #3a1a1a; color: #cf6f6f; border: 1px solid #5a2d2d; }

/* Kommentarliste */
.dt-comments-list { display: flex; flex-direction: column; gap: 12px; }

.dt-comment {
  background: var(--bg2);
  border: 1px solid var(--border1);
  border-radius: 8px;
  padding: 12px 14px;
}
.dt-comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 12px;
}
.dt-comment-meta strong { color: var(--txt1); }
.dt-comment-meta span  { color: var(--txt3); }
.dt-comment-text { font-size: 14px; color: var(--txt2); line-height: 1.5; }

.dt-empty { font-size: 13px; color: var(--txt3); margin: 0; }

/* Formulare */
.dt-form { display: flex; flex-direction: column; gap: 10px; }
.dt-form-row { display: flex; flex-direction: column; }

.dt-input {
  background: var(--bg2);
  border: 1px solid var(--border1);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--txt1);
  font-family: inherit;
  transition: border-color .15s;
  width: 100%;
  box-sizing: border-box;
}
.dt-input:focus { outline: none; border-color: var(--accent); }
.dt-textarea    { resize: vertical; min-height: 90px; }
.dt-select      { cursor: pointer; }

.dt-form-hint { font-size: 11px; color: var(--txt3); margin-top: 2px; }

/* Aktueller Wert Hinweis */
.dt-current-val {
  font-size: 12px;
  color: var(--txt3);
  background: var(--bg2);
  border: 1px solid var(--border1);
  border-radius: 6px;
  padding: 7px 12px;
}
.dt-current-val span { color: var(--txt1); font-weight: 500; }

/* ---------- Detail Page Specifics ---------- */
.dt-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
    margin-top: var(--sp-md);
}

.dt-img-wrap {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: #0b0b0b; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3; 
    width: 100%;
    position: relative;
}

.dt-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
/* Spezialklasse für hochkant fotografierte Bänder -> "Hinlegen" */
.dt-img-wrap img.is-portrait {
    /* Wir drehen das Bild */
    transform: rotate(-90deg);
    
    /* Da das Bild gedreht ist, müssen wir die Dimensionen begrenzen, 
       damit es nicht aus dem Container ragt. 
       Die Höhe des Bildes entspricht nach der Drehung der Breite des Containers. */
    width: auto;
    max-width: 75%; /* Verhindert, dass das lange Band oben/unten anstößt */
    height: auto;
    max-height: 95%;
}
@media (max-width: 900px) {
    .dt-wrap { grid-template-columns: 1fr; }
    .dt-img-wrap { position: static; min-height: auto; }
}