@import url("https://fonts.googleapis.com/css2?family=VT323&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap");

/* ── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #050508;
  color: #e2e8f0;
  overflow-x: hidden;
}

body::before {
  display: none;
}

/* ── Animated background mesh ─────────────────────────────── */
.site::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(247,147,26,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(168,85,247,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 60% 10%, rgba(247,147,26,0.04) 0%, transparent 50%);
  animation: meshMove 20s ease-in-out infinite alternate;
}

@keyframes meshMove {
  0%   { opacity: 1; transform: scale(1) translateY(0); }
  50%  { opacity: 0.8; transform: scale(1.05) translateY(-10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Pixel particles ─────────────────────────────────────── */
.pixel-particle {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  font-size: 1rem;
  opacity: 0.07;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.07; }
  90%  { opacity: 0.07; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ── Header / Navbar ─────────────────────────────────────── */
.site-header {
  background: rgba(5,5,8,0.85) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-cat-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.header-cat-link {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.18s;
  white-space: nowrap;
}

.header-cat-link:hover {
  color: #f7931a;
  background: rgba(247,147,26,0.06);
  border-color: rgba(247,147,26,0.15);
}

.btc-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7931a, #c97a14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 12px rgba(247,147,26,0.2);
  flex-shrink: 0;
}

.site-title {
  font-family: 'VT323', monospace !important;
  font-size: 22px !important;
  color: #f7931a !important;
  text-shadow: 0 0 10px rgba(247,147,26,0.4);
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 400 !important;
}

/* ── Vertical Nav Layout (Tebex: "Vertical Nav in Sidebar") ── */
body.is-navigation-vertical .store-sidebar {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 16px 12px !important;
  background: rgba(5,5,8,0.7) !important;
  border-right: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 0 !important;
  border-top: none !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.is-navigation-vertical .navigation-vertical .navigation-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
}

body.is-navigation-vertical .navigation-vertical .navigation-list li {
  display: block;
}

body.is-navigation-vertical .navigation-vertical .navigation-list > li > a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid transparent;
}

body.is-navigation-vertical .navigation-vertical .navigation-list > li > a:hover,
body.is-navigation-vertical .navigation-vertical .navigation-list > li > a.link-active,
body.is-navigation-vertical .navigation-vertical .navigation-list > li.active > a {
  color: #f7931a;
  background: rgba(247,147,26,0.06);
  border-color: rgba(247,147,26,0.12);
}

body.is-navigation-vertical .navigation-vertical .close-navigation {
  display: none;
}

body.is-navigation-vertical .widget {
  margin-top: 16px;
}

/* ── Navigation ──────────────────────────────────────────── */
.navigation-horizontal {
  flex: 1;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.navigation-horizontal > ul.navigation-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

.navigation-horizontal .navigation-list > li {
  display: block;
}

.navigation-horizontal .navigation-list > li > a {
  position: relative;
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  text-decoration: none;
  display: block;
}

.navigation-horizontal .navigation-list > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #f7931a;
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.navigation-horizontal .navigation-list > li > a:hover,
.navigation-horizontal .navigation-list > li > a.link-active,
.navigation-horizontal .navigation-list > li.active > a {
  color: #f7931a;
}

.navigation-horizontal .navigation-list > li > a:hover::after,
.navigation-horizontal .navigation-list > li > a.link-active::after,
.navigation-horizontal .navigation-list > li.active > a::after {
  transform: scaleX(1);
}

/* ── Header actions ──────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.site-header-inner > .actions {
  margin-left: 0;
  order: 99;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #f7931a, #c97a14) !important;
  color: #000 !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 20px;
  border-radius: 10px !important;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(247,147,26,0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #fbbf24, #f7931a) !important;
  box-shadow: 0 6px 24px rgba(247,147,26,0.45) !important;
  transform: translateY(-1px);
  color: #000 !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.05) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 20px;
  border-radius: 10px !important;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255,255,255,0.08) !important;
  color: #e2e8f0 !important;
  border-color: rgba(255,255,255,0.2) !important;
  box-shadow: none !important;
  transform: none;
}

.btn-tertiary {
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px !important;
  padding: 6px 12px;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.btn-tertiary:hover {
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
  border-color: rgba(255,255,255,0.15);
  box-shadow: none !important;
}

/* ── Glassmorphism cards ─────────────────────────────────── */
.store-products-list .store-product,
.store-products-images .store-product,
.store-product-full,
.category-description,
.store-text,
.no-products,
.store-category-tiered,
.store-product-tiered {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.store-products-list .store-product:hover,
.store-products-images .store-product:hover {
  border-color: rgba(247,147,26,0.3) !important;
  box-shadow: 0 0 30px rgba(247,147,26,0.1), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

/* ── Widgets / Sidebar ───────────────────────────────────── */
.widget {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (width <= 960px) {
  .widget.site-navigation {
    background: rgba(5,5,8,0.95) !important;
    border-radius: 0 !important;
  }
}

/* ── Override Tebex's 355px absolute-positioned desktop header ── */
@media (width > 960px) {
  .site-header-inner {
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    gap: 32px !important;
    padding: 0 24px !important;
    flex-wrap: nowrap !important;
    position: relative !important;
  }
  .site-header-inner .site-title {
    position: static !important;
    inset: unset !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-align: left !important;
    width: auto !important;
    height: auto !important;
  }
  .site-header-inner .actions {
    position: static !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    order: 10 !important;
  }
  .site-header-inner .log-in,
  .site-header-inner .user-actions {
    position: static !important;
    top: unset !important;
    right: unset !important;
  }
  .site-header-inner .info {
    position: static !important;
    width: auto !important;
    max-width: none !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
  }
  .header-actions {
    position: static !important;
    top: unset !important;
    right: unset !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }
}

.widget-title {
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Product title ───────────────────────────────────────── */
.product-title a {
  color: #e2e8f0;
  transition: color 0.2s;
}

.product-title a:hover {
  color: #f7931a;
}

/* ── Price / Amount ──────────────────────────────────────── */
.price strong,
.price .amount,
p.price {
  color: #f7931a;
  font-weight: 700;
}

/* ── Home categories ─────────────────────────────────────── */
.site-home-categories .category {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px !important;
  padding: 20px 24px;
  transition: all 0.25s;
  color: #e2e8f0;
}

.site-home-categories .category:hover {
  color: #f7931a !important;
  border-color: rgba(247,147,26,0.3);
  box-shadow: 0 0 30px rgba(247,147,26,0.1);
  transform: translateY(-2px);
}

/* ── Form inputs ─────────────────────────────────────────── */
input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea,
select {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  color: #e2e8f0 !important;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(247,147,26,0.5) !important;
  box-shadow: 0 0 0 3px rgba(247,147,26,0.1) !important;
}

::placeholder {
  color: #4b5563 !important;
  opacity: 1;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(247,147,26,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(247,147,26,0.5); }

/* ── Sale banner ─────────────────────────────────────────── */
.site-sale-banner {
  background: linear-gradient(135deg, rgba(247,147,26,0.12), rgba(168,85,247,0.08)) !important;
  color: #f7931a !important;
  border: 1px solid rgba(247,147,26,0.2);
  border-radius: 8px !important;
  text-align: center;
  padding: 8px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 24px 0;
}

/* ── Basket / Popup ──────────────────────────────────────── */
.popup-content {
  background: #0a0a10 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.basket-popup-content,
.basket-popup-content .popup-close {
  border-radius: 0 !important;
}

.popup-close {
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px !important;
  font-size: 0.75rem;
  padding: 4px 10px;
  transition: all 0.2s;
}

.popup-close:hover {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
}

/* ── Toasts ──────────────────────────────────────────────── */
.toast {
  background: rgba(10,10,16,0.95) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  color: #e2e8f0 !important;
  backdrop-filter: blur(12px);
}

.toast-success { border-color: rgba(34,197,94,0.35) !important; }
.toast-error   { border-color: rgba(239,68,68,0.35) !important; }
.toast-info    { border-color: rgba(247,147,26,0.35) !important; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  background: transparent !important;
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  color: #64748b;
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f7931a;
}

.we-accept {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.3;
  filter: grayscale(1);
}

.we-accept li {
  display: inline-flex;
}

.we-accept img {
  height: 18px;
  width: auto;
  display: block;
}

.copyright {
  color: #374151;
  font-size: 0.7rem;
  text-align: center;
}

/* ── Basket item ─────────────────────────────────────────── */
.basket-item {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 12px !important;
}

/* ── Quantity field ──────────────────────────────────────── */
.quantity-field {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
}

.store-product .quantity-field input[type=number] {
  border: none !important;
  background: transparent !important;
}

/* ── Countdown ───────────────────────────────────────────── */
.countdown {
  background: linear-gradient(135deg, rgba(247,147,26,0.12), rgba(168,85,247,0.08));
  border: 1px solid rgba(247,147,26,0.3);
  color: #f7931a;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ── Media sliders ───────────────────────────────────────── */
.media-slider .slider,
.media-slider .thumb {
  border-radius: 12px !important;
}

.media-slider .open-lightbox {
  border-radius: 8px !important;
}

.popup.popup-media-slider .thumb,
.popup.popup-media-slider .popup-close {
  border-radius: 8px !important;
}

/* ── Server info / Discord ───────────────────────────────── */
.info.server,
.info.discord {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info.server .image,
.info.discord .image {
  height: 18px;
  width: auto;
  filter: grayscale(1) brightness(0.7);
  border-radius: 4px !important;
}

.info.server .title,
.info.discord .title {
  font-weight: 600;
  color: #cbd5e1;
  font-size: 0.8rem;
}

.info.server .action,
.info.discord .action {
  color: #f7931a;
  font-size: 0.72rem;
  cursor: pointer;
}

/* ── Tiered products ─────────────────────────────────────── */
.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6 {
  text-align: center;
  color: #e2e8f0;
}

.store-product-tiered {
  border-radius: 12px !important;
}

/* ── Top donator avatar ──────────────────────────────────── */
.widget-top-donator .avatar {
  border-radius: 50%;
  border: 2px solid rgba(247,147,26,0.3);
}

/* ── Goal / Community progress ───────────────────────────── */
.widget-community-goal .progress,
.widget-goal .progress {
  background: rgba(255,255,255,0.06) !important;
  border-radius: 4px !important;
}

.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  background: linear-gradient(135deg, #f7931a, #fbbf24) !important;
  border-radius: 4px !important;
}

/* ── Gift card input ─────────────────────────────────────── */
.widget-gift-card .gift-card-input {
  border-radius: 10px !important;
}

/* ── z-index stacking above mesh ─────────────────────────── */
.site-header,
.site-content,
.site-footer,
.site-home-categories,
.site-sale-banner {
  position: relative;
  z-index: 1;
}

/* ── Page wrapper — neutralisiert .site grid-gap ────────── */
.page-sections-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

/* ══════════════════════════════════════════════════════════
   CONVERSION LAYOUT — Sektionen & Komponenten
   ══════════════════════════════════════════════════════════ */

/* ── Section Defaults ────────────────────────────────────── */
.hero,
.trust-bar,
.desire-section,
.offers-section,
.comparison-section,
.benefit-section,
.social-proof-section,
.objection-section,
.store-desc-section,
.close-cta-section {
  position: relative;
  z-index: 1;
  padding: 64px 24px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #f7931a, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 80px 24px 48px; }

.hero-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid #f7931a;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 56px 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 0 60px rgba(247,147,26,0.06), 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-left {
  flex: 1;
  min-width: 0;
  padding-left: 24px;
}

.hero-left .hero-sub {
  margin-left: 0;
  margin-right: 0;
}

.hero-left .hero-actions {
  justify-content: flex-start;
}

.hero-left .hero-trust {
  justify-content: flex-start;
}

/* ── Hero Orbit Ring ─────────────────────────────────────── */
.hero-orbit-wrap {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
}

.hero-orbit-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'VT323', monospace;
  font-size: 5.5rem;
  line-height: 1;
  background: linear-gradient(135deg, #f7931a 0%, #fbbf24 50%, #f7931a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(247,147,26,0.75)) drop-shadow(0 0 40px rgba(247,147,26,0.35));
  animation: heroOrbitFloat 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes heroOrbitFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}

.btc-orbit-item {
  position: absolute;
  width: 38px;
  height: 38px;
  margin-left: -19px;
  margin-top: -19px;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(247,147,26,0.5));
  animation: btcShapeGlow 3s ease-in-out infinite;
  z-index: 4;
}

.btc-orbit-item img {
  width: 38px;
  height: 38px;
  display: block;
  image-rendering: pixelated;
}

#btc-network-canvas {
  position: absolute;
  inset: 0;
  width: 220px;
  height: 220px;
  pointer-events: none;
  z-index: 2;
}

@keyframes btcShapeGlow {
  0%,100% { filter: drop-shadow(0 0 4px rgba(247,147,26,0.4)); }
  50%      { filter: drop-shadow(0 0 10px rgba(247,147,26,0.9)); }
}

.hero-eyebrow {
  font-family: 'VT323', monospace;
  font-size: 1.6rem;
  color: #f7931a;
  text-shadow: 0 0 10px rgba(247,147,26,0.4);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1.15;
  margin-bottom: 16px;
  -webkit-text-fill-color: #e2e8f0;
}

.hero-sub {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-btn-primary { padding: 12px 28px; font-size: 0.95rem; }

.hero-btn-secondary {
  padding: 12px 28px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: all 0.2s;
  text-decoration: none;
  font-weight: 500;
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
  border-color: rgba(255,255,255,0.2);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: #475569;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-sep { color: rgba(255,255,255,0.08); }

/* ── Trust Bar ───────────────────────────────────────────── */
.trust-bar { padding: 0 24px 64px; }

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.trust-item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.trust-item strong {
  display: block;
  color: #e2e8f0;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-item > div > span {
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.4;
}

/* ── Desire / Wunsch ─────────────────────────────────────── */
.desire-section { padding-bottom: 0; }
.desire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.desire-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.desire-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 4px;
}

.desire-card strong {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
}

.desire-card p {
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

/* ── Offers / Categories Showcase ────────────────────────── */
.offers-section { padding-top: 64px; }

.categories-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
  justify-content: center;
}

.category-showcase-card {
  width: 100%;
  max-width: 380px;
}

.category-showcase-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.category-showcase-card:hover {
  border-color: rgba(247,147,26,0.35);
  box-shadow: 0 0 30px rgba(247,147,26,0.1);
  transform: translateY(-3px);
}

.category-showcase-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.category-showcase-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247,147,26,0.05);
  font-size: 3.5rem;
  color: rgba(247,147,26,0.35);
}

.category-showcase-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.category-showcase-body strong {
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 700;
}

.category-showcase-body span {
  color: #f7931a;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ── Comparison Table ────────────────────────────────────── */
.comparison-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
  background: rgba(255,255,255,0.02);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.comparison-table thead th {
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  background: rgba(255,255,255,0.03);
}

.comparison-table thead th.comparison-feature-col,
.comparison-table td.comparison-feature-col {
  text-align: left;
  color: #64748b;
  font-size: 0.82rem;
  padding-left: 20px;
  width: 35%;
}

.comparison-table tbody td {
  padding: 12px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: rgba(255,255,255,0.01); }

.comparison-table tfoot td {
  padding: 16px 12px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.comparison-recommended {
  background: rgba(247,147,26,0.04) !important;
  border-left: 1px solid rgba(247,147,26,0.12) !important;
  border-right: 1px solid rgba(247,147,26,0.12) !important;
}

.comparison-badge {
  display: inline-block;
  background: rgba(247,147,26,0.12);
  color: #f7931a;
  border: 1px solid rgba(247,147,26,0.25);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  margin-left: 6px;
  text-transform: none;
  letter-spacing: 0;
  vertical-align: middle;
}

.comparison-price {
  color: #f7931a !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
}

.cmp-yes { color: #22c55e; font-weight: 700; font-size: 1rem; }
.cmp-no  { color: #2d3748; font-size: 0.9rem; }

.cmp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  width: 100%;
  box-sizing: border-box;
}

.comparison-note {
  color: #374151;
  font-size: 0.7rem;
  text-align: center;
  font-style: italic;
}

/* ── Benefit Grid ────────────────────────────────────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-icon { font-size: 1.5rem; display: block; }

.benefit-item strong {
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
}

.benefit-item p {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Social Proof ────────────────────────────────────────── */
.social-proof-section { padding-top: 0; }

.social-proof-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.social-proof-modules .widget {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.social-proof-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-proof-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}

.social-proof-pillar .sp-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.social-proof-pillar strong { color: #e2e8f0; font-size: 0.875rem; display: block; margin-bottom: 6px; }
.social-proof-pillar p { color: #64748b; font-size: 0.8rem; line-height: 1.55; margin: 0; }

/* ── Objection / FAQ ─────────────────────────────────────── */
.objection-section { padding-top: 30px; }
.objection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: rgba(247,147,26,0.25); }

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  cursor: pointer;
  color: #e2e8f0;
  font-size: 0.84rem;
  font-weight: 600;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}

.faq-summary::-webkit-details-marker { display: none; }
.faq-item[open] .faq-summary { color: #f7931a; }

.faq-chevron {
  color: #374151;
  font-size: 1.1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
  font-style: normal;
}

.faq-item[open] .faq-chevron {
  transform: rotate(90deg);
  color: #f7931a;
}

.faq-body {
  padding: 12px 18px 16px;
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── Store Description ───────────────────────────────────── */
.store-desc-section { padding-top: 0; }
.store-desc-section .store-text { max-width: 800px; margin: 0 auto; }

/* ── Close CTA ───────────────────────────────────────────── */
.close-cta-section { padding-bottom: 80px; }

.close-cta-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid rgba(247,147,26,0.5);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}

.close-cta-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 10px;
  line-height: 1.2;
}

.close-cta-sub {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.close-cta-btn { padding: 13px 32px; font-size: 0.95rem; }

.close-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: #374151;
  font-size: 0.72rem;
  flex-wrap: wrap;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #475569;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding: 0;
}

.breadcrumb a { color: #475569; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #f7931a; }
.breadcrumb-sep { color: #2d3748; }
.breadcrumb-active { color: #94a3b8; }

/* ── Category Header ─────────────────────────────────────── */
.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.category-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.2;
}

.product-count-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(247,147,26,0.08);
  border: 1px solid rgba(247,147,26,0.18);
  color: #f7931a;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
}

/* ── Product Layout — package.html ───────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.product-main { min-width: 0; }

.product-main .image,
.product-main .image-default {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
}

.product-main .descr { margin-top: 24px; }

/* ── Beschreibungs-Highlighting ──────────────────────────── */
.descr.text-content,
.text-content {
  color: #cbd5e1;
  line-height: 1.75;
}

.descr.text-content h1,
.descr.text-content h2,
.descr.text-content h3,
.descr.text-content h4,
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4 {
  color: #f7931a;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 20px;
}

.descr.text-content ul,
.text-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.descr.text-content ul li,
.text-content ul li {
  padding-left: 20px;
  position: relative;
  color: #e2e8f0;
  font-size: 0.88rem;
}

.descr.text-content ul li::before,
.text-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f7931a;
  font-weight: 700;
  font-size: 0.8rem;
}

.descr.text-content strong,
.text-content strong {
  color: #fbbf24;
  font-weight: 600;
}

.descr.text-content p,
.text-content p {
  color: #94a3b8;
  margin-bottom: 10px;
}

.sticky-buy-box {
  position: sticky;
  top: 84px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid rgba(247,147,26,0.4);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.buy-box-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.35;
}

.buy-box-price-wrap { display: flex; align-items: baseline; gap: 8px; }

.buy-box-price {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f7931a, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.buy-box-original {
  font-size: 0.9rem;
  color: #4b5563;
  text-decoration: line-through;
}

.buy-box-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.buy-box-trust { display: flex; flex-direction: column; gap: 7px; }

.buy-box-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #64748b;
}

/* ── Per-Unit Price on Card ──────────────────────────────── */
.card-per-unit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 5px 10px 5px 8px;
  background: rgba(247,147,26,0.1);
  border: 1px solid rgba(247,147,26,0.28);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f7931a;
  margin-top: 2px;
}

.card-per-unit::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background-color: #f7931a;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.36.86.58 1.41.58.55 0 1.05-.22 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Package Entry Card ──────────────────────────────────── */
.store-product { position: relative; }

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.63rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.badge-sale {
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
}

.badge-expiring {
  background: rgba(247,147,26,0.14);
  border: 1px solid rgba(247,147,26,0.3);
  color: #f7931a;
}

.card-price-large { display: none; }

.price-highlighted strong {
  font-size: 1.3rem !important;
  font-weight: 800 !important;
  color: #f7931a !important;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.card-trust-line {
  font-size: 0.68rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── Checkout Trust ──────────────────────────────────────── */
.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  color: #374151;
  margin-top: 10px;
  flex-wrap: wrap;
}

/* ── Live Dot ────────────────────────────────────────────── */
.live-dot-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  display: inline-block;
}

.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseRing 1.5s ease-out infinite;
}

.live-dot.offline { background: #ef4444; }
.live-dot.offline::before { background: #ef4444; animation: none; }

/* ── Server Status Widget ────────────────────────────────── */
.server-player-count {
  font-size: 1.6rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  margin: 6px 0 2px;
}

.server-player-label {
  font-size: 0.7rem;
  color: #475569;
  display: block;
  margin-bottom: 10px;
}

.server-ip-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
  display: inline-block;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 4px 10px;
}

.server-ip-copy:hover { color: #f7931a; border-color: rgba(247,147,26,0.2); }

/* ── Goal Widget ─────────────────────────────────────────── */
.goal-percent-large {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f7931a, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.goal-bar {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.goal-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f7931a, #fbbf24);
  border-radius: 4px;
}

.goal-amount {
  font-size: 0.72rem;
  color: #475569;
  display: block;
}

/* ── Top Donator Widget ──────────────────────────────────── */
.top-donator-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(247,147,26,0.4);
  display: block;
  margin: 0 auto 10px;
}

.top-donator-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
  text-align: center;
  display: block;
  margin-bottom: 4px;
}

.top-donator-amount {
  font-size: 0.82rem;
  color: #f7931a;
  text-align: center;
  display: block;
  font-weight: 600;
}

.top-donator-label {
  font-size: 0.7rem;
  color: #475569;
  text-align: center;
  display: block;
  margin-top: 2px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; }
  .sticky-buy-box { position: static; order: -1; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .desire-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .social-proof-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .objection-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-inner { padding: 32px 20px; }
  .hero-title { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .desire-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .close-cta-inner { padding: 32px 20px; }
  .hero, .trust-bar, .desire-section, .offers-section,
  .comparison-section, .benefit-section, .social-proof-section,
  .objection-section, .close-cta-section { padding: 40px 16px; }
  .social-proof-modules .widget { min-width: 100%; max-width: 100%; }
}