/* =========================================================
   CraftLand Store – natives Tebex-Theme
   Neues Design (OPSUCHT-orientiert), portiert aus Astro/Tailwind.
   Stufe 1: Fundament + Header + Footer
   ========================================================= */

/* ---------- Design-Tokens ---------- */
:root {
  --bg: #eef2f7;
  --bg-2: #ffffff;
  --bg-3: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --surface-3: #e6ecf3;
  --line: #dfe5ee;
  --ink: #0f172a;
  --ink-2: #334155;
  --muted: #64748b;
  --accent: #12a5ff;
  --accent-600: #0b86d6;
  --accent-700: #0a6fb0;
  --accent-2: #22d3ee;
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1360px;
  --font-display: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background-color: var(--bg) !important; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg) !important;
  color: var(--ink-2);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 80% -8%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 60%),
    radial-gradient(700px 500px at 0% 0%, color-mix(in srgb, var(--accent-2) 6%, transparent), transparent 55%);
}
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.15; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: color-mix(in srgb, var(--accent) 40%, transparent); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-700); }

/* ---------- Layout-Helfer ---------- */
.mc-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.mc-sections { display: flex; flex-direction: column; gap: 80px; padding: 80px 0; }
.mc-section-head { margin-bottom: 24px; }
.mc-eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); }
.mc-h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--ink); }
.mc-sub { color: var(--muted); margin-top: 4px; }

/* ---------- Utilities ---------- */
.glow-accent {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent),
              0 10px 40px -12px color-mix(in srgb, var(--accent) 55%, transparent);
}
.glow-accent-strong {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 55%, transparent),
              0 0 22px -2px color-mix(in srgb, var(--accent) 55%, transparent),
              0 20px 55px -14px color-mix(in srgb, var(--accent) 75%, transparent);
}
.text-gradient {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; background: var(--accent); animation: livePulse 1.8s ease-in-out infinite; }
@keyframes livePulse { 0%,100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent); } 50% { box-shadow: 0 0 0 5px transparent; } }

[data-reveal] { opacity: 0; transform: translateY(14px); }
[data-reveal].is-visible { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* ---------- Buttons ---------- */
.mc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  padding: 12px 20px; font-size: 14px; font-weight: 700; color: var(--ink);
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer; white-space: nowrap;
}
.mc-btn--primary { background: var(--accent); color: #04121f; }
.mc-btn--primary:hover { background: var(--accent-600); }
.mc-btn--ghost { background: var(--surface); border-color: var(--line); color: var(--ink-2); }
.mc-btn--ghost:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); color: var(--ink); }
.mc-btn--discord { background: #5865f2; color: #fff; }
.mc-btn--discord:hover { background: #6b76f5; }
.mc-btn--lg { padding: 16px 28px; text-transform: uppercase; letter-spacing: .03em; }

/* ---------- Header ---------- */
.mc-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.mc-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.9);
}
.mc-header__inner {
  height: 64px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.mc-logo { display: flex; align-items: center; gap: 10px; }
.mc-logo__mark { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--accent); color: #04121f; font-size: 18px; }
.mc-logo__mark img { width: 24px; height: 24px; object-fit: contain; }
.mc-logo__text { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }

.mc-nav { display: none; align-items: center; gap: 4px; }
.mc-nav__link { padding: 8px 14px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--muted); transition: background .2s, color .2s; }
.mc-nav__link:hover { background: var(--surface-2); color: var(--ink); }
.mc-nav__link.is-active { background: color-mix(in srgb, var(--accent) 15%, transparent); color: color-mix(in srgb, var(--accent) 80%, white); }

.mc-actions { display: flex; align-items: center; gap: 8px; }
.mc-account { display: none; }
.mc-account__btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); font-size: 14px; font-weight: 600; color: var(--ink-2); transition: border-color .2s, color .2s; }
.mc-account__btn:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); color: var(--ink); }
.mc-account__btn i { color: var(--accent); }
.mc-account__user { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); }
.mc-account__user img { width: 24px; height: 24px; border-radius: 6px; }
.mc-account__user span { font-size: 14px; font-weight: 600; color: var(--ink); }
.mc-icon-btn { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); transition: color .2s, border-color .2s; }
.mc-icon-btn:hover { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }

.mc-cart { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 12px; background: var(--accent); color: #04121f; font-size: 14px; font-weight: 700; transition: background .2s; }
.mc-cart:hover { background: var(--accent-600); }
.mc-cart__badge { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px; display: flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--bg); color: var(--accent); font-size: 11px; font-weight: 900; box-shadow: 0 0 0 2px var(--accent); }
.mc-burger { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); }

@media (min-width: 1024px) {
  .mc-nav { display: flex; }
  .mc-account { display: block; }
  .mc-burger { display: none; }
}
@media (max-width: 640px) {
  .mc-cart .mc-cart__label { display: none; }
}

/* ---------- Mobile-Menü ---------- */
.mc-mobile { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.mc-mobile__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s; }
.mc-mobile__panel { position: absolute; top: 0; right: 0; height: 100%; width: 86%; max-width: 360px; background: var(--bg-2); border-left: 1px solid var(--line); padding: 24px; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s ease; }
.mc-mobile.is-open { pointer-events: auto; }
.mc-mobile.is-open .mc-mobile__overlay { opacity: 1; }
.mc-mobile.is-open .mc-mobile__panel { transform: translateX(0); }
.mc-mobile__head { display: flex; align-items: center; justify-content: space-between; }
.mc-mobile__links { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.mc-mobile__links a { padding: 12px 16px; border-radius: 12px; font-size: 16px; font-weight: 600; color: var(--ink-2); transition: background .2s, color .2s; }
.mc-mobile__links a:hover { background: var(--surface-2); color: var(--ink); }
.mc-mobile__foot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 1024px) { .mc-mobile { display: none; } }

/* ---------- Footer ---------- */
.mc-footer { margin-top: 96px; border-top: 1px solid var(--line); background: var(--bg-2); }
.mc-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px; }
.mc-footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.mc-footer__brand { display: flex; align-items: center; gap: 10px; }
.mc-footer__brand-tag { margin-top: 16px; max-width: 20rem; font-size: 14px; color: var(--muted); }
.mc-footer__socials { margin-top: 20px; display: flex; gap: 12px; }
.mc-footer__col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.mc-footer__col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.mc-footer__col a { font-size: 14px; color: var(--ink-2); transition: color .2s; }
.mc-footer__col a:hover { color: var(--accent); }
.mc-footer__bottom { margin-top: 48px; border-top: 1px solid var(--line); padding-top: 24px; display: flex; flex-direction: column; gap: 16px; align-items: center; justify-content: space-between; }
.mc-footer__copy { font-size: 14px; color: var(--muted); text-align: center; }
.mc-footer__pay { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 20px; }
.mc-footer__credits { margin-top: 12px; font-size: 12px; color: var(--muted); text-align: center; }
.mc-footer__credits a { color: var(--accent); }
@media (min-width: 768px) {
  .mc-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .mc-footer__bottom { flex-direction: row; }
}

/* ---------- Toast ---------- */
.mc-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 16px);
  z-index: 70; display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  background: color-mix(in srgb, var(--surface-2) 96%, transparent);
  color: var(--ink); font-size: 14px; font-weight: 600; backdrop-filter: blur(8px);
  box-shadow: 0 10px 40px -12px color-mix(in srgb, var(--accent) 55%, transparent);
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s;
}
.mc-toast i { color: var(--accent); }
.mc-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* =========================================================
   Stufe 2–5: Seiten-Komponenten
   ========================================================= */

/* ---------- Abschnitts-Kopf ---------- */
.mc-shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.mc-shead__link { display: none; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--accent); }
@media (min-width: 640px) { .mc-shead__link { display: inline-flex; } }

