:root {
  /* Core Colors */
  --primary: #0fb9b1;
  --primary2: rgb(185, 15, 15);
  --primary-dark: #0a8f89;

  /* Backgrounds */
  --bg: radial-gradient(circle at top, #141824, #0b0d12);
  --panel: #181b21;

  /* Borders & Shadows */
  --border: rgba(0, 128, 128, 0.45);
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.35);

  /* Text */
  --text: #e6e6e6;
  --muted: #94a3b8;

  /* Status */
  --ok: #3aff9e;
  --warn: #ffd36a;
  --err: #ff7b7b;

  --radius: 16px;
}

* {
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;

  display: flex;
  flex-direction: column;

  padding-top: 72px;
}

/* --------------------------
   SMOOTH BACKGROUND
   -------------------------- */
.nebula {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 185, 177, 0.2), transparent 70%);
  filter: blur(180px);
  pointer-events: none;
  z-index: 0;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.nebula1 {
  top: -200px;
  left: -100px;
  width: 700px;
  height: 700px;
  animation: floatNebula1 80s infinite;
  opacity: 0.7;
}

.nebula2 {
  bottom: -250px;
  left: 50px;
  width: 600px;
  height: 600px;
  animation: floatNebula2 100s infinite;
  opacity: 0.6;
}

.nebula3 {
  top: 20%;
  left: 40%;
  width: 800px;
  height: 800px;
  animation: floatNebula3 120s infinite;
  opacity: 0.5;
}

.nebula4 {
  top: 50%;
  right: 20%;
  width: 650px;
  height: 650px;
  animation: floatNebula4 90s infinite;
  opacity: 0.55;
}

.nebula5 {
  bottom: 10%;
  right: 10%;
  width: 750px;
  height: 750px;
  animation: floatNebula5 110s infinite;
  opacity: 0.6;
}

/* --------------------------
   SMOOTH ANIMATIONS
   -------------------------- */