/* ---------- Hero ---------- */
.mc-hero { position: relative; overflow: hidden; }
.mc-hero__scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.mc-hero__ov-l { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to right, var(--bg), color-mix(in srgb, var(--bg) 60%, transparent), transparent); }
.mc-hero__ov-t { position: absolute; left: 0; right: 0; top: 0; height: 96px; pointer-events: none; background: linear-gradient(to bottom, color-mix(in srgb, var(--bg) 85%, transparent), transparent); }
.mc-hero__ov-b { position: absolute; left: 0; right: 0; bottom: 0; height: 160px; pointer-events: none; background: linear-gradient(to top, var(--bg), transparent); }
.mc-hero__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(620px 340px at 80% 22%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 62%); }
.mc-hero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 80px 24px 120px; }
.mc-hero__content { max-width: 640px; }
.mc-hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); background: color-mix(in srgb, var(--accent) 10%, transparent); font-size: 14px; font-weight: 700; color: var(--accent); }
.mc-hero__title { margin-top: 24px; font-size: clamp(36px, 6vw, 72px); font-weight: 900; line-height: 1.04; letter-spacing: -.02em; color: var(--ink); }
.mc-hero__desc { margin-top: 24px; max-width: 36rem; font-size: 18px; color: var(--ink-2); }
.mc-hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.mc-ip { display: inline-flex; align-items: center; gap: 12px; margin-top: 32px; padding: 10px 16px; border-radius: 12px; border: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 60%, transparent); backdrop-filter: blur(6px); transition: border-color .2s; }
.mc-ip:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.mc-ip__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.mc-ip__value { font-family: ui-monospace, monospace; font-size: 14px; font-weight: 700; color: var(--ink); }
.mc-ip__btn { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; background: var(--surface-2); color: var(--accent); font-size: 12px; }
.mc-ip:hover .mc-ip__btn { background: var(--accent); color: #04121f; }

/* ---------- Sale-Banner ---------- */
.mc-sale { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding: 24px; border-radius: var(--radius); border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent); background: linear-gradient(to right, color-mix(in srgb, var(--accent) 20%, transparent), var(--surface) 40%); }
.mc-sale__tag { padding: 6px 12px; border-radius: 10px; background: var(--accent); color: #04121f; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.mc-sale__title { font-size: 24px; font-weight: 800; color: var(--ink); }
.mc-sale__desc { font-size: 14px; color: var(--ink-2); }
.mc-countdown { display: flex; gap: 8px; }
.mc-countdown__unit { width: 64px; display: flex; flex-direction: column; align-items: center; padding: 8px 0; border-radius: 14px; border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent); background: color-mix(in srgb, var(--bg) 70%, transparent); }
.mc-countdown__unit strong { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--accent); }
.mc-countdown__unit small { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

/* ---------- Kategorie-Navigation ---------- */
.mc-cats { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .mc-cats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .mc-cats { grid-template-columns: repeat(6, 1fr); } }
.mc-cat { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; overflow: hidden; padding: 20px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); transition: transform .2s, border-color .2s, box-shadow .2s; }
.mc-cat:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 40%, transparent); box-shadow: 0 10px 40px -12px color-mix(in srgb, var(--accent) 55%, transparent); }
.mc-cat__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--surface-2); color: var(--accent); font-size: 18px; transition: background .2s, color .2s; }
.mc-cat:hover .mc-cat__icon { background: var(--accent); color: #04121f; }
.mc-cat__name { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.mc-cat__blurb { font-size: 12px; color: var(--muted); }

/* ---------- Modul-Grid + Produktkarte ---------- */
.module-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .module-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .module-grid { grid-template-columns: repeat(3, 1fr); } }
.module-grid > .col-6, .module-grid > .col-12 { width: 100%; }
.module-grid > .col-12 { grid-column: 1 / -1; }

.mc-prodgrid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .mc-prodgrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mc-prodgrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .mc-prodgrid { grid-template-columns: repeat(4, 1fr); } }

.mc-prod { position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); transition: transform .2s, border-color .2s, box-shadow .2s; }
.mc-prod:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 42%, transparent); box-shadow: 0 12px 44px -14px color-mix(in srgb, var(--accent) 55%, transparent); }
.mc-prod--featured { border-color: color-mix(in srgb, var(--accent) 50%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 55%, transparent), 0 20px 55px -14px color-mix(in srgb, var(--accent) 60%, transparent); }
.mc-prod__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.mc-prod__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mc-prod:hover .mc-prod__img { transform: scale(1.06); }
.mc-prod__shade { position: absolute; inset: 0; background: linear-gradient(to top, var(--surface), transparent 55%); pointer-events: none; }
.mc-prod__badge { position: absolute; left: 12px; top: 12px; z-index: 1; padding: 4px 8px; border-radius: 8px; background: var(--accent); color: #04121f; font-size: 12px; font-weight: 900; }
.mc-prod__body { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.mc-prod__name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); }
.mc-prod__name a:hover { color: var(--accent); }
.mc-prod__desc { margin-top: 6px; flex: 1; font-size: 14px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mc-prod__price { margin-top: 16px; display: flex; align-items: flex-end; gap: 8px; }
.mc-prod__price-old { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.mc-prod__price-now { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--accent); }
.mc-prod__actions { margin-top: 16px; display: flex; gap: 8px; }
.mc-prod__actions .mc-btn { flex: 1; }
.mc-iconaction { width: 44px; flex: 0 0 auto !important; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-2); transition: color .2s, border-color .2s; }
.mc-iconaction:hover { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }

/* ---------- Top-Spender-Karte (module.topdonator) ---------- */
.mc-donator { position: relative; overflow: hidden; padding: 28px; border-radius: var(--radius); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); background: var(--surface); text-align: center; }
.mc-donator__glow { position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 22%, transparent); filter: blur(60px); pointer-events: none; }
.mc-donator__eyebrow { position: relative; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); }
.mc-donator__title { position: relative; margin-top: 4px; font-size: 22px; font-weight: 800; color: var(--ink); }
.mc-donator__skin { position: relative; width: 72px; height: auto; margin: 16px auto 0; }
.mc-donator__crown { position: relative; display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 4px 12px; border-radius: 999px; background: color-mix(in srgb, #f59e0b 16%, transparent); color: #b45309; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.mc-donator__name { position: relative; margin-top: 10px; font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--ink); }
.mc-donator__reward { position: relative; display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding: 10px 18px; border-radius: 12px; border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); background: color-mix(in srgb, var(--accent) 10%, transparent); font-size: 14px; font-weight: 600; color: var(--accent); }
.mc-donator__empty { position: relative; margin-top: 16px; color: var(--muted); }

/* ---------- Server-Status ---------- */
.mc-server { position: relative; overflow: hidden; padding: 40px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-server__glow { position: absolute; top: -40px; right: -40px; width: 208px; height: 208px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 15%, transparent); filter: blur(60px); pointer-events: none; }
.mc-server__row { position: relative; display: flex; flex-direction: column; gap: 32px; align-items: flex-start; }
.mc-server__title { font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--ink); margin-top: 8px; }
.mc-server__players { margin-top: 12px; display: flex; align-items: center; gap: 8px; color: var(--ink-2); }
.mc-server__ipbox { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-2); }
.mc-server__ipbox span:first-child { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.mc-server__ip { font-family: ui-monospace, monospace; font-size: 18px; font-weight: 700; color: var(--ink); }
.mc-server__actions { display: flex; flex-direction: column; gap: 12px; width: 100%; }
@media (min-width: 640px) { .mc-server__actions { flex-direction: row; align-items: center; width: auto; } }
@media (min-width: 1024px) { .mc-server__row { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Trust ---------- */
.mc-trust { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .mc-trust { grid-template-columns: repeat(4, 1fr); } }
.mc-trust__item { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); }
.mc-trust__icon { width: 48px; height: 48px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: color-mix(in srgb, var(--accent) 10%, transparent); color: var(--accent); font-size: 20px; }
.mc-trust__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.mc-trust__text { font-size: 13px; color: var(--muted); }

/* ---------- Discord-CTA ---------- */
.mc-discord { position: relative; overflow: hidden; padding: 48px; border-radius: var(--radius); border: 1px solid rgba(88,101,242,.3); background: linear-gradient(135deg, rgba(88,101,242,.2), var(--surface) 55%); }
.mc-discord__glow { position: absolute; top: -64px; left: -64px; width: 256px; height: 256px; border-radius: 999px; background: rgba(88,101,242,.25); filter: blur(60px); pointer-events: none; }
.mc-discord__icon { position: absolute; right: 24px; bottom: -32px; font-size: 144px; color: rgba(88,101,242,.1); pointer-events: none; }
.mc-discord__inner { position: relative; max-width: 42rem; }
.mc-discord__eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #6366f1; }
.mc-discord__title { margin-top: 8px; font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--ink); }
.mc-discord__text { margin-top: 12px; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.mc-faq { max-width: 48rem; margin: 0 auto; }
.mc-faq__item { border-radius: 16px; border: 1px solid var(--line); background: var(--surface); padding: 20px; margin-bottom: 12px; }
.mc-faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; font-weight: 600; color: var(--ink); }
.mc-faq__q::-webkit-details-marker { display: none; }
.mc-faq__q i { color: var(--accent); transition: transform .2s; }
.mc-faq__item[open] .mc-faq__q i { transform: rotate(45deg); }
.mc-faq__a { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ---------- Breadcrumb ---------- */
.mc-crumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 14px; color: var(--muted); }
.mc-crumb a:hover { color: var(--accent); }
.mc-crumb i { font-size: 10px; }
.mc-crumb .is-current { color: var(--ink-2); }

/* ---------- Kategorie-Kopf ---------- */
.mc-cathead { position: relative; overflow: hidden; margin-bottom: 24px; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-cathead__glow { position: absolute; top: -80px; right: -64px; width: 224px; height: 224px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 10%, transparent); filter: blur(60px); pointer-events: none; }
.mc-cathead__row { position: relative; display: flex; align-items: center; gap: 16px; }
.mc-cathead__icon { width: 56px; height: 56px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-size: 24px; }
.mc-cathead__title { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--ink); }
.mc-cathead__desc { color: var(--ink-2); margin-top: 2px; }
.mc-subcats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.mc-subcat { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: 14px; font-weight: 600; color: var(--ink-2); transition: border-color .2s, color .2s; }
.mc-subcat:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); color: var(--ink); }

/* ---------- Paket-Detail ---------- */
.mc-pkg { display: grid; gap: 32px; }
@media (min-width: 1024px) { .mc-pkg { grid-template-columns: 1fr 1fr; } }
.mc-pkg__media { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-pkg__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.mc-pkg__badge { position: absolute; left: 16px; top: 16px; padding: 6px 12px; border-radius: 10px; background: var(--accent); color: #04121f; font-size: 14px; font-weight: 900; }
.mc-pkg__info { display: flex; flex-direction: column; }
.mc-pkg__cat { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); }
.mc-pkg__title { margin-top: 8px; font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--ink); }
.mc-pkg__price { margin-top: 16px; display: flex; align-items: flex-end; gap: 12px; }
.mc-pkg__price-old { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.mc-pkg__price-now { font-family: var(--font-display); font-size: 30px; font-weight: 900; color: var(--accent); }
.mc-pkg__desc { margin-top: 20px; color: var(--ink-2); }
.mc-pkg__desc :is(h1,h2,h3) { color: var(--ink); margin: 16px 0 8px; }
.mc-pkg__desc ul { list-style: disc; padding-left: 20px; margin: 8px 0; }
.mc-pkg__actions { margin-top: auto; padding-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.mc-pkg__actions .mc-btn--primary { flex: 1; min-width: 200px; }
.mc-pkg__secure { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.mc-pkg__secure i { color: var(--accent); }

/* ---------- Hinweise (Notices/Textbox) ---------- */
.mc-notices { display: grid; gap: 16px; margin-top: 24px; }
@media (min-width: 768px) { .mc-notices { grid-template-columns: 1fr 1fr; } }
.mc-notice { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-notice__title { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.mc-notice__title i { color: var(--accent); }
.mc-notice__text { margin-top: 8px; font-size: 14px; color: var(--ink-2); }

/* ---------- Checkout ---------- */
.mc-co { max-width: 900px; margin: 40px auto; padding: 0 24px; }
.mc-co__card { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); overflow: hidden; }
.mc-co__head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.mc-co__title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--ink); }
.mc-co__total { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--accent); }
.mc-co__row { display: grid; grid-template-columns: 1.6fr 1fr auto auto; align-items: center; gap: 16px; padding: 16px 24px; border-bottom: 1px solid var(--line); }
.mc-co__pname { font-weight: 600; color: var(--ink); }
.mc-co__pprice { color: var(--ink-2); }
.mc-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.mc-qty button { width: 32px; height: 36px; background: var(--surface-2); color: var(--ink-2); border: none; font-size: 16px; }
.mc-qty button:hover { color: var(--accent); }
.mc-qty input { width: 48px; height: 36px; text-align: center; background: transparent; border: none; color: var(--ink); font-weight: 600; }
.mc-co__actions { display: flex; gap: 8px; }
.mc-co__foot { padding: 24px; }
.mc-agree { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; cursor: pointer; font-size: 14px; color: var(--ink-2); }
.mc-agree input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; }
.mc-agree a { color: var(--accent); }
.mc-co__error { display: none; align-items: center; gap: 8px; margin: 12px 0; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(239,68,68,.4); background: rgba(239,68,68,.08); color: #dc2626; font-size: 14px; }
.mc-co__buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; margin-top: 16px; }
.mc-co__divider { border: none; border-top: 1px solid var(--line); margin: 16px 0; }
@media (max-width: 640px) { .mc-co__row { grid-template-columns: 1fr 1fr; } }