@keyframes floatNebula1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-50px, 30px) scale(1.05);
  }
  50% {
    transform: translate(-80px, 60px) scale(1.1);
  }
  75% {
    transform: translate(-30px, 20px) scale(1.08);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatNebula2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(40px, -30px) scale(1.03);
  }
  50% {
    transform: translate(60px, -50px) scale(1.06);
  }
  75% {
    transform: translate(20px, -20px) scale(1.04);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatNebula3 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-20px, 40px) scale(1.04);
  }
  50% {
    transform: translate(-40px, 80px) scale(1.07);
  }
  75% {
    transform: translate(-10px, 30px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatNebula4 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -50px) scale(1.03);
  }
  50% {
    transform: translate(50px, -70px) scale(1.06);
  }
  75% {
    transform: translate(20px, -30px) scale(1.04);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes floatNebula5 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-60px, 40px) scale(1.05);
  }
  50% {
    transform: translate(-80px, 60px) scale(1.08);
  }
  75% {
    transform: translate(-40px, 20px) scale(1.06);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* --------------------------
   LAYOUT CONTAINERS
   -------------------------- */
.topbar,
.hero,
.cards,
.page,
.status,
footer {
  position: relative;
  z-index: 1;
}

.hero,
.page,
.cards,
.status {
  flex-shrink: 1;
}

main {
  flex: 1;
}

/* --------------------------
   TOPBAR / NAVBAR STYLING
   -------------------------- */

.topbar {
  overflow: visible; /* WICHTIG */
  z-index: 20;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: rgba(11, 13, 18, 0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 185, 177, 0.3);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 10;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}

.topbar:hover {
  background: rgba(11, 13, 18, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  text-shadow: 0 0 8px rgba(15, 185, 177, 0.5);
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.logo:hover {
  color: #00fff6;
  text-shadow: 0 0 12px rgba(0, 255, 246, 0.7);
}

nav a {
  margin-left: 22px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
  left: 0;
}

nav a:hover {
  color: var(--primary);
  background: rgba(15, 185, 177, 0.08);
  box-shadow: 0 4px 12px rgba(15, 185, 177, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    padding: 16px 24px;
  }

  nav {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    margin-left: 0;
  }
}

.hero {
  padding: 80px 28px;
  max-width: 1100px;
  margin: auto;
  justify-content: center;
  text-align: center;
  display: auto;
  margin-top: 30px;
}

.hero h1 {
  font-size: 42px;
  text-align: center;
  justify-content: center;
}

.hero p {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 24px;
  justify-content: center;
  display: flex;
  text-align: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 12px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(15, 185, 177, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(15, 185, 177, 0.5);
}

.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 28px;
  text-align: center;
}

.card {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card h3 {
  margin-top: 0;
}

.status {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 30px;
}

.status-card {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
}

.status-card.ok {
  border-color: var(--ok);
  color: var(--ok);
}

footer {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  letter-spacing: 0.2px;
  margin-top: auto;
  background: rgba(11, 13, 18, 0.75);
  backdrop-filter: blur(10px);
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 6px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer:hover .footer-brand {
  text-shadow: 0 0 8px rgba(15, 185, 177, 0.25);
}

.footer-brand {
  color: var(--primary);
  font-weight: 600;
}

.footer-sep {
  margin: 0 6px;
  opacity: 0.4;
}

.footer-copy {
  color: #94a3b8;
}

.footer-year {
  color: rgba(255, 255, 255, 0.45);
  text-shadow: 0 0 8px rgba(15, 185, 177, 0.25);
}

.page {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 28px;
  text-align: center;
  justify-content: center;
}

.page h1 {
  text-align: center;
}

.page h2 {
  text-align: center;
}

.page h3 {
  text-align: center;
}
.page p {
  text-align: center;
}
.page2 {
  max-width: 1100px;
  justify-content: center;
  text-align: center;
  margin: 60px auto;
  padding: 0 28px;
}

.muted {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 30px;
}

/* Produkte */
.product-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.product-card,
.package-card {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.product-card::before,
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(15, 185, 177, 0.08),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover,
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 45px rgba(15, 185, 177, 0.35);
}

.product-card:hover::before,
.package-card:hover::before {
  opacity: 1;
}

.tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.tag.ok {
  color: var(--ok);
  border-color: var(--ok);
}
.tag.warn {
  color: #ffd36a;
  border-color: #ffd36a;
}

/* Pakete */
.package-card .price {
  font-size: 28px;
  margin: 10px 0;
  color: var(--primary);
}

.package-card li {
  text-align: left;
  margin: 4px 0;
  text-justify: auto;
}

.package-card.highlight {
  border-color: var(--primary);
  position: relative;
}

.package-card.vip {
  border-color: var(--warn);
  position: relative;
}

.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary);
  color: #000;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.badge.vip {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--warn);
  color: #000;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.info-card {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin-top: 20px;
}

.info-card2 {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  margin-top: 20px;
}

.info-card2 li {
  text-align: left;
  margin: 6px 0;
  text-justify: auto;
}

.info-card2 h3 {
  margin-top: 0;
  color: var(--primary);
}

.info-card2 h4 {
  margin-top: 0;
  color: var(--primary);
}

.contact-grid h4 {
  color: var(--primary);
}

.info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.notice {
  margin-top: 16px;
  padding: 10px;
  background: rgba(255, 123, 123, 0.1);
  border: 1px solid #ff7b7b;
  border-radius: 10px;
  color: #ffb3b3;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
  position: relative;
  isolation: isolate;
}

.testimonial-card {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 5;
}

.testimonial-header {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 10px;
}

.testimonial-header strong {
  text-align: center;
}

.testimonial-card img {
  height: 46px;
  width: 46px;
}

.testimonial-header img {
  height: 46px;
  width: 46px;
}

.badge {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.badge.partner {
  background: rgba(58, 255, 158, 0.15);
  color: #3aff9e;
}

.badge.client {
  background: rgba(255, 211, 106, 0.15);
  color: #ffd36a;
}

.badge.contract {
  background: rgba(122, 162, 247, 0.15);
  color: #7aa2f7;
}

.map-wrapper {
  position: relative;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--primary);
}

.map-wrapper img {
  width: 100%;
  display: block;
}

.map-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.map-point.ls {
  background: #3aff9e;
  top: 49.5%;
  left: 46.7%;
}

.map-point.sandy {
  background: #ffd36a;
  top: 45%;
  left: 50%;
}

.map-point.paleto {
  background: #ff7b7b;
  top: 20%;
  left: 55%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 255, 158, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(58, 255, 158, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(58, 255, 158, 0);
  }
}

.map-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 14px;
}

.map-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot.green {
  background: #3aff9e;
}
.dot.yellow {
  background: #ffd36a;
}
.dot.red {
  background: #ff7b7b;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.logo-card {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.logo-card img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%) brightness(0.9);
  transition:
    filter 0.25s ease,
    transform 0.25s ease;
}

.logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.logo-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.price-group {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.price-group h4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: #cbd5f5;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 2px 0;
}

.price-row.stammkunde {
  color: #ffd36a;
}

.price-row.partner {
  color: #3aff9e;
  font-weight: 600;
}

.price-legend {
  margin-top: 30px;
  justify-content: center;
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.price-legend .stammkunde {
  color: #ffd36a;
}

.price-legend .partner {
  color: #3aff9e;
}

.price-legend2 {
  margin-top: 30px;
  justify-content: center;
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.price-legend2 .stammkunde {
  color: #ffd36a;
}

.price-legend2 .partner {
  color: #3aff9e;
}

.bulk-hint {
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.45;
  background: rgba(15, 185, 177, 0.08);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  color: var(--text);
  text-align: left;
}

.bulk-hint strong {
  color: var(--primary);
}

.bulk-hint.warn strong {
  color: #ff7b7b;
}

.bulk-hint.warn {
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.45;
  background: rgba(185, 15, 15, 0.08);
  border-left: 3px solid var(--primary2);
  border-radius: 10px;
  color: var(--text);
  text-align: left;
}

.bulk-legend {
  margin-top: 16px;
  font-size: 13px;
  justify-content: center;
  text-align: center;
  color: #cbd5f5;
  opacity: 0.9;
}

.bulk-legend2 {
  margin-top: 16px;
  font-size: 13px;
  justify-content: center;
  text-align: center;
  color: #cbd5f5;
  opacity: 0.9;
}

.inline-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
  transition:
    color 0.2s ease,
    text-decoration 0.2s ease;
}

.inline-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.discord-cta {
  margin-top: 30px;
  text-align: center;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.discord-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(88, 101, 242, 0.55);
}

.small {
  font-size: 13px;
  margin-top: 10px;
}

.section-divider {
  position: relative;
  margin: 60px 0 40px;
  text-align: center;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(15, 185, 177, 0.6),
    transparent
  );
}

.section-divider span {
  position: relative;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--primary);
  background: #0b0d12;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 0 20px rgba(15, 185, 177, 0.25);
}

/* =============================
   RECHNER STYLES
   ============================= */

.calculator::before,
.calculator::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(15, 185, 177, 0.08),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.calculator-card:hover,
.calculator-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 45px rgba(15, 185, 177, 0.35);
}

.calculator-card:hover::before,
.calculator-card:hover::before {
  opacity: 1;
}

.calculator-card {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 900px;
  width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  color: #e5e7eb;
}

.calculator-card h2 {
  margin-bottom: 16px;
}

.calculator-card label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.calculator-card select,
.calculator-card input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  margin-top: 6px;
  background: #020617;
  color: #fff;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

/* Slider */
.switch {
  position: relative;
  width: 46px;
  height: 24px;
}

.switch input {
  opacity: 0;
}

.switch input:disabled + .slider {
  opacity: 0.35;
  cursor: not-allowed;
}

.slider {
  position: absolute;
  inset: 0;
  background: #334155;
  border-radius: 24px;
  cursor: pointer;
}

.slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  transition: 0.2s;
}

input:checked + .slider {
  background: rgba(15, 185, 177, 0.35);
}

input + .slider {
  background: #c52222;
}

input:checked + .slider::before {
  transform: translateX(22px);
}

.result {
  margin-top: 20px;
  background: #020617;
  padding: 16px;
  border-radius: 12px;
}

.calc-hint {
  margin-top: 14px;
  padding: 12px 14px;
  line-height: 1.45;
  border-radius: 10px;
  font-size: 12.5px;
  text-align: center;
}

.calc-hint.warn {
  background: rgba(185, 15, 15, 0.1);
  border: 1px solid #ff7b7b;
  color: #ffb3b3;
}