/* ---------- Login ---------- */
.mc-login { max-width: 460px; margin: 60px auto; padding: 0 24px; }
.mc-login__card { position: relative; overflow: hidden; padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-login__glow { position: absolute; top: -40px; right: -40px; width: 176px; height: 176px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 15%, transparent); filter: blur(60px); pointer-events: none; }
.mc-login__icon { position: relative; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent); font-size: 20px; }
.mc-login__title { position: relative; margin-top: 16px; font-size: 26px; font-weight: 900; color: var(--ink); }
.mc-login__desc { position: relative; margin-top: 6px; font-size: 14px; color: var(--muted); }
.login-platform-toggle { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 24px; padding: 4px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-2); }
.login-platform-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; border: none; border-radius: 9px; background: transparent; font-size: 14px; font-weight: 600; color: var(--ink-2); transition: background .2s, color .2s, box-shadow .2s; }
.login-platform-btn.mode-active { background: color-mix(in srgb, var(--accent) 16%, transparent); color: #fff; box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent); }
.login-form { position: relative; margin-top: 16px; }
.login-input { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink); font-size: 15px; }
.login-input::placeholder { color: var(--muted); }
.login-input:focus { outline: none; border-color: var(--accent); }
.login-submit-btn { width: 100%; margin-top: 12px; justify-content: center; }
.login-redirect { position: relative; margin-top: 20px; }

/* ---------- CMS-Seite ---------- */
.mc-cms { max-width: 900px; margin: 40px auto; padding: 0 24px; }
.mc-cms__card { padding: 40px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-cms__title { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--ink); margin-bottom: 20px; }
.mc-cms__body { color: var(--ink-2); line-height: 1.7; }
.mc-cms__body :is(h1,h2,h3) { color: var(--ink); margin: 24px 0 12px; }
.mc-cms__body a { color: var(--accent); }
.mc-cms__body ul { list-style: disc; padding-left: 22px; margin: 12px 0; }