.calc-hint.warn strong {
  color: #ff7b7b;
}

.btn-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(88, 101, 242, 0.55);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(88, 101, 242, 0.55);
}

.remove-btn:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 16px 40px rgba(88, 101, 242, 0.55); */
}
.remove-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  /* background: linear-gradient(135deg, #5865f2, #4752c4); */
  /* box-shadow: 0 12px 30px rgba(88, 101, 242, 0.35); */
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cart-qty input {
  width: 20px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  margin-top: 6px;
  background: #020617;
  color: #fff;
}

.cart-box {
  margin-top: 30px;
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-list li {
  display: grid;
  grid-template-columns: 1fr 90px 120px 90px 40px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.cart-list input {
  width: 70px;
  padding: 4px;
  border-radius: 6px;
}

.cart-summary {
  margin-top: 14px;
  font-size: 18px;
  text-align: right;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}

.order-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.order-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.order-status {
  font-weight: bold;
}

.page-hint {
  opacity: 0.7;
  margin-bottom: 16px;
}

.faq-item {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 10px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 14px;
  opacity: 0.85;
}

#userInfo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 185, 177, 0.12);
  border: 1px solid rgba(15, 185, 177, 0.35);
  font-size: 14px;
}

/* =============================
   NAV DROPDOWN
   ============================= */

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown .caret {
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

/* Dropdown Box */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(15, 185, 177, 0.25);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 8px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 50;
}

/* Links im Dropdown */
.dropdown-menu a {
  display: block;
  margin: 0;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(15, 185, 177, 0.12);
  color: var(--primary);
  transform: none;
  box-shadow: none;
}

/* Hover öffnen */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown:hover .caret {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    margin-top: 6px;
    box-shadow: none;
    background: rgba(15, 185, 177, 0.06);
  }
}

.dropdown-menu {
  z-index: 999;
}
.nav-dropdown {
  pointer-events: auto;
}

.dropdown-menu {
  pointer-events: auto;
}

.music-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(11, 13, 18, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 185, 177, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.music-btn {
  border: none;
  background: rgba(15, 185, 177, 0.12);
  border: 1px solid rgba(15, 185, 177, 0.35);
  color: var(--primary);
  width: 38px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
}

.music-btn:hover {
  transform: translateY(-1px);
}

.music-slider-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
}

.music-slider-wrap input[type="range"] {
  width: 110px;
}

#musicVolLabel {
  font-size: 12px;
  opacity: 0.75;
  min-width: 36px;
  text-align: right;
}

.internal-actions {
  margin-bottom: 20px;
  text-align: left;
}

.internal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 12px;
}

.internal-card {
  background: linear-gradient(180deg, #0b1220, #0f172a);
  border: 1px solid rgba(15, 185, 177, 0.25);
  border-radius: 14px;
  padding: 16px;
}

.internal-card label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.85;
}

.internal-card input,
.internal-card textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #020617;
  color: #fff;
  margin-top: 6px;
}

.status-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 90px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.status-row input {
  margin-top: 0;
}

@media (max-width: 900px) {
  .internal-grid {
    grid-template-columns: 1fr;
  }
}