/* ---------- Modal (Gift) ---------- */
.mc-modal { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.mc-modal.is-open { opacity: 1; pointer-events: auto; }
.mc-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); }
.mc-modal__card { position: relative; width: 100%; max-width: 420px; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); }
.mc-modal__title { font-size: 20px; font-weight: 800; color: var(--ink); }
.mc-modal__desc { margin-top: 6px; font-size: 14px; color: var(--muted); }
.mc-modal__close { position: absolute; top: 16px; right: 16px; z-index: 2; }
.mc-modal__input { width: 100%; margin-top: 20px; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.mc-modal__input:focus { outline: none; border-color: var(--accent); }

/* ---------- Seiten-Wrapper ---------- */
.mc-page-wrap { max-width: var(--maxw); margin: 0 auto; padding: 40px 24px; }

/* ---------- Server-Status-Modul ---------- */
.mc-statuscard { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-statuscard__head { display: flex; align-items: center; gap: 10px; }
.mc-statuscard__head i { color: var(--accent); }
.mc-statuscard__title { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.mc-statuscard__body { margin-top: 14px; display: flex; align-items: center; gap: 12px; }
.mc-statuscard__dot { width: 10px; height: 10px; border-radius: 999px; flex: 0 0 auto; }
.mc-statuscard__dot.is-online { background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .15); animation: livePulse 1.8s ease-in-out infinite; }
.mc-statuscard__dot.is-offline { background: #ef4444; }
.mc-statuscard__state { font-weight: 700; color: var(--ink); }
.mc-statuscard__players { color: var(--muted); font-size: 14px; }
.mc-statuscard__players strong { color: var(--ink); }
.mc-statuscard__bar { margin-top: 14px; height: 8px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.mc-statuscard__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .4s ease; }

/* ---------- Spendenziel / Community-Ziel ---------- */
.mc-goal { position: relative; overflow: hidden; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-goal__title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.mc-goal__title i { color: var(--accent); }
.mc-goal__amount { margin-top: 8px; font-size: 14px; color: var(--muted); }
.mc-goal__amount strong { color: var(--ink); }
.mc-goal__bar { position: relative; margin-top: 14px; height: 26px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.mc-goal__fill { position: absolute; top: 0; left: 0; bottom: 0; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .5s ease; }
.mc-goal__pct { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--ink); text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.mc-goal__repeat { margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.mc-goal__repeat i { color: var(--accent); }

/* ---------- Geschenkkarten-Guthaben ---------- */
.mc-giftcard { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-giftcard__title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.mc-giftcard__title i { color: var(--accent); }
.mc-giftcard__form { margin-top: 14px; display: flex; gap: 8px; }
.mc-giftcard__input { flex: 1; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink); font-size: 14px; }
.mc-giftcard__input::placeholder { color: var(--muted); }
.mc-giftcard__input:focus { outline: none; border-color: var(--accent); }

/* ---------- Letzte Käufe ---------- */
.mc-payments { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-payments__title { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.mc-payments__title i { color: var(--accent); }
.mc-payments__grid { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 16px; }
.mc-payments__item { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 64px; }
.mc-payments__avatar, .mc-payments__ph { width: 48px; height: 48px; border-radius: 12px; border: 1px solid var(--line); }
.mc-payments__avatar { object-fit: cover; background: var(--bg-2); }
.mc-payments__ph { display: flex; align-items: center; justify-content: center; background: var(--surface-2); color: var(--muted); }
.mc-payments__name { max-width: 64px; font-size: 12px; color: var(--muted); text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-payments__empty { margin-top: 12px; color: var(--muted); }

/* ---------- Formulare (Optionen / Quote) ---------- */
.mc-formcard { padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); }
.mc-formcard__head { margin-bottom: 24px; }
.mc-formcard__title { font-size: clamp(24px, 3vw, 32px); font-weight: 900; color: var(--ink); }
.mc-formcard__desc { margin-top: 6px; color: var(--muted); }
.mc-formgroup { margin-bottom: 20px; }
.mc-label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.mc-field { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-2); color: var(--ink); font-size: 15px; font-family: inherit; }
.mc-field::placeholder { color: var(--muted); }
.mc-field:focus { outline: none; border-color: var(--accent); }
select.mc-field { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b93a7' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 44px; }
.mc-input-group { display: flex; gap: 8px; align-items: stretch; }
.mc-input-group .mc-field { flex: 1; }
.mc-input-append { display: flex; align-items: center; padding: 0 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface-3); color: var(--muted); font-weight: 600; }
.mc-discord-inline { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border-radius: 12px; background: #5865f2; color: #fff; font-weight: 600; white-space: nowrap; }
.mc-discord-inline:hover { background: #6b76f5; }
.mc-formactions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; margin-top: 28px; }
.mc-formcard__body { color: var(--ink-2); line-height: 1.7; }
.mc-formcard__body :is(h1,h2,h3) { color: var(--ink); margin: 16px 0 8px; }
.mc-formcard__body a { color: var(--accent); }

/* ---------- Kategorie-Kacheln (Startseite) ---------- */
.mc-cattiles { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .mc-cattiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mc-cattiles { grid-template-columns: repeat(3, 1fr); } }
.mc-cattile { position: relative; display: block; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); transition: transform .2s, border-color .2s, box-shadow .2s; }
.mc-cattile:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 42%, transparent); box-shadow: 0 12px 44px -14px color-mix(in srgb, var(--accent) 55%, transparent); }
.mc-cattile__img { height: 160px; background-size: cover; background-position: center; background-color: var(--surface-2); transition: transform .5s; }
.mc-cattile:hover .mc-cattile__img { transform: scale(1.05); }
.mc-cattile__img--empty { display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 40px; }
.mc-cattile__shade { position: absolute; top: 0; left: 0; right: 0; height: 160px; background: linear-gradient(to top, var(--surface), transparent 70%); pointer-events: none; }
.mc-cattile__body { position: relative; padding: 20px; }
.mc-cattile__name { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--ink); }
.mc-cattile__link { margin-top: 6px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--accent); }
.mc-cattile:hover .mc-cattile__link { gap: 12px; }
