@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --text: #fff3e2;
  --muted: #c1ae9a;
  --gold: #d69a3a;
  --gold-soft: rgba(214,154,58,.22);
  --orange: #b75f24;
  --dark: #050403;
  --glass: rgba(255,255,255,.075);
  --glass-strong: rgba(255,255,255,.12);
  --border: rgba(255,255,255,.13);
  --shadow: 0 30px 90px rgba(0,0,0,.62);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: Inter, sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(5,4,3,.96), rgba(5,4,3,.62), rgba(5,4,3,.95)),
    linear-gradient(180deg, rgba(5,4,3,.18), rgba(5,4,3,.98)),
    url("../assets/background.jpg") center/cover fixed no-repeat;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(214,154,58,.20), transparent 30%),
    radial-gradient(circle at 85% 35%, rgba(183,95,36,.16), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55));
}
a { text-decoration: none; color: inherit; }
#particles { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.noise {
  position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 7vw;
  background: rgba(5,4,3,.68);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
}
.brand { display: flex; align-items: center; gap: 14px; }
.logo { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 0 22px rgba(214,154,58,.38)); }
.brand-title { display: block; font-weight: 900; letter-spacing: .5px; }
.brand-sub { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.nav-links { display: flex; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 800; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 12px; align-items: center; }

.play-button, .primary-btn, .large-link {
  background: linear-gradient(135deg, #ffe3a3, var(--gold), var(--orange));
  color: #180c05;
  box-shadow: 0 18px 50px rgba(214,154,58,.25);
}
.nav-button, .secondary-btn, .ghost-btn {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(214,154,58,.32);
  color: var(--text);
}
.play-button, .nav-button, .primary-btn, .secondary-btn, .ghost-btn, .large-link {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 900; transition: .25s ease;
}
.play-button, .nav-button { padding: 12px 18px; }
.primary-btn, .secondary-btn, .ghost-btn, .large-link { padding: 15px 24px; }
.play-button:hover, .nav-button:hover, .primary-btn:hover, .secondary-btn:hover, .ghost-btn:hover, .large-link:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.intro {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at center, rgba(214,154,58,.18), transparent 28%),
    linear-gradient(135deg, #050403, #0e0905 55%, #050403);
  transition: 1s ease;
}
.intro.hidden { opacity: 0; pointer-events: none; filter: blur(12px); transform: scale(1.05); }
.intro > * { grid-column: 1; grid-row: 1; }
.intro-logo { width: 150px; transform: translateY(-110px); filter: drop-shadow(0 0 45px rgba(214,154,58,.42)); }
.intro h1 { font-size: clamp(42px, 7vw, 96px); letter-spacing: 8px; text-shadow: 0 0 45px rgba(214,154,58,.35); }
.intro p { color: var(--muted); transform: translateY(80px); font-weight: 700; letter-spacing: 2px; }
.intro button {
  transform: translateY(160px);
  border: 0; cursor: pointer;
  padding: 15px 28px; border-radius: 999px;
  background: linear-gradient(135deg, #ffe3a3, var(--gold), var(--orange));
  color: #180c05; font-weight: 900;
}

main, footer { position: relative; z-index: 5; }
.hero {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
  min-height: calc(100vh - 91px);
  padding: 95px 7vw 70px;
}
.hero-content h1, .page-hero h1 {
  max-width: 960px;
  font-size: clamp(46px, 7vw, 98px);
  line-height: .92;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin: 22px 0;
}
.hero-content h1 span {
  background: linear-gradient(135deg, #fff1d2, var(--gold), var(--orange));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-content p, .lead, .page-hero p, .feature-card p, .rule-block p, .timeline-item p, .split p {
  color: var(--muted);
  line-height: 1.8;
}
.hero-content p, .page-hero p { max-width: 760px; font-size: 18px; }
.badge, .mini-title, .page-hero span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  font-weight: 900;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.stats { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 44px; }
.stats div, .quickbar div {
  background: rgba(255,255,255,.065);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.stats div { min-width: 145px; border-radius: 22px; padding: 18px; }
.stats strong { display: block; font-size: 28px; }
.stats span { color: var(--muted); font-size: 13px; }

.command-panel {
  position: relative;
  padding: 34px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.04)), rgba(5,7,8,.75);
  border: 1px solid rgba(214,154,58,.25);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
  overflow: hidden;
}
.command-panel::before {
  content: "";
  position: absolute; inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(214,154,58,.14), transparent 30%);
  animation: rotateGlow 8s linear infinite;
}
.command-panel > * { position: relative; z-index: 1; }
.panel-header { display: flex; align-items: center; gap: 10px; color: var(--muted); margin-bottom: 30px; }
.pulse { width: 11px; height: 11px; border-radius: 50%; background: #58ff8d; box-shadow: 0 0 0 0 rgba(88,255,141,.65); animation: pulse 1.8s infinite; }
.command-panel h3 { font-size: 40px; }
.status-big { margin: 12px 0 24px; color: var(--gold); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.status-row { display: flex; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--border); color: var(--muted); }
.status-row strong { color: var(--text); }
.terminal-line { margin-top: 22px; color: #7dffae; font-family: monospace; opacity: .8; }

.quickbar {
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 0 7vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(5,4,3,.45);
  backdrop-filter: blur(16px);
}
.quickbar div { padding: 26px 22px; border-radius: 0; border-top: 0; border-bottom: 0; }
.quickbar strong { display: block; text-transform: uppercase; }
.quickbar span { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }

.section, .page-hero { padding: 75px 7vw; }
.page-hero { min-height: 380px; display: flex; flex-direction: column; justify-content: center; padding-top: 115px; }
.cinematic { text-align: center; }
.section h2 { font-size: clamp(32px, 4vw, 58px); letter-spacing: -2px; margin: 12px 0 18px; }
.lead { max-width: 920px; margin: 0 auto; font-size: 20px; }

.grid-section { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature-card, .team-card, .rule-block, .timeline-item {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: .3s ease;
  overflow: hidden;
}
.feature-card::after, .team-card::after, .timeline-item::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(214,154,58,.16), transparent 34%);
  opacity: 0; transition: .25s ease;
}
.feature-card:hover, .team-card:hover, .timeline-item:hover {
  transform: translateY(-8px) rotateX(2deg);
  background: var(--glass-strong);
  border-color: rgba(214,154,58,.32);
}
.feature-card:hover::after, .team-card:hover::after, .timeline-item:hover::after { opacity: 1; }
.feature-card h3, .timeline-item h3 { font-size: 24px; margin-bottom: 14px; }

.wiki-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 20px 7vw 80px;
}
.wiki-nav {
  position: sticky; top: 110px; align-self: start;
  display: grid; gap: 10px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.wiki-nav a { color: var(--muted); font-weight: 800; padding: 12px 14px; border-radius: 16px; }
.wiki-nav a:hover { background: rgba(214,154,58,.12); color: var(--text); }
.wiki-content { display: grid; gap: 18px; }
.rule-block h2 { color: #fff1d2; margin-bottom: 12px; }
.edit-note { border-color: rgba(214,154,58,.45); background: rgba(214,154,58,.09); }

.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.timeline-item strong { color: var(--gold); font-size: 34px; display: block; margin-bottom: 22px; }

.split {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  margin: 0 7vw 80px;
  padding: 48px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(214,154,58,.14), rgba(255,255,255,.06));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.split h2 { font-size: clamp(32px,4vw,56px); margin: 10px 0; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.avatar {
  width: 70px; height: 70px; border-radius: 22px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #ffe3a3, var(--gold), var(--orange));
  color: #180c05; font-weight: 900;
}
.team-card p { color: var(--muted); margin-top: 8px; }

footer {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 34px 7vw;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(5,4,3,.58);
  backdrop-filter: blur(16px);
}
footer strong { color: var(--text); }

@media (max-width: 1150px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .grid-section, .quickbar, .timeline { grid-template-columns: repeat(2,1fr); }
  .wiki-layout { grid-template-columns: 1fr; }
  .wiki-nav { position: relative; top: 0; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 5vw; }
  .brand-sub { display: none; }
  .logo { width: 46px; height: 46px; }
  .nav-actions { gap: 8px; }
  .play-button, .nav-button { padding: 10px 12px; font-size: 12px; }
  .hero, .section, .page-hero, .wiki-layout { padding-left: 5vw; padding-right: 5vw; }
  .hero-content h1, .page-hero h1 { letter-spacing: -2px; }
  .grid-section, .quickbar, .timeline, .team-grid { grid-template-columns: 1fr; }
  .split { margin-left: 5vw; margin-right: 5vw; flex-direction: column; align-items: flex-start; padding: 28px; }
  footer { flex-direction: column; }
}



/* WOODSTONERP V3 - LOGO BRANDED EXPERIENCE */
:root {
  --wood-orange: #ff6b00;
  --wood-orange-2: #ff8a22;
  --wood-gold: #ffbc5c;
  --wood-dark: #050404;
}

body {
  background:
    linear-gradient(90deg, rgba(5,4,3,.98), rgba(5,4,3,.58), rgba(5,4,3,.96)),
    linear-gradient(180deg, rgba(5,4,3,.12), rgba(5,4,3,.98)),
    url("../assets/background.jpg") center/cover fixed no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,107,0,.035) 35%, transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 120px);
  mix-blend-mode: screen;
}

.logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(255,107,0,.55));
  transition: .3s ease;
}

.brand:hover .logo {
  transform: scale(1.06) rotate(-1deg);
  filter: drop-shadow(0 0 38px rgba(255,107,0,.75));
}

.brand-title {
  text-transform: uppercase;
  color: #fff4e4;
  text-shadow: 0 0 18px rgba(255,107,0,.28);
}

.brand-sub {
  color: #ffa34a;
}

.nav {
  background: rgba(4,4,4,.62);
  box-shadow: 0 18px 70px rgba(0,0,0,.28);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--wood-orange), var(--wood-gold));
  transition: .25s ease;
  box-shadow: 0 0 16px rgba(255,107,0,.7);
}

.nav-links a:hover::after {
  width: 100%;
}

.play-button, .primary-btn, .large-link {
  background: linear-gradient(135deg, #ffe1a6, #ff8a22 45%, #ff5a00);
  box-shadow: 0 18px 55px rgba(255,107,0,.32), inset 0 1px 0 rgba(255,255,255,.35);
}

.nav-button, .secondary-btn, .ghost-btn {
  border-color: rgba(255,107,0,.38);
}

.experience-hero {
  position: relative;
}

.experience-hero::before {
  content: "";
  position: absolute;
  right: 5vw;
  top: 46%;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url("../assets/logo.png") center/contain no-repeat;
  opacity: .075;
  filter: drop-shadow(0 0 70px rgba(255,107,0,.75));
  pointer-events: none;
  animation: logoFloat 7s ease-in-out infinite;
}

.hero-content h1 {
  text-shadow: 0 10px 50px rgba(0,0,0,.62);
}

.hero-content h1 span {
  background: linear-gradient(135deg, #fff4df, #ffbc5c 32%, #ff6b00 78%);
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(255,107,0,.22));
}

.badge, .mini-title, .page-hero span {
  color: #ff9b35;
}

.command-panel {
  border-color: rgba(255,107,0,.38);
  box-shadow: 0 30px 100px rgba(0,0,0,.7), 0 0 70px rgba(255,107,0,.12);
}

.command-panel::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255,107,0,.12);
  pointer-events: none;
}

.status-big {
  color: #ff8a22;
  text-shadow: 0 0 22px rgba(255,107,0,.28);
}

.quickbar {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 80px rgba(0,0,0,.25);
}

.quickbar div {
  position: relative;
  overflow: hidden;
}

.quickbar div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 3px;
  height: 60%;
  background: linear-gradient(180deg, transparent, #ff6b00, transparent);
  box-shadow: 0 0 18px rgba(255,107,0,.8);
}

.feature-card, .team-card, .rule-block, .timeline-item {
  box-shadow: 0 20px 80px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
}

.feature-card:hover, .team-card:hover, .timeline-item:hover {
  border-color: rgba(255,107,0,.5);
  box-shadow: 0 28px 100px rgba(0,0,0,.34), 0 0 50px rgba(255,107,0,.12);
}

.feature-card::before, .team-card::before, .timeline-item::before, .rule-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,.10), transparent 42%);
  opacity: .7;
  pointer-events: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 7vw;
  bottom: -70px;
  width: 360px;
  height: 360px;
  background: url("../assets/logo.png") center/contain no-repeat;
  opacity: .065;
  filter: drop-shadow(0 0 50px rgba(255,107,0,.8));
}

.intro {
  background:
    radial-gradient(circle at 50% 45%, rgba(255,107,0,.30), transparent 25%),
    radial-gradient(circle at 50% 75%, rgba(255,160,54,.10), transparent 30%),
    linear-gradient(135deg, #030303, #120804 55%, #030303);
}

.intro-logo {
  width: 210px;
  transform: translateY(-130px);
  filter: drop-shadow(0 0 60px rgba(255,107,0,.65));
  animation: introLogoPulse 2.2s ease-in-out infinite;
}

.intro h1 {
  letter-spacing: 10px;
  color: #fff2dc;
  text-shadow: 0 0 60px rgba(255,107,0,.55);
}

.intro button {
  background: linear-gradient(135deg, #ffe1a6, #ff8a22, #ff5a00);
  box-shadow: 0 0 45px rgba(255,107,0,.35);
}

.story-strip {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.story-strip::before {
  content: "";
  position: absolute;
  inset: 12px 7vw;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,107,0,.12), rgba(255,255,255,.035)),
    rgba(0,0,0,.24);
  border: 1px solid rgba(255,107,0,.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 100px rgba(0,0,0,.32);
}

.story-strip > div:not(.story-line) {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.story-line {
  position: absolute;
  width: 72%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,.95), transparent);
  top: 50%;
  left: 14%;
  opacity: .35;
  box-shadow: 0 0 26px rgba(255,107,0,.7);
}

.story-line::before, .story-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff7a12;
  box-shadow: 0 0 24px rgba(255,107,0,.9);
  transform: translateY(-50%);
}

.story-line::before { left: 18%; }
.story-line::after { right: 18%; }

@keyframes logoFloat {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-53%) scale(1.025); }
}

@keyframes introLogoPulse {
  0%, 100% { filter: drop-shadow(0 0 45px rgba(255,107,0,.55)); transform: translateY(-130px) scale(1); }
  50% { filter: drop-shadow(0 0 80px rgba(255,107,0,.85)); transform: translateY(-134px) scale(1.035); }
}

@media (max-width: 720px) {
  .logo { width: 54px; height: 54px; }
  .experience-hero::before { opacity: .04; width: 90vw; right: -20vw; }
}



/* V4 STATUS HUB - clean premium server panel */
.status-hub {
  overflow: hidden;
}

.status-hub.command-panel::before {
  display: none;
}

.status-hub.command-panel::after {
  inset: 14px;
  border-color: rgba(255,107,0,.16);
}

.radar-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 26px;
}

.radar {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,107,0,.16) 0 12%, transparent 13%),
    radial-gradient(circle, transparent 0 36%, rgba(255,107,0,.12) 37% 38%, transparent 39%),
    radial-gradient(circle, transparent 0 63%, rgba(255,107,0,.18) 64% 65%, transparent 66%),
    rgba(0,0,0,.25);
  border: 1px solid rgba(255,107,0,.32);
  box-shadow:
    inset 0 0 28px rgba(255,107,0,.10),
    0 0 35px rgba(255,107,0,.14);
  overflow: hidden;
}

.radar::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255,138,34,.75), rgba(255,138,34,.16) 38deg, transparent 88deg);
  animation: radarSweep 2.8s linear infinite;
}

.radar::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #5cff92;
  box-shadow: 0 0 18px rgba(92,255,146,.85);
}

.radar span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(92,255,146,.28);
  animation: radarPulse 2.2s ease-out infinite;
}

.status-big.online {
  color: #5cff92;
  text-shadow: 0 0 24px rgba(92,255,146,.35);
}

.player-display {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 18px;
}

.player-display span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 6px;
}

.player-display strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: #fff4df;
}

.player-display b {
  font-weight: 900;
}

.player-bar {
  height: 9px;
  border-radius: 999px;
  margin-top: 16px;
  background: rgba(255,255,255,.09);
  overflow: hidden;
}

.player-bar div {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5cff92, #ffbc5c, #ff6b00);
  box-shadow: 0 0 18px rgba(255,107,0,.4);
  transition: width .8s ease;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.status-grid div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.08);
}

.status-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 5px;
}

.status-grid strong {
  color: var(--text);
  font-size: 14px;
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@keyframes radarPulse {
  0% { transform: scale(.62); opacity: .85; }
  100% { transform: scale(1.2); opacity: 0; }
}

@media (max-width: 720px) {
  .radar-card {
    grid-template-columns: 74px 1fr;
  }

  .radar {
    width: 74px;
    height: 74px;
  }

  .player-display strong {
    font-size: 34px;
  }
}



/* =========================================================
   V4 MINI FIX - nur Logo + Footer, kein Intro/Layout-Umbau
   ========================================================= */

/* Footer auf kurzen Seiten unten halten, ohne Hero/Content zu verschieben */
html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  margin-top: auto;
  flex-shrink: 0;
}

/* Hintergrundlogo auf Startseite nicht mehr abschneiden */
.experience-hero::before {
  left: 50% !important;
  right: auto !important;
  top: 50% !important;
  width: min(62vw, 900px) !important;
  height: min(62vw, 900px) !important;
  transform: translate(-50%, -50%) scale(1) !important;
  background-size: contain !important;
  background-position: center !important;
  opacity: 0.085 !important;
  animation: woodstoneSoftBreath 10s ease-in-out infinite !important;
}

/* Hintergrundlogo auf Unterseiten nicht mehr abschneiden */
.page-hero::after {
  left: 50% !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  width: min(48vw, 620px) !important;
  height: min(48vw, 620px) !important;
  transform: translate(-50%, -50%) scale(1) !important;
  background-size: contain !important;
  background-position: center !important;
  opacity: 0.06 !important;
  animation: woodstoneSoftBreath 10s ease-in-out infinite !important;
}

/* Sanftes Atmen, ohne die Position zu zerlegen */
@keyframes woodstoneSoftBreath {
  0% {
    transform: translate(-50%, -50%) scale(0.985);
    filter: drop-shadow(0 0 26px rgba(255,107,0,.22));
  }
  50% {
    transform: translate(-50%, -50%) scale(1.035);
    filter: drop-shadow(0 0 45px rgba(255,107,0,.36));
  }
  100% {
    transform: translate(-50%, -50%) scale(0.985);
    filter: drop-shadow(0 0 26px rgba(255,107,0,.22));
  }
}

@media (max-width: 720px) {
  .experience-hero::before {
    width: 92vw !important;
    height: 92vw !important;
    opacity: 0.055 !important;
  }

  .page-hero::after {
    width: 78vw !important;
    height: 78vw !important;
    opacity: 0.045 !important;
  }
}



/* =========================================================
   V4 MINI FIX PLUS - Footer, Team, Logo-Unterseiten-Fix
   ========================================================= */

/* Footer Links */
footer {
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  transition: .22s ease;
}

.footer-links a:hover {
  color: #ff9b35;
  text-shadow: 0 0 18px rgba(255,107,0,.35);
}

/* Teamseite skalierbar */
.team-member {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.team-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 24px rgba(255,107,0,.35));
}

.team-member h3 {
  margin-bottom: 6px;
}

.team-role {
  display: inline-flex;
  color: #ff9b35;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: 12px;
  margin-bottom: 14px;
}

.team-member p {
  color: var(--muted);
  line-height: 1.75;
}

/* Hintergrundlogo auf Unterseiten kleiner/zentrierter, damit nichts abgeschnitten ist */
.page-hero::after {
  width: min(38vw, 480px) !important;
  height: min(38vw, 480px) !important;
  opacity: 0.052 !important;
}

/* Startseite minimal sicherer, aber ohne Designbruch */
.experience-hero::before {
  width: min(58vw, 820px) !important;
  height: min(58vw, 820px) !important;
  opacity: 0.078 !important;
}

/* Team wächst sauber mit mehr Mitgliedern */
.team-grid {
  align-items: stretch;
}

@media (max-width: 720px) {
  footer {
    align-items: flex-start;
  }

  .footer-links {
    gap: 14px;
  }

  .page-hero::after {
    width: 64vw !important;
    height: 64vw !important;
    opacity: 0.04 !important;
  }

  .experience-hero::before {
    width: 82vw !important;
    height: 82vw !important;
    opacity: 0.052 !important;
  }
}



/* =========================================================
   CLEAN LEGAL PAGES + SUBTLE NOTICE
   ========================================================= */

.legal-layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 20px 7vw 80px;
}

.legal-side {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.legal-side a {
  color: var(--muted);
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 16px;
  transition: .22s ease;
}

.legal-side a:hover {
  background: rgba(255,107,0,.12);
  color: var(--text);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content h2 {
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}

.legal-card {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,.10), transparent 42%);
  pointer-events: none;
}

.legal-card h3 {
  position: relative;
  color: #fff1d2;
  margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
  position: relative;
  color: var(--muted);
  line-height: 1.75;
}

.legal-card.warning {
  border-color: rgba(255,107,0,.34);
}

/* Dezenter Hinweis unten, kein nerviges Popup */
.legal-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9000;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(5,4,3,.86);
  border: 1px solid rgba(255,107,0,.28);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 80px rgba(0,0,0,.45);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: .3s ease;
}

.legal-notice.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.legal-notice strong {
  display: block;
  color: #fff1d2;
  margin-bottom: 4px;
}

.legal-notice span {
  color: var(--muted);
  font-size: 14px;
}

.legal-notice nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-notice a {
  color: #ff9b35;
  font-weight: 800;
  font-size: 13px;
}

.legal-notice button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  cursor: pointer;
  font-weight: 900;
  background: linear-gradient(135deg, #ffe1a6, #ff8a22, #ff5a00);
  color: #180c05;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-side {
    position: relative;
    top: 0;
  }

  .legal-notice {
    flex-direction: column;
    align-items: flex-start;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}



/* =========================================================
   PREMIUM SERVER STATUS / SALTYCHAT / RESTART MODULE
   ========================================================= */

.premium-status-grid {
  grid-template-columns: 1fr 1fr;
}

.voice-module,
.restart-module {
  position: relative;
  overflow: hidden;
}

.voice-module::after,
.restart-module::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.22), transparent 68%);
  pointer-events: none;
}

.voice-module strong::before {
  content: "●";
  color: #5cff92;
  margin-right: 7px;
  text-shadow: 0 0 14px rgba(92,255,146,.7);
}

.restart-countdown {
  position: relative;
  padding: 18px;
  margin: 4px 0 16px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,107,0,.105), rgba(255,255,255,.045)),
    rgba(0,0,0,.22);
  border: 1px solid rgba(255,107,0,.22);
  overflow: hidden;
}

.restart-countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.055), transparent);
  transform: translateX(-100%);
  animation: restartSheen 5.5s ease-in-out infinite;
}

.restart-countdown span {
  position: relative;
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  margin-bottom: 6px;
}

.restart-countdown strong {
  position: relative;
  display: block;
  font-size: 30px;
  letter-spacing: 1.5px;
  color: #fff1d2;
  text-shadow: 0 0 24px rgba(255,107,0,.22);
}

.restart-timeline {
  position: relative;
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.restart-timeline div {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5cff92, #ffbc5c, #ff6b00);
  box-shadow: 0 0 18px rgba(255,107,0,.42);
  transition: width .7s ease;
}

.server-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.server-tags span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: #ffd9ad;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: rgba(255,107,0,.11);
  border: 1px solid rgba(255,107,0,.22);
}

@keyframes restartSheen {
  0%, 55% {
    transform: translateX(-120%);
  }

  82%, 100% {
    transform: translateX(120%);
  }
}

@media (max-width: 720px) {
  .premium-status-grid {
    grid-template-columns: 1fr;
  }

  .restart-countdown strong {
    font-size: 25px;
  }
}



/* =========================================================
   ULTRA PREMIUM SERVER STATUS
   ========================================================= */

.status-ultra {
  padding: 28px !important;
}

.status-ultra.command-panel::before {
  display: none;
}

.ultra-status-top {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.status-ring {
  position: relative;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 24px rgba(255,107,0,.22));
}

.status-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg,
.ring-progress {
  fill: none;
  stroke-width: 9;
}

.ring-bg {
  stroke: rgba(255,255,255,.08);
}

.ring-progress {
  stroke: url(#none);
  stroke: #ff7a12;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: calc(326.7 - (326.7 * var(--playersPercent)) / 100);
  filter: drop-shadow(0 0 10px rgba(255,107,0,.7));
  transition: stroke-dashoffset .8s ease;
}

.status-ring::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.16), rgba(0,0,0,.20) 60%, transparent);
  animation: ringPulse 2.8s ease-in-out infinite;
}

.ring-center {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1;
}

.ring-center strong {
  display: block;
  font-size: 38px;
  color: #fff1d2;
}

.ring-center span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.status-main .status-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.status-main h3 {
  margin: 4px 0 3px;
  font-size: 44px;
  color: #5cff92;
  text-shadow: 0 0 28px rgba(92,255,146,.35);
}

.status-main p {
  color: var(--muted);
  font-weight: 700;
}

.ultra-restart {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: center;
}

.ultra-restart span {
  grid-column: 1 / 2;
}

.ultra-restart strong {
  grid-column: 1 / 2;
}

.ultra-restart em {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  font-style: normal;
  font-size: 30px;
  font-weight: 900;
  color: #fff1d2;
  text-shadow: 0 0 24px rgba(255,107,0,.28);
}

.ultra-restart .restart-timeline {
  grid-column: 1 / 3;
}

.city-status {
  display: grid;
  gap: 9px;
  margin: 14px 0 16px;
}

.city-status div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.075);
}

.city-status strong {
  font-size: 13px;
  color: #fff1d2;
}

.led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.led.on {
  background: #5cff92;
  box-shadow: 0 0 14px rgba(92,255,146,.8);
}

.led.warn {
  background: #ffbc5c;
  box-shadow: 0 0 14px rgba(255,188,92,.75);
}

.mini-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.mini-panels div {
  padding: 13px;
  border-radius: 17px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
}

.mini-panels span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .8px;
  margin-bottom: 4px;
}

.mini-panels strong {
  color: #fff1d2;
  font-size: 13px;
}

.ultra-tags {
  margin-bottom: 14px;
}

.terminal-box {
  min-height: 96px;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.18)),
    rgba(0,0,0,.22);
  border: 1px solid rgba(92,255,146,.14);
  overflow: hidden;
}

.terminal-box p {
  margin: 0 0 7px;
  color: #7dffae;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  opacity: .9;
  text-shadow: 0 0 12px rgba(125,255,174,.25);
}

@keyframes ringPulse {
  0%, 100% {
    opacity: .55;
    transform: scale(.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 720px) {
  .ultra-status-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ultra-restart {
    grid-template-columns: 1fr;
  }

  .ultra-restart em,
  .ultra-restart .restart-timeline {
    grid-column: auto;
    grid-row: auto;
  }

  .mini-panels {
    grid-template-columns: 1fr;
  }
}



/* Console typing cursor */
.console-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  margin-left: 3px;
  transform: translateY(2px);
  background: #7dffae;
  box-shadow: 0 0 12px rgba(125,255,174,.75);
  animation: consoleBlink .8s steps(2, start) infinite;
}

@keyframes consoleBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}



/* =========================================================
   PREMIUM CONSOLE PLUS
   ========================================================= */

.terminal-box {
  position: relative;
}

.terminal-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 22%, transparent 78%, rgba(255,255,255,.025)),
    repeating-linear-gradient(180deg, rgba(125,255,174,.035) 0 1px, transparent 1px 5px);
  opacity: .35;
  border-radius: inherit;
}

.terminal-box::after {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 26%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(125,255,174,.07), transparent);
  transform: skewX(-18deg);
  animation: terminalSweep 5.5s ease-in-out infinite;
}

#terminalLines {
  position: relative;
  z-index: 1;
}

#terminalLines p {
  display: flex;
  align-items: center;
  min-height: 18px;
  animation: consoleLineIn .22s ease both;
}

.console-prefix {
  color: #ff9b35;
  margin-right: 4px;
  text-shadow: 0 0 12px rgba(255,107,0,.45);
}

.console-content {
  color: #7dffae;
}

.console-success .console-content {
  color: #baffcf;
  text-shadow: 0 0 14px rgba(92,255,146,.32);
}

.console-final .console-content {
  color: #fff1d2;
  font-weight: 900;
  letter-spacing: .4px;
  text-shadow:
    0 0 16px rgba(255,107,0,.35),
    0 0 28px rgba(255,188,92,.18);
}

.console-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  margin-left: 4px;
  transform: translateY(1px);
  background: #7dffae;
  box-shadow: 0 0 12px rgba(125,255,174,.85);
  animation: consoleBlink .78s steps(2, start) infinite;
}

.console-cursor.persistent {
  height: 15px;
  background: #ffbc5c;
  box-shadow:
    0 0 14px rgba(255,188,92,.85),
    0 0 26px rgba(255,107,0,.35);
}

.terminal-complete {
  animation: terminalCompletePulse .7s ease both;
}

.console-idle-line {
  margin-top: 2px !important;
}

@keyframes consoleLineIn {
  from {
    opacity: 0;
    transform: translateX(-6px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes consoleBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@keyframes terminalSweep {
  0%, 58% {
    left: -35%;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes terminalCompletePulse {
  0% {
    filter: drop-shadow(0 0 0 rgba(92,255,146,0));
  }
  45% {
    filter: drop-shadow(0 0 18px rgba(92,255,146,.28));
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(92,255,146,0));
  }
}



/* =========================================================
   WOODSTONERP ULTIMATE EXPERIENCE
   ========================================================= */

/* Dynamic mood classes controlled by JS */
body.mood-morning {
  --mood-glow: rgba(255, 160, 68, .16);
  --mood-tint: rgba(255, 132, 31, .06);
}

body.mood-day {
  --mood-glow: rgba(255, 188, 92, .12);
  --mood-tint: rgba(255, 180, 70, .035);
}

body.mood-evening {
  --mood-glow: rgba(255, 107, 0, .22);
  --mood-tint: rgba(255, 80, 0, .07);
}

body.mood-night {
  --mood-glow: rgba(255, 107, 0, .13);
  --mood-tint: rgba(20, 30, 50, .10);
}

body::after {
  background:
    radial-gradient(circle at 50% 35%, var(--mood-glow, rgba(255,107,0,.18)), transparent 34%),
    linear-gradient(115deg, transparent 0%, var(--mood-tint, rgba(255,107,0,.04)) 35%, transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.014) 0 1px, transparent 1px 120px) !important;
}

/* Subtle living logo atmosphere */
.woodstone-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.woodstone-atmosphere span {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 107, 0, .38), transparent 62%);
  filter: blur(12px);
  opacity: .18;
  animation: atmosphereDrift 18s ease-in-out infinite;
}

.woodstone-atmosphere span:nth-child(1) {
  width: 220px;
  height: 220px;
  left: 12%;
  top: 28%;
}

.woodstone-atmosphere span:nth-child(2) {
  width: 320px;
  height: 320px;
  right: 12%;
  top: 18%;
  animation-delay: -5s;
}

.woodstone-atmosphere span:nth-child(3) {
  width: 260px;
  height: 260px;
  left: 46%;
  bottom: 10%;
  animation-delay: -9s;
}

/* Upgrade intro into launcher feeling */
.ultimate-intro {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,107,0,.30), transparent 25%),
    radial-gradient(circle at 50% 78%, rgba(255,188,92,.10), transparent 32%),
    linear-gradient(135deg, #030303, #120804 55%, #030303) !important;
}

.intro-scene {
  position: relative;
  display: grid;
  place-items: center;
  width: min(92vw, 920px);
  min-height: 620px;
}

.intro-orbit {
  position: absolute;
  width: min(72vw, 560px);
  height: min(72vw, 560px);
  border-radius: 50%;
  border: 1px solid rgba(255,107,0,.20);
  box-shadow:
    inset 0 0 60px rgba(255,107,0,.07),
    0 0 80px rgba(255,107,0,.11);
  animation: introOrbitPulse 7s ease-in-out infinite;
}

.intro-orbit::before,
.intro-orbit::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(255,188,92,.13);
}

.intro-orbit::after {
  inset: 22%;
  border-color: rgba(255,107,0,.18);
  animation: introOrbitSpin 14s linear infinite;
  border-style: dashed;
}

.ultimate-intro .intro-logo {
  width: 210px !important;
  transform: translateY(-145px) !important;
  filter:
    drop-shadow(0 0 45px rgba(255,107,0,.55))
    drop-shadow(0 0 110px rgba(255,107,0,.18));
  animation: ultimateLogoBreath 4.6s ease-in-out infinite !important;
}

.ultimate-intro h1 {
  transform: translateY(-12px);
  letter-spacing: 11px !important;
}

.intro-subtitle {
  color: #ffbc5c !important;
  transform: translateY(64px) !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px !important;
}

.intro-console {
  position: absolute;
  bottom: 105px;
  width: min(88vw, 640px);
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.18)),
    rgba(5,4,3,.55);
  border: 1px solid rgba(125,255,174,.16);
  box-shadow: 0 24px 90px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}

.intro-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(125,255,174,.035) 0 1px, transparent 1px 5px);
  opacity: .45;
  pointer-events: none;
}

.intro-console p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Consolas, "Courier New", monospace;
  color: #7dffae;
  font-size: 13px;
  text-shadow: 0 0 12px rgba(125,255,174,.25);
}

.ultimate-intro button {
  position: absolute;
  bottom: 28px;
  transform: translateY(0) !important;
  opacity: 1;
  transition: .35s ease;
}

.ultimate-intro button.enter-hidden {
  opacity: 0;
  transform: translateY(14px) !important;
  pointer-events: none;
  filter: blur(8px);
}

.ultimate-intro button.enter-ready {
  opacity: 1;
  transform: translateY(0) !important;
  pointer-events: auto;
  filter: blur(0);
  animation: enterPulse 2.2s ease-in-out infinite;
}

/* More premium hero micro movement */
.command-panel,
.feature-card,
.team-card,
.legal-card,
.timeline-item {
  transform-style: preserve-3d;
}

.command-panel:hover {
  box-shadow:
    0 34px 110px rgba(0,0,0,.72),
    0 0 90px rgba(255,107,0,.16) !important;
}

/* Live feeling for status ring */
.status-ring::after {
  content: "LIVE";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(92,255,146,.12);
  border: 1px solid rgba(92,255,146,.28);
  color: #baffcf;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .8px;
  box-shadow: 0 0 18px rgba(92,255,146,.18);
}

@keyframes atmosphereDrift {
  0%, 100% {
    transform: translate3d(0,0,0) scale(.95);
    opacity: .12;
  }
  50% {
    transform: translate3d(18px,-22px,0) scale(1.12);
    opacity: .24;
  }
}

@keyframes introOrbitPulse {
  0%, 100% {
    transform: scale(.96);
    opacity: .55;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes introOrbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes ultimateLogoBreath {
  0%, 100% {
    transform: translateY(-145px) scale(.98) !important;
  }
  50% {
    transform: translateY(-150px) scale(1.04) !important;
  }
}

@keyframes enterPulse {
  0%, 100% {
    box-shadow: 0 0 35px rgba(255,107,0,.28);
  }
  50% {
    box-shadow: 0 0 60px rgba(255,107,0,.46);
  }
}

@media (max-width: 720px) {
  .intro-scene {
    min-height: 560px;
  }

  .ultimate-intro .intro-logo {
    width: 165px !important;
  }

  .ultimate-intro h1 {
    font-size: 34px !important;
    letter-spacing: 5px !important;
  }

  .intro-console {
    bottom: 96px;
  }
}



/* =========================================================
   CLEAN PREMIUM INTRO FIX
   ========================================================= */

/* Altes Ultimate-Intro entschärfen */
.clean-intro {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: grid !important;
  place-items: center !important;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,107,0,.30), transparent 28%),
    radial-gradient(circle at 50% 78%, rgba(255,188,92,.10), transparent 36%),
    linear-gradient(135deg, #030303, #120804 55%, #030303) !important;
  transition: opacity .8s ease, visibility .8s ease, filter .8s ease !important;
}

.clean-intro.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  filter: blur(12px) !important;
}

.clean-intro-scene {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 620px;
  width: min(92vw, 900px);
}

.clean-intro-scene::before {
  content: "";
  position: absolute;
  width: min(70vw, 560px);
  height: min(70vw, 560px);
  border-radius: 50%;
  border: 1px solid rgba(255,107,0,.20);
  box-shadow:
    inset 0 0 70px rgba(255,107,0,.08),
    0 0 90px rgba(255,107,0,.13);
  animation: cleanIntroRing 7s ease-in-out infinite;
}

.clean-intro-logo {
  width: 230px;
  height: 230px;
  object-fit: contain;
  grid-column: 1;
  grid-row: 1;
  filter:
    drop-shadow(0 0 46px rgba(255,107,0,.62))
    drop-shadow(0 0 115px rgba(255,107,0,.20));
  animation: logoFlyInOut 2.35s cubic-bezier(.18,.84,.25,1) both;
}

.clean-intro h1 {
  grid-column: 1;
  grid-row: 1;
  margin-top: 245px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff2dc;
  text-shadow: 0 0 60px rgba(255,107,0,.48);
  opacity: 0;
  animation: cleanTitleIn .8s ease forwards;
  animation-delay: 1.55s;
}

.clean-intro p {
  grid-column: 1;
  grid-row: 1;
  margin-top: 365px;
  color: #ffbc5c !important;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: 13px;
  opacity: 0;
  animation: cleanTitleIn .8s ease forwards;
  animation-delay: 1.85s;
}

.clean-intro button {
  grid-column: 1;
  grid-row: 1;
  margin-top: 485px;
  border: 0;
  cursor: pointer;
  padding: 15px 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe1a6, #ff8a22, #ff5a00);
  color: #180c05;
  font-weight: 900;
  box-shadow: 0 0 45px rgba(255,107,0,.36);
  opacity: 0;
  transform: translateY(16px);
  animation: cleanButtonIn .7s ease forwards, enterPulse 2.2s ease-in-out infinite;
  animation-delay: 2.2s, 3s;
}

@keyframes logoFlyInOut {
  0% {
    opacity: 0;
    transform: scale(.18) translateY(30px);
    filter: blur(12px) drop-shadow(0 0 0 rgba(255,107,0,0));
  }
  36% {
    opacity: 1;
    transform: scale(1.42) translateY(0);
    filter:
      blur(0)
      drop-shadow(0 0 70px rgba(255,107,0,.82))
      drop-shadow(0 0 150px rgba(255,107,0,.30));
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(-92px);
    filter:
      blur(0)
      drop-shadow(0 0 46px rgba(255,107,0,.62))
      drop-shadow(0 0 115px rgba(255,107,0,.20));
  }
}

@keyframes cleanTitleIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes cleanButtonIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cleanIntroRing {
  0%, 100% {
    transform: scale(.96);
    opacity: .55;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .clean-intro-scene {
    min-height: 560px;
  }

  .clean-intro-logo {
    width: 170px;
    height: 170px;
  }

  .clean-intro h1 {
    margin-top: 215px;
    font-size: 36px;
  }

  .clean-intro p {
    margin-top: 300px;
    font-size: 11px;
  }

  .clean-intro button {
    margin-top: 410px;
  }
}



/* =========================================================
   INTRO BREATH SYNC FIX
   ========================================================= */

/* Logo fliegt zuerst rein und atmet danach dauerhaft */
.clean-intro-logo {
  animation:
    logoFlyInOut 2.35s cubic-bezier(.18,.84,.25,1) both,
    introLogoBreathSync 4.6s ease-in-out 2.35s infinite !important;
}

/* Kreis atmet im gleichen Takt */
.clean-intro-scene::before {
  animation: introRingBreathSync 4.6s ease-in-out infinite !important;
}

@keyframes introLogoBreathSync {
  0%, 100% {
    transform: translateY(-92px) scale(0.985);
    filter:
      drop-shadow(0 0 42px rgba(255,107,0,.50))
      drop-shadow(0 0 100px rgba(255,107,0,.16));
  }

  50% {
    transform: translateY(-96px) scale(1.045);
    filter:
      drop-shadow(0 0 62px rgba(255,107,0,.76))
      drop-shadow(0 0 145px rgba(255,107,0,.28));
  }
}

@keyframes introRingBreathSync {
  0%, 100% {
    transform: scale(.965);
    opacity: .55;
    box-shadow:
      inset 0 0 60px rgba(255,107,0,.07),
      0 0 70px rgba(255,107,0,.10);
  }

  50% {
    transform: scale(1.045);
    opacity: 1;
    box-shadow:
      inset 0 0 85px rgba(255,107,0,.12),
      0 0 115px rgba(255,107,0,.20);
  }
}



/* =========================================================
   ULTRA PREMIUM INTRO VISUAL + BUTTON HOVER
   ========================================================= */

/* Der alte Kreis wird optisch zum passenden Woodstone-Glow/Aura, kein harter Kreis mehr */
.clean-intro-scene::before {
  width: min(76vw, 620px) !important;
  height: min(76vw, 620px) !important;
  border: 0 !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle, rgba(255,107,0,.24) 0%, rgba(255,107,0,.10) 28%, rgba(255,107,0,.035) 52%, transparent 72%);
  box-shadow:
    0 0 95px rgba(255,107,0,.18),
    inset 0 0 80px rgba(255,188,92,.08) !important;
  animation: introAuraBreathUltra 4.8s ease-in-out infinite !important;
}

.clean-intro-scene::after {
  content: "";
  position: absolute;
  width: min(66vw, 520px);
  height: min(66vw, 520px);
  border-radius: 50%;
  border: 1px solid rgba(255,188,92,.13);
  background:
    conic-gradient(from 180deg, transparent 0deg, rgba(255,107,0,.18) 38deg, transparent 78deg, transparent 360deg);
  filter: blur(.2px);
  opacity: .65;
  animation: introAuraSpin 12s linear infinite, introAuraBreathUltra 4.8s ease-in-out infinite !important;
  pointer-events: none;
}

/* Logo fliegt rein und atmet danach exakt im selben Rhythmus wie die Aura */
.clean-intro-logo {
  animation:
    logoFlyInOut 2.35s cubic-bezier(.18,.84,.25,1) both,
    introLogoBreathUltra 4.8s ease-in-out 2.35s infinite !important;
  z-index: 2;
}

.clean-intro h1,
.clean-intro p,
.clean-intro button {
  z-index: 3;
}

/* Button bekommt Premium Hover: Lichtzug, Lift, Glow */
.clean-intro button,
#enterSite {
  position: relative;
  overflow: hidden;
  transition:
    transform .25s ease,
    filter .25s ease,
    box-shadow .25s ease !important;
}

.clean-intro button::before,
#enterSite::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -45%;
  width: 36%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: rotate(24deg);
  opacity: 0;
  transition: .35s ease;
  pointer-events: none;
}

.clean-intro button:hover,
#enterSite:hover {
  transform: translateY(-4px) scale(1.035) !important;
  filter: brightness(1.12);
  box-shadow:
    0 0 42px rgba(255,107,0,.46),
    0 18px 65px rgba(255,107,0,.24),
    inset 0 1px 0 rgba(255,255,255,.38) !important;
}

.clean-intro button:hover::before,
#enterSite:hover::before {
  left: 115%;
  opacity: 1;
}

.clean-intro button:active,
#enterSite:active {
  transform: translateY(-1px) scale(.99) !important;
}

@keyframes introLogoBreathUltra {
  0%, 100% {
    transform: translateY(-92px) scale(0.985);
    filter:
      drop-shadow(0 0 42px rgba(255,107,0,.50))
      drop-shadow(0 0 95px rgba(255,107,0,.16));
  }

  50% {
    transform: translateY(-96px) scale(1.055);
    filter:
      drop-shadow(0 0 68px rgba(255,107,0,.78))
      drop-shadow(0 0 150px rgba(255,107,0,.30));
  }
}

@keyframes introAuraBreathUltra {
  0%, 100% {
    transform: scale(0.965);
    opacity: .55;
  }

  50% {
    transform: scale(1.055);
    opacity: 1;
  }
}

@keyframes introAuraSpin {
  to {
    transform: rotate(360deg);
  }
}



/* =========================================================
   STABLE ULTRA INTRO PATCH
   - no layout rebuild
   - synced aura/logo breathing
   - better button hover
   ========================================================= */

.clean-intro-scene::before {
  border: 0 !important;
  background:
    radial-gradient(circle, rgba(255,107,0,.24) 0%, rgba(255,107,0,.105) 30%, rgba(255,107,0,.035) 54%, transparent 74%) !important;
  box-shadow:
    0 0 95px rgba(255,107,0,.18),
    inset 0 0 85px rgba(255,188,92,.08) !important;
  animation: stableAuraBreath 4.8s ease-in-out infinite !important;
}

.clean-intro-scene::after {
  animation:
    stableAuraBreath 4.8s ease-in-out infinite,
    introAuraSpin 14s linear infinite !important;
}

.clean-intro-logo {
  animation:
    logoFlyInOut 2.35s cubic-bezier(.18,.84,.25,1) both,
    stableLogoBreath 4.8s ease-in-out 2.35s infinite !important;
}

.clean-intro button,
#enterSite {
  position: relative;
  overflow: hidden;
  transition:
    transform .22s ease,
    filter .22s ease,
    box-shadow .22s ease !important;
}

.clean-intro button::before,
#enterSite::before {
  content: "";
  position: absolute;
  top: -55%;
  left: -45%;
  width: 36%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
  transform: rotate(24deg);
  opacity: 0;
  transition: .38s ease;
  pointer-events: none;
}

.clean-intro button:hover,
#enterSite:hover {
  transform: translateY(-4px) scale(1.035) !important;
  filter: brightness(1.12);
  box-shadow:
    0 0 42px rgba(255,107,0,.48),
    0 18px 70px rgba(255,107,0,.26),
    inset 0 1px 0 rgba(255,255,255,.40) !important;
}

.clean-intro button:hover::before,
#enterSite:hover::before {
  left: 115%;
  opacity: 1;
}

.clean-intro button:active,
#enterSite:active {
  transform: translateY(-1px) scale(.99) !important;
}

@keyframes stableLogoBreath {
  0%, 100% {
    transform: translateY(-92px) scale(.985);
    filter:
      drop-shadow(0 0 42px rgba(255,107,0,.50))
      drop-shadow(0 0 95px rgba(255,107,0,.16));
  }

  50% {
    transform: translateY(-96px) scale(1.045);
    filter:
      drop-shadow(0 0 62px rgba(255,107,0,.75))
      drop-shadow(0 0 145px rgba(255,107,0,.28));
  }
}

@keyframes stableAuraBreath {
  0%, 100% {
    transform: scale(.965);
    opacity: .58;
  }

  50% {
    transform: scale(1.045);
    opacity: 1;
  }
}



/* =========================================================
   LOGO ONLY PREMIUM INTRO FIX
   ========================================================= */

/* Atmenden Hintergrund-Kreis / Aura entfernen */
.clean-intro-scene::before,
.clean-intro-scene::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

/* Logo größer und als einziges atmendes Element */
.clean-intro-logo {
  width: 270px !important;
  height: 270px !important;
  animation:
    logoFlyInOut 2.35s cubic-bezier(.18,.84,.25,1) both,
    logoOnlyPremiumBreath 5.8s ease-in-out 2.35s infinite !important;
  filter:
    drop-shadow(0 0 56px rgba(255,107,0,.62))
    drop-shadow(0 0 135px rgba(255,107,0,.22)) !important;
}

/* Ruhiger, edler Button Hover */
.clean-intro button:hover,
#enterSite:hover {
  transform: translateY(-1px) scale(1.01) !important;
  filter: brightness(1.08);
  box-shadow:
    0 0 38px rgba(255,107,0,.42),
    0 14px 55px rgba(255,107,0,.22),
    inset 0 1px 0 rgba(255,255,255,.36) !important;
}

/* Button nicht mehr hart springen lassen */
.clean-intro button,
#enterSite {
  transition:
    transform .22s ease,
    filter .22s ease,
    box-shadow .22s ease !important;
}

/* Nur Logo atmet sanft */
@keyframes logoOnlyPremiumBreath {
  0%, 100% {
    transform: translateY(-92px) scale(0.985);
    filter:
      drop-shadow(0 0 46px rgba(255,107,0,.52))
      drop-shadow(0 0 110px rgba(255,107,0,.18));
  }

  50% {
    transform: translateY(-96px) scale(1.04);
    filter:
      drop-shadow(0 0 68px rgba(255,107,0,.74))
      drop-shadow(0 0 155px rgba(255,107,0,.30));
  }
}

@media (max-width: 720px) {
  .clean-intro-logo {
    width: 205px !important;
    height: 205px !important;
  }
}



/* =========================================================
   TEBEX SHOP LINK
   ========================================================= */

.shop-btn {
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, .10);
  border: 1px solid rgba(255, 107, 0, .34);
  color: #ffd9ad;
  transition: .24s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.shop-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 107, 0, .16);
  color: #fff1d2;
  box-shadow:
    0 0 32px rgba(255,107,0,.22),
    inset 0 1px 0 rgba(255,255,255,.10);
}



/* Text rework polish */
.feature-card p,
.timeline-item p,
.team-member p {
  font-size: 14.5px;
}

.feature-card h3 {
  color: #fff1d2;
}

.hero-content p {
  max-width: 780px;
}



/* =========================================================
   CLEAN INTRO TEXT FIX
   ========================================================= */

.clean-intro {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,107,0,.28), transparent 26%),
    radial-gradient(circle at 50% 76%, rgba(255,188,92,.10), transparent 34%),
    linear-gradient(135deg, #030303, #120804 55%, #030303) !important;
  transition: opacity .8s ease, visibility .8s ease, filter .8s ease !important;
}

.clean-intro.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  filter: blur(12px) !important;
}

.clean-intro-scene {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: min(92vw, 900px) !important;
  min-height: 620px !important;
  gap: 0 !important;
}

/* Alte Aura/Kreis-Elemente im Intro aus */
.clean-intro-scene::before,
.clean-intro-scene::after {
  display: none !important;
  content: none !important;
}

/* Logo größer, ruhig und hochwertig */
.clean-intro-logo {
  width: 255px !important;
  height: 255px !important;
  object-fit: contain !important;
  margin-bottom: 34px !important;
  transform: none !important;
  filter:
    drop-shadow(0 0 56px rgba(255,107,0,.62))
    drop-shadow(0 0 135px rgba(255,107,0,.22)) !important;
  animation:
    cleanLogoEntrance 1.8s cubic-bezier(.18,.84,.25,1) both,
    cleanLogoBreath 5.8s ease-in-out 1.8s infinite !important;
}

/* Überschrift ohne Überlappung */
.clean-intro h1 {
  position: relative !important;
  grid-column: auto !important;
  grid-row: auto !important;
  margin: 0 !important;
  max-width: 900px !important;
  font-size: clamp(42px, 5.6vw, 82px) !important;
  line-height: 1.02 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #fff2dc !important;
  text-shadow:
    0 0 46px rgba(255,107,0,.45),
    0 0 100px rgba(255,107,0,.16) !important;
  opacity: 0;
  animation: cleanIntroTextIn .75s ease forwards !important;
  animation-delay: 1.15s !important;
}

/* Untertitel kurz und edel */
.clean-intro p {
  position: relative !important;
  grid-column: auto !important;
  grid-row: auto !important;
  margin: 18px 0 0 !important;
  color: #ffbc5c !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 2.4px !important;
  text-transform: uppercase !important;
  opacity: 0;
  transform: none !important;
  animation: cleanIntroTextIn .75s ease forwards !important;
  animation-delay: 1.35s !important;
}

/* Button sauber unter Text */
.clean-intro button,
#enterSite {
  position: relative !important;
  grid-column: auto !important;
  grid-row: auto !important;
  margin-top: 34px !important;
  transform: none !important;
  border: 0 !important;
  cursor: pointer !important;
  padding: 15px 30px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #ffe1a6, #ff8a22, #ff5a00) !important;
  color: #180c05 !important;
  font-weight: 900 !important;
  box-shadow:
    0 0 40px rgba(255,107,0,.34),
    0 14px 55px rgba(255,107,0,.18),
    inset 0 1px 0 rgba(255,255,255,.36) !important;
  opacity: 0;
  overflow: hidden !important;
  animation: cleanIntroButtonIn .65s ease forwards !important;
  animation-delay: 1.65s !important;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease !important;
}

.clean-intro button::before,
#enterSite::before {
  content: "";
  position: absolute;
  top: -55%;
  left: -45%;
  width: 36%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.44), transparent);
  transform: rotate(24deg);
  opacity: 0;
  transition: .38s ease;
  pointer-events: none;
}

.clean-intro button:hover,
#enterSite:hover {
  transform: translateY(-1px) scale(1.01) !important;
  filter: brightness(1.08);
  box-shadow:
    0 0 42px rgba(255,107,0,.42),
    0 14px 55px rgba(255,107,0,.22),
    inset 0 1px 0 rgba(255,255,255,.36) !important;
}

.clean-intro button:hover::before,
#enterSite:hover::before {
  left: 115%;
  opacity: 1;
}

@keyframes cleanLogoEntrance {
  0% {
    opacity: 0;
    transform: scale(.25) translateY(35px);
    filter: blur(14px) drop-shadow(0 0 0 rgba(255,107,0,0));
  }
  42% {
    opacity: 1;
    transform: scale(1.22) translateY(0);
    filter:
      blur(0)
      drop-shadow(0 0 78px rgba(255,107,0,.80))
      drop-shadow(0 0 155px rgba(255,107,0,.30));
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes cleanLogoBreath {
  0%, 100% {
    transform: scale(.985);
    filter:
      drop-shadow(0 0 46px rgba(255,107,0,.52))
      drop-shadow(0 0 110px rgba(255,107,0,.18));
  }
  50% {
    transform: scale(1.04);
    filter:
      drop-shadow(0 0 68px rgba(255,107,0,.74))
      drop-shadow(0 0 155px rgba(255,107,0,.30));
  }
}

@keyframes cleanIntroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes cleanIntroButtonIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.98);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 720px) {
  .clean-intro-scene {
    min-height: 560px !important;
  }

  .clean-intro-logo {
    width: 190px !important;
    height: 190px !important;
    margin-bottom: 28px !important;
  }

  .clean-intro h1 {
    font-size: 36px !important;
    line-height: 1.08 !important;
  }

  .clean-intro p {
    font-size: 11px !important;
    letter-spacing: 1.7px !important;
  }
}



/* =========================================================
   INTRO BREATH + PREMIUM HERO BUTTON COLORS
   ========================================================= */

/* Intro fühlt sich wieder lebendig an: Logo, Text und Button atmen gemeinsam */
.clean-intro-scene {
  animation: introSceneBreath 6.2s ease-in-out infinite !important;
  transform-origin: center center;
}

.clean-intro-logo {
  animation:
    cleanLogoEntrance 1.8s cubic-bezier(.18,.84,.25,1) both,
    introElementBreath 6.2s ease-in-out 1.8s infinite !important;
}

.clean-intro h1,
.clean-intro p,
.clean-intro button {
  animation-name: cleanIntroTextIn, introTextGlowBreath !important;
  animation-duration: .75s, 6.2s !important;
  animation-timing-function: ease, ease-in-out !important;
  animation-fill-mode: forwards, none !important;
  animation-iteration-count: 1, infinite !important;
}

.clean-intro h1 {
  animation-delay: 1.15s, 1.8s !important;
}

.clean-intro p {
  animation-delay: 1.35s, 1.8s !important;
}

.clean-intro button {
  animation-name: cleanIntroButtonIn, introButtonBreath !important;
  animation-delay: 1.65s, 1.8s !important;
}

/* Dezenter Gesamtatem, nicht zu wild */
@keyframes introSceneBreath {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(255,107,0,0));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(255,107,0,.18));
  }
}

@keyframes introElementBreath {
  0%, 100% {
    transform: scale(.985);
    filter:
      drop-shadow(0 0 46px rgba(255,107,0,.52))
      drop-shadow(0 0 110px rgba(255,107,0,.18));
  }
  50% {
    transform: scale(1.035);
    filter:
      drop-shadow(0 0 70px rgba(255,107,0,.76))
      drop-shadow(0 0 155px rgba(255,107,0,.30));
  }
}

@keyframes introTextGlowBreath {
  0%, 100% {
    text-shadow:
      0 0 36px rgba(255,107,0,.34),
      0 0 80px rgba(255,107,0,.12);
  }
  50% {
    text-shadow:
      0 0 54px rgba(255,107,0,.52),
      0 0 120px rgba(255,107,0,.20);
  }
}

@keyframes introButtonBreath {
  0%, 100% {
    box-shadow:
      0 0 36px rgba(255,107,0,.30),
      0 14px 55px rgba(255,107,0,.18),
      inset 0 1px 0 rgba(255,255,255,.36);
  }
  50% {
    box-shadow:
      0 0 55px rgba(255,107,0,.48),
      0 18px 70px rgba(255,107,0,.26),
      inset 0 1px 0 rgba(255,255,255,.42);
  }
}

/* Startseiten-Buttons farblich klarer */
.hero-actions .primary-btn {
  background: linear-gradient(135deg, #ffe1a6, #ff8a22 42%, #ff5a00) !important;
  color: #180c05 !important;
  box-shadow:
    0 0 36px rgba(255,107,0,.28),
    0 16px 55px rgba(255,107,0,.18),
    inset 0 1px 0 rgba(255,255,255,.35) !important;
}

/* IC Einreise: Premium Gold/Amber, aber nicht wie der Hauptbutton */
.hero-actions .einreise-btn {
  background:
    linear-gradient(135deg, rgba(255,188,92,.20), rgba(255,107,0,.08)) !important;
  border: 1px solid rgba(255,188,92,.52) !important;
  color: #ffe6bd !important;
  box-shadow:
    0 0 22px rgba(255,188,92,.12),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

/* Discord: echtes Discord-Blau */
.hero-actions .discord-btn {
  background:
    linear-gradient(135deg, rgba(88,101,242,.92), rgba(64,78,220,.78)) !important;
  border: 1px solid rgba(180,187,255,.38) !important;
  color: #ffffff !important;
  box-shadow:
    0 0 30px rgba(88,101,242,.28),
    0 14px 42px rgba(88,101,242,.16),
    inset 0 1px 0 rgba(255,255,255,.16) !important;
}

/* Community unterstützen: edel/dezent, nicht aggressiv Shop-mäßig */
.hero-actions .support-btn {
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,107,0,.065)) !important;
  border: 1px solid rgba(255,107,0,.34) !important;
  color: #ffd9ad !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    0 0 20px rgba(255,107,0,.10) !important;
}

/* Einheitlicher, ruhiger Hover für alle Startseitenbuttons */
.hero-actions a:hover {
  transform: translateY(-2px) scale(1.012) !important;
  filter: brightness(1.08);
}

.hero-actions .discord-btn:hover {
  box-shadow:
    0 0 38px rgba(88,101,242,.42),
    0 18px 55px rgba(88,101,242,.22),
    inset 0 1px 0 rgba(255,255,255,.20) !important;
}

.hero-actions .einreise-btn:hover {
  box-shadow:
    0 0 34px rgba(255,188,92,.25),
    0 16px 50px rgba(255,107,0,.13),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
}

.hero-actions .support-btn:hover {
  color: #fff1d2 !important;
  box-shadow:
    0 0 30px rgba(255,107,0,.20),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
}



/* =========================================================
   VISIBLE INTRO BREATH + BUTTON COLOR FIX
   ========================================================= */

/* Direkt auf der Intro-Szene: sichtbar, aber nicht wild */
.clean-intro-scene {
  animation: woodstoneVisibleIntroBreath 4.8s ease-in-out infinite !important;
  transform-origin: center center !important;
  will-change: transform, filter !important;
}

/* Logo atmet sichtbar mit, alte widersprüchliche Animationen überstimmen */
.clean-intro-logo {
  animation:
    cleanLogoEntrance 1.8s cubic-bezier(.18,.84,.25,1) both,
    woodstoneVisibleLogoBreath 4.8s ease-in-out 1.8s infinite !important;
  will-change: transform, filter !important;
}

/* Text/Untertitel leichter Glow-Atem */
.clean-intro h1 {
  animation:
    cleanIntroTextIn .75s ease 1.15s forwards,
    woodstoneTextBreath 4.8s ease-in-out 1.8s infinite !important;
}

.clean-intro p {
  animation:
    cleanIntroTextIn .75s ease 1.35s forwards,
    woodstoneTextBreath 4.8s ease-in-out 1.8s infinite !important;
}

/* Button nur Glow-Atem, nicht herumhüpfen */
.clean-intro button,
#enterSite {
  animation:
    cleanIntroButtonIn .65s ease 1.65s forwards,
    woodstoneButtonGlowBreath 4.8s ease-in-out 1.8s infinite !important;
}

/* Atmen der ganzen Intro-Gruppe */
@keyframes woodstoneVisibleIntroBreath {
  0%, 100% {
    transform: scale(0.988);
    filter: drop-shadow(0 0 0 rgba(255,107,0,0));
  }
  50% {
    transform: scale(1.018);
    filter: drop-shadow(0 0 22px rgba(255,107,0,.20));
  }
}

/* Logo atmet stärker sichtbar */
@keyframes woodstoneVisibleLogoBreath {
  0%, 100% {
    transform: scale(0.975);
    filter:
      drop-shadow(0 0 42px rgba(255,107,0,.48))
      drop-shadow(0 0 105px rgba(255,107,0,.16));
  }
  50% {
    transform: scale(1.07);
    filter:
      drop-shadow(0 0 78px rgba(255,107,0,.82))
      drop-shadow(0 0 170px rgba(255,107,0,.34));
  }
}

@keyframes woodstoneTextBreath {
  0%, 100% {
    text-shadow:
      0 0 34px rgba(255,107,0,.28),
      0 0 80px rgba(255,107,0,.10);
  }
  50% {
    text-shadow:
      0 0 58px rgba(255,107,0,.55),
      0 0 130px rgba(255,107,0,.22);
  }
}

@keyframes woodstoneButtonGlowBreath {
  0%, 100% {
    box-shadow:
      0 0 34px rgba(255,107,0,.30),
      0 14px 55px rgba(255,107,0,.18),
      inset 0 1px 0 rgba(255,255,255,.36);
  }
  50% {
    box-shadow:
      0 0 58px rgba(255,107,0,.52),
      0 18px 75px rgba(255,107,0,.27),
      inset 0 1px 0 rgba(255,255,255,.42);
  }
}

/* Startseite: IC Einreise + Server Unterstützen wieder neutraler/premium orange */
.hero-actions .einreise-btn,
.hero-actions .support-btn {
  background:
    linear-gradient(135deg, rgba(255,107,0,.13), rgba(255,255,255,.045)) !important;
  border: 1px solid rgba(255,107,0,.42) !important;
  color: #fff1d2 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 24px rgba(255,107,0,.12) !important;
}

.hero-actions .einreise-btn:hover,
.hero-actions .support-btn:hover {
  background:
    linear-gradient(135deg, rgba(255,107,0,.22), rgba(255,188,92,.08)) !important;
  color: #ffffff !important;
  box-shadow:
    0 0 34px rgba(255,107,0,.24),
    0 16px 50px rgba(255,107,0,.14),
    inset 0 1px 0 rgba(255,255,255,.12) !important;
}

/* Discord Blau für alle Discord Buttons, auch oben rechts */
.discord-btn,
.nav-button[href*="discord"],
a[href*="discord.gg"].nav-button,
a[href*="discord.gg"].ghost-btn {
  background:
    linear-gradient(135deg, #5865F2, #404EED) !important;
  border: 1px solid rgba(180,187,255,.42) !important;
  color: #ffffff !important;
  box-shadow:
    0 0 30px rgba(88,101,242,.30),
    0 14px 42px rgba(88,101,242,.16),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.discord-btn:hover,
.nav-button[href*="discord"]:hover,
a[href*="discord.gg"].nav-button:hover,
a[href*="discord.gg"].ghost-btn:hover {
  filter: brightness(1.09);
  box-shadow:
    0 0 42px rgba(88,101,242,.44),
    0 18px 55px rgba(88,101,242,.24),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}



/* =========================================================
   STARTPAGE STORY SECTION PREMIUM FIX
   ========================================================= */

/* Alte Story-Linie deaktivieren, falls noch vorhanden */
.story-strip,
.story-line {
  display: none !important;
}

/* Neuer hochwertiger Story-Bereich */
.story-premium {
  position: relative;
  padding-top: 50px !important;
  padding-bottom: 48px !important;
}

.story-premium-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 42px 38px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,107,0,.18), transparent 44%),
    linear-gradient(135deg, rgba(255,107,0,.105), rgba(255,255,255,.045)),
    rgba(0,0,0,.20);
  border: 1px solid rgba(255,107,0,.22);
  backdrop-filter: blur(18px);
  box-shadow:
    0 26px 100px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}

.story-premium-inner::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,.75), transparent);
  box-shadow: 0 0 22px rgba(255,107,0,.35);
  opacity: .7;
}

.story-premium-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.045) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: storyPremiumSheen 8s ease-in-out infinite;
  pointer-events: none;
}

.story-premium .mini-title,
.story-premium h2,
.story-premium .lead,
.story-pillars {
  position: relative;
  z-index: 1;
}

.story-premium h2 {
  max-width: 850px;
  margin: 18px auto 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.story-premium .lead {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.8;
}

.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.story-pillars div {
  padding: 18px;
  border-radius: 22px;
  text-align: left;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  transition: .24s ease;
}

.story-pillars div:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,0,.34);
  background: rgba(255,107,0,.075);
  box-shadow: 0 16px 50px rgba(255,107,0,.10);
}

.story-pillars strong {
  display: block;
  margin-bottom: 7px;
  color: #fff1d2;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.story-pillars span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13.5px;
}

/* Die vier Karten darunter etwas hochwertiger machen */
.grid-section .feature-card {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(255,107,0,.06), rgba(255,255,255,.045)),
    rgba(255,255,255,.055);
}

.grid-section .feature-card h3 {
  color: #fff1d2;
  margin-bottom: 10px;
}

.grid-section .feature-card p {
  color: rgba(255,243,226,.68);
}

@keyframes storyPremiumSheen {
  0%, 58% {
    transform: translateX(-120%);
    opacity: 0;
  }
  72% {
    opacity: .75;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .story-premium-inner {
    padding: 34px 24px 28px;
  }

  .story-pillars {
    grid-template-columns: 1fr;
  }

  .story-premium-inner::before {
    top: 76px;
    left: 8%;
    right: 8%;
  }
}



/* =========================================================
   STORY SECTION FINAL POLISH
   ========================================================= */

.story-premium {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.story-premium-inner {
  max-width: 1040px !important;
  padding: 42px 44px 34px !important;
  border-radius: 32px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,107,0,.24), transparent 45%),
    linear-gradient(135deg, rgba(255,107,0,.13), rgba(255,255,255,.04)),
    rgba(0,0,0,.25) !important;
  border: 1px solid rgba(255,107,0,.28) !important;
}

.story-premium-inner::before {
  top: 82px !important;
  left: 22% !important;
  right: 22% !important;
  opacity: .42 !important;
}

.story-premium h2 {
  max-width: 760px !important;
  font-size: clamp(36px, 3.6vw, 54px) !important;
  line-height: 1.03 !important;
  margin-bottom: 18px !important;
}

.story-premium .lead {
  max-width: 700px !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.story-pillars {
  margin-top: 28px !important;
  gap: 12px !important;
}

.story-pillars div {
  padding: 16px 17px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(135deg, rgba(255,107,0,.08), rgba(255,255,255,.035)),
    rgba(0,0,0,.26) !important;
}

.story-pillars strong {
  font-size: 13px !important;
}

.story-pillars span {
  font-size: 12.5px !important;
}

/* Untere 4 Karten als Premium-Leiste enger und sauberer */
.section.grid-section {
  padding-top: 22px !important;
}

.grid-section .feature-card {
  position: relative;
  min-height: 118px !important;
  padding: 24px 24px !important;
  border-radius: 22px !important;
  overflow: hidden;
}

.grid-section .feature-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6b00, #ffbc5c);
  box-shadow: 0 0 18px rgba(255,107,0,.5);
  opacity: .85;
}

.grid-section .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,107,0,.13), transparent 34%),
    linear-gradient(115deg, transparent, rgba(255,255,255,.035), transparent);
  pointer-events: none;
  opacity: .7;
}

.grid-section .feature-card h3,
.grid-section .feature-card p {
  position: relative;
  z-index: 1;
}

.grid-section .feature-card h3 {
  font-size: 20px !important;
}

.grid-section .feature-card p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
}

@media (max-width: 900px) {
  .story-premium-inner {
    padding: 32px 24px 28px !important;
  }

  .story-premium h2 {
    font-size: 34px !important;
  }
}



/* =========================================================
   IC EINREISE FLOW ARROWS
   ========================================================= */

.timeline {
  position: relative;
  align-items: stretch;
}

/* durchgehende Premium-Linie hinter den Steps */
.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,107,0,.35),
    rgba(255,188,92,.55),
    rgba(255,107,0,.35),
    transparent
  );
  box-shadow: 0 0 22px rgba(255,107,0,.35);
  z-index: 0;
  pointer-events: none;
}

/* Karten über Linie legen */
.timeline .timeline-item {
  position: relative;
  z-index: 2;
}

/* Pfeile zwischen den Karten */
.timeline .timeline-item:not(:last-child)::after {
  content: "➜";
  position: absolute;
  right: -38px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff9b35;
  font-size: 30px;
  font-weight: 900;
  text-shadow:
    0 0 16px rgba(255,107,0,.65),
    0 0 32px rgba(255,107,0,.28);
  animation: flowArrowPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

/* kleine leuchtende Punkte */
.timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff8a22;
  box-shadow:
    0 0 16px rgba(255,107,0,.75),
    0 0 34px rgba(255,107,0,.35);
  opacity: .85;
}

/* Nummern mehr Premium */
.timeline .timeline-item strong {
  color: #ffbc5c !important;
  text-shadow: 0 0 20px rgba(255,107,0,.28);
}

/* Hover zeigt Fortschritt stärker */
.timeline .timeline-item:hover {
  border-color: rgba(255,107,0,.45) !important;
  box-shadow:
    0 22px 80px rgba(0,0,0,.34),
    0 0 42px rgba(255,107,0,.13) !important;
}

.timeline .timeline-item:hover::before {
  background: #fff1d2;
  box-shadow:
    0 0 20px rgba(255,241,210,.75),
    0 0 44px rgba(255,107,0,.42);
}

@keyframes flowArrowPulse {
  0%, 100% {
    opacity: .55;
    transform: translateY(-50%) translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
  }
}

/* Mobile: Verlauf vertikal */
@media (max-width: 1150px) {
  .timeline::before {
    left: 36px;
    right: auto;
    top: 6%;
    bottom: 6%;
    width: 2px;
    height: auto;
    transform: none;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(255,107,0,.35),
      rgba(255,188,92,.55),
      rgba(255,107,0,.35),
      transparent
    );
  }

  .timeline .timeline-item:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 28px;
    top: auto;
    bottom: -38px;
    transform: none;
    font-size: 28px;
  }

  @keyframes flowArrowPulse {
    0%, 100% {
      opacity: .55;
      transform: translateY(0);
    }
    50% {
      opacity: 1;
      transform: translateY(5px);
    }
  }
}



/* =========================================================
   IC EINREISE FLOW CLEAN FIX
   ========================================================= */

/* Alte Pfeile/Punkte aus vorheriger Version deaktivieren */
.timeline .timeline-item::before,
.timeline .timeline-item::after,
.timeline .timeline-item:not(:last-child)::after {
  content: none !important;
  display: none !important;
}

/* Linie hinter den Karten dezenter und tiefer/sauberer */
.timeline::before {
  left: 10% !important;
  right: 10% !important;
  top: 50% !important;
  height: 2px !important;
  opacity: .45 !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,107,0,.28),
    rgba(255,188,92,.50),
    rgba(255,107,0,.28),
    transparent
  ) !important;
  box-shadow: 0 0 18px rgba(255,107,0,.25) !important;
}

/* Karten etwas sauberer auf der Linie */
.timeline .timeline-item {
  overflow: visible !important;
}

/* Echte Connectoren zwischen den Karten */
.flow-connector {
  position: absolute;
  right: -31px;
  top: 50%;
  width: 42px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255,107,0,.12), rgba(255,188,92,.85), rgba(255,107,0,.12));
  box-shadow: 0 0 18px rgba(255,107,0,.38);
  z-index: 4;
  pointer-events: none;
}

.flow-connector::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #ffbc5c;
  border-right: 2px solid #ffbc5c;
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 0 8px rgba(255,107,0,.65));
  animation: flowChevronPulse 2.1s ease-in-out infinite;
}

.flow-connector::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #ff8a22;
  box-shadow:
    0 0 12px rgba(255,107,0,.65),
    0 0 28px rgba(255,107,0,.30);
  opacity: .9;
}

/* Nummern sauberer */
.timeline .timeline-item strong {
  display: block;
  margin-bottom: 18px !important;
}

/* Mehr Premium beim Hover */
.timeline .timeline-item:hover .flow-connector {
  background: linear-gradient(90deg, rgba(255,107,0,.20), rgba(255,241,210,.95), rgba(255,107,0,.20));
  box-shadow: 0 0 26px rgba(255,107,0,.55);
}

@keyframes flowChevronPulse {
  0%, 100% {
    opacity: .65;
    transform: translateY(-50%) rotate(45deg) translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) rotate(45deg) translateX(4px);
  }
}

/* Bei kleineren Layouts vertikal */
@media (max-width: 1150px) {
  .timeline::before {
    left: 36px !important;
    right: auto !important;
    top: 7% !important;
    bottom: 7% !important;
    width: 2px !important;
    height: auto !important;
    transform: none !important;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(255,107,0,.28),
      rgba(255,188,92,.50),
      rgba(255,107,0,.28),
      transparent
    ) !important;
  }

  .flow-connector {
    right: auto;
    left: 30px;
    top: auto;
    bottom: -34px;
    width: 2px;
    height: 38px;
    transform: none;
    background: linear-gradient(180deg, rgba(255,107,0,.12), rgba(255,188,92,.85), rgba(255,107,0,.12));
  }

  .flow-connector::before {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 2px;
    transform: translateX(-50%) rotate(135deg);
  }

  .flow-connector::after {
    left: 50%;
    top: 4px;
    transform: translateX(-50%);
  }
}



/* =========================================================
   IC EINREISE VARIANTE A - PREMIUM TIMELINE
   ========================================================= */

/* Alte Connectoren vollständig aus */
.flow-connector,
.timeline .timeline-item::before,
.timeline .timeline-item::after,
.timeline .timeline-item:not(:last-child)::after {
  display: none !important;
  content: none !important;
}

/* Timeline bekommt Platz für die obere Verlaufslinie */
.timeline {
  position: relative !important;
  padding-top: 82px !important;
  gap: 22px !important;
}

/* Alte Linie hinter Karten aus */
.timeline::before {
  display: none !important;
  content: none !important;
}

/* Neue Premium-Linie über den Karten */
.timeline-progress {
  position: absolute;
  left: calc(7vw + 42px);
  right: calc(7vw + 42px);
  top: 32px;
  height: 42px;
  z-index: 5;
  pointer-events: none;
}

.timeline-progress::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background:
    linear-gradient(90deg,
      rgba(255,107,0,.05),
      rgba(255,107,0,.42),
      rgba(255,188,92,.78),
      rgba(255,107,0,.42),
      rgba(255,107,0,.05)
    );
  box-shadow:
    0 0 18px rgba(255,107,0,.35),
    0 0 36px rgba(255,107,0,.14);
}

.timeline-progress::after {
  content: "";
  position: absolute;
  left: 5%;
  top: 50%;
  width: 22%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(255,241,210,.95), transparent);
  box-shadow: 0 0 20px rgba(255,188,92,.65);
  animation: timelineLightRun 4.2s ease-in-out infinite;
}

/* Punkte über den Steps */
.timeline-dot {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #ff8a22;
  border: 2px solid rgba(255,241,210,.78);
  box-shadow:
    0 0 18px rgba(255,107,0,.78),
    0 0 40px rgba(255,107,0,.28);
}

.dot-1 { left: 5%; }
.dot-2 { left: 35%; }
.dot-3 { left: 65%; }
.dot-4 { left: 95%; }

/* Pfeilspitzen in der Linie */
.timeline-arrow {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #ffbc5c;
  border-right: 2px solid #ffbc5c;
  transform: translate(-50%, -50%) rotate(45deg);
  filter: drop-shadow(0 0 9px rgba(255,107,0,.7));
  animation: timelineArrowPulse 2.1s ease-in-out infinite;
}

.arrow-1 { left: 20%; }
.arrow-2 { left: 50%; animation-delay: .25s; }
.arrow-3 { left: 80%; animation-delay: .5s; }

/* Karten stehen sauber unter den Punkten */
.timeline .timeline-item {
  position: relative !important;
  z-index: 2 !important;
  overflow: hidden !important;
  min-height: 150px;
}

.timeline .timeline-item strong {
  display: inline-flex;
  margin-bottom: 18px !important;
  color: #ffbc5c !important;
  text-shadow: 0 0 20px rgba(255,107,0,.34);
}

/* dezente obere Markierung auf jeder Karte */
.timeline .timeline-item {
  border-top-color: rgba(255,188,92,.22) !important;
}

.timeline .timeline-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,0,.44) !important;
  box-shadow:
    0 24px 90px rgba(0,0,0,.36),
    0 0 46px rgba(255,107,0,.14) !important;
}

@keyframes timelineLightRun {
  0%, 15% {
    left: 5%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  85% {
    left: 73%;
    opacity: 1;
  }
  100% {
    left: 73%;
    opacity: 0;
  }
}

@keyframes timelineArrowPulse {
  0%, 100% {
    opacity: .55;
    transform: translate(-50%, -50%) rotate(45deg) scale(.94);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(45deg) scale(1.08);
  }
}

/* CTA unten etwas voller machen */
.split.clean {
  position: relative;
  overflow: hidden;
}

.split.clean::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(255,107,0,.16), transparent 24%),
    linear-gradient(90deg, rgba(255,107,0,.08), transparent 55%);
  pointer-events: none;
}

.split.clean > * {
  position: relative;
  z-index: 1;
}

/* Mobile / Tablet: vertikale Timeline */
@media (max-width: 1150px) {
  .timeline {
    padding-top: 36px !important;
    padding-left: 52px !important;
  }

  .timeline-progress {
    left: 34px;
    right: auto;
    top: 42px;
    bottom: 42px;
    width: 38px;
    height: auto;
  }

  .timeline-progress::before {
    left: 50%;
    right: auto;
    top: 5%;
    bottom: 5%;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background:
      linear-gradient(180deg,
        rgba(255,107,0,.05),
        rgba(255,107,0,.42),
        rgba(255,188,92,.78),
        rgba(255,107,0,.42),
        rgba(255,107,0,.05)
      );
  }

  .timeline-progress::after {
    left: 50%;
    top: 5%;
    width: 2px;
    height: 22%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(255,241,210,.95), transparent);
    animation: timelineLightRunVertical 4.2s ease-in-out infinite;
  }

  .timeline-dot {
    left: 50% !important;
  }

  .dot-1 { top: 5%; }
  .dot-2 { top: 35%; }
  .dot-3 { top: 65%; }
  .dot-4 { top: 95%; }

  .timeline-arrow {
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .arrow-1 { top: 20%; }
  .arrow-2 { top: 50%; }
  .arrow-3 { top: 80%; }

  @keyframes timelineLightRunVertical {
    0%, 15% {
      top: 5%;
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    85% {
      top: 73%;
      opacity: 1;
    }
    100% {
      top: 73%;
      opacity: 0;
    }
  }
}



/* =========================================================
   NEXT PREMIUM STEP
   ========================================================= */

/* Warum Woodstone */
.why-woodstone {
  text-align: center;
}

.why-woodstone h2 {
  margin: 14px 0 18px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.why-grid div {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255,107,0,.08), rgba(255,255,255,.045)),
    rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition: .25s ease;
}

.why-grid div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255,107,0,.14), transparent 38%);
  pointer-events: none;
}

.why-grid div:hover {
  transform: translateY(-7px);
  border-color: rgba(255,107,0,.36);
  box-shadow: 0 24px 80px rgba(0,0,0,.30), 0 0 45px rgba(255,107,0,.12);
}

.why-grid span {
  position: relative;
  display: inline-flex;
  margin-bottom: 18px;
  color: #ffbc5c;
  font-weight: 900;
  font-size: 24px;
  text-shadow: 0 0 18px rgba(255,107,0,.35);
}

.why-grid h3,
.why-grid p {
  position: relative;
}

.why-grid h3 {
  color: #fff1d2;
  margin-bottom: 12px;
  font-size: 20px;
}

.why-grid p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

/* Bottom Join Section */
.join-history {
  margin: 40px 7vw 80px;
  padding: 48px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background:
    radial-gradient(circle at 88% 50%, rgba(255,107,0,.18), transparent 28%),
    linear-gradient(135deg, rgba(255,107,0,.12), rgba(255,255,255,.045)),
    rgba(0,0,0,.25);
  border: 1px solid rgba(255,107,0,.24);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 100px rgba(0,0,0,.34);
}

.join-history h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 4vw, 58px);
}

.join-history p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
}

.join-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.join-list span {
  padding: 9px 13px;
  border-radius: 999px;
  color: #ffd9ad;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255,107,0,.10);
  border: 1px solid rgba(255,107,0,.25);
}

/* Team Premium */
.premium-team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.premium-team-card {
  min-height: 310px;
  background:
    linear-gradient(135deg, rgba(255,107,0,.08), rgba(255,255,255,.045)),
    rgba(255,255,255,.055) !important;
}

.premium-team-card .team-logo {
  width: 92px;
  height: 92px;
}

.team-kicker {
  color: #ff9b35;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: 12px;
  margin-bottom: 8px;
}

/* Premium Serverstatus extra */
.uptime-line {
  display: inline-grid;
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
}

.uptime-line span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.uptime-line strong {
  color: #fff1d2;
  font-size: 15px;
  margin-top: 3px;
}

@media (max-width: 1150px) {
  .why-grid,
  .premium-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-history {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .why-grid,
  .premium-team-grid {
    grid-template-columns: 1fr;
  }

  .join-history {
    margin-left: 5vw;
    margin-right: 5vw;
    padding: 30px;
  }
}



/* =========================================================
   PREMIUM TYPOGRAPHY UPGRADE
   ========================================================= */

/* Mutigere Hauptüberschriften auf der Startseite */
.why-woodstone h2 {
  max-width: 980px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(58px, 6.4vw, 104px) !important;
  line-height: .88 !important;
  letter-spacing: -3px !important;
  text-transform: uppercase;
  text-shadow:
    0 0 46px rgba(255,107,0,.24),
    0 18px 80px rgba(0,0,0,.38);
}

/* Der emotionale Story-Satz soll mehr knallen */
.cinematic h2 {
  max-width: 1320px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(52px, 5.8vw, 96px) !important;
  line-height: .95 !important;
  letter-spacing: -3px !important;
  text-transform: uppercase;
  text-shadow:
    0 0 42px rgba(255,107,0,.22),
    0 18px 80px rgba(0,0,0,.34);
}

/* Story Box Überschrift größer, aber nicht zu viel */
.story-premium h2 {
  max-width: 920px !important;
  font-size: clamp(48px, 5vw, 82px) !important;
  line-height: .92 !important;
  letter-spacing: -2.8px !important;
  text-transform: uppercase;
}

/* Kleine Eyebrows bleiben Premium */
.mini-title,
.badge,
.page-hero span {
  letter-spacing: 2.1px !important;
}

/* Warum Woodstone Cards: Zahlen als Designelement */
.why-grid div {
  min-height: 190px;
  padding: 30px 28px !important;
}

.why-grid span {
  display: block !important;
  margin-bottom: 22px !important;
  font-size: clamp(42px, 3.2vw, 62px) !important;
  line-height: .85 !important;
  color: rgba(255,188,92,.92) !important;
  text-shadow:
    0 0 26px rgba(255,107,0,.42),
    0 0 60px rgba(255,107,0,.16);
}

.why-grid h3 {
  font-size: clamp(22px, 1.6vw, 30px) !important;
  line-height: 1.05 !important;
  text-transform: uppercase;
  letter-spacing: -.4px;
  max-width: 280px;
}

.why-grid p {
  margin-top: 13px;
  font-size: 14px !important;
}

/* Untere Feature-Karten auch etwas klarer */
.grid-section .feature-card h3 {
  font-size: clamp(22px, 1.5vw, 28px) !important;
  line-height: 1.08 !important;
  text-transform: uppercase;
}

.grid-section .feature-card p {
  max-width: 440px;
}

/* Join CTA mehr Impact */
.join-history h2 {
  font-size: clamp(52px, 5.4vw, 88px) !important;
  line-height: .94 !important;
  letter-spacing: -2.8px !important;
  text-transform: uppercase;
}

/* Page-Hero Unterseiten ebenfalls etwas stärker */
.page-hero h1 {
  font-size: clamp(60px, 7vw, 110px) !important;
  line-height: .88 !important;
  letter-spacing: -3.5px !important;
}

/* IC Einreise Karten-Nummern stärker */
.timeline .timeline-item strong {
  font-size: clamp(34px, 2.4vw, 48px) !important;
  line-height: .9 !important;
}

.timeline .timeline-item h3 {
  font-size: clamp(20px, 1.5vw, 28px) !important;
  text-transform: uppercase;
}

/* Mobile nicht erschlagen */
@media (max-width: 720px) {
  .why-woodstone h2,
  .cinematic h2,
  .story-premium h2,
  .join-history h2,
  .page-hero h1 {
    font-size: 42px !important;
    line-height: .98 !important;
    letter-spacing: -1.5px !important;
  }

  .why-grid span {
    font-size: 42px !important;
  }

  .why-grid h3 {
    font-size: 22px !important;
  }
}



/* =========================================================
   BALANCED TYPOGRAPHY FIX
   Goldene Mitte: premium, aber nicht übertrieben
   ========================================================= */

/* Warum Woodstone - groß, aber nicht riesig */
.why-woodstone h2 {
  font-size: clamp(42px, 4.2vw, 66px) !important;
  line-height: 1.02 !important;
  letter-spacing: -1.8px !important;
  text-transform: none !important;
}

/* Emotionaler Story-Satz - wichtig, aber nicht Times Square */
.cinematic h2 {
  max-width: 1180px !important;
  font-size: clamp(42px, 4.4vw, 72px) !important;
  line-height: 1.05 !important;
  letter-spacing: -2px !important;
  text-transform: none !important;
}

/* Story-Box wieder eleganter */
.story-premium h2 {
  font-size: clamp(38px, 3.8vw, 62px) !important;
  line-height: 1.02 !important;
  letter-spacing: -1.8px !important;
  text-transform: none !important;
}

/* Zahlen nicht mehr zu dominant */
.why-grid span {
  font-size: clamp(30px, 2.2vw, 38px) !important;
  line-height: 1 !important;
  margin-bottom: 16px !important;
}

/* Karten-Titel edel, aber lesbar */
.why-grid h3 {
  font-size: clamp(18px, 1.25vw, 23px) !important;
  line-height: 1.15 !important;
  text-transform: none !important;
  letter-spacing: -.2px !important;
}

.why-grid div {
  min-height: 165px !important;
  padding: 26px 24px !important;
}

/* Feature-Karten nicht schreien lassen */
.grid-section .feature-card h3 {
  font-size: clamp(18px, 1.25vw, 23px) !important;
  line-height: 1.15 !important;
  text-transform: none !important;
}

/* CTA unten wieder kontrollierter */
.join-history h2 {
  font-size: clamp(40px, 4.2vw, 66px) !important;
  line-height: 1.02 !important;
  letter-spacing: -1.8px !important;
  text-transform: none !important;
}

/* Unterseiten groß genug, aber sauber */
.page-hero h1 {
  font-size: clamp(48px, 5.8vw, 86px) !important;
  line-height: .95 !important;
  letter-spacing: -2.5px !important;
}

/* IC Einreise Nummern zurück auf Premium statt riesig */
.timeline .timeline-item strong {
  font-size: clamp(28px, 1.9vw, 36px) !important;
  line-height: 1 !important;
}

.timeline .timeline-item h3 {
  font-size: clamp(18px, 1.25vw, 23px) !important;
  text-transform: none !important;
}

/* Mobile ruhiger */
@media (max-width: 720px) {
  .why-woodstone h2,
  .cinematic h2,
  .story-premium h2,
  .join-history h2,
  .page-hero h1 {
    font-size: 36px !important;
    line-height: 1.05 !important;
    letter-spacing: -1px !important;
  }

  .why-grid span {
    font-size: 30px !important;
  }

  .why-grid h3,
  .grid-section .feature-card h3,
  .timeline .timeline-item h3 {
    font-size: 19px !important;
  }
}



/* =========================================================
   DAY / NIGHT MOOD SYSTEM
   ========================================================= */

/* Standard bleibt Woodstone-Dark */
body {
  transition: background 1.2s ease, filter 1.2s ease;
}

/* Morgen: etwas wärmer und heller */
body.mood-morning {
  --mood-overlay: rgba(255, 170, 75, .10);
  --mood-glow: rgba(255, 150, 45, .20);
  --mood-card: rgba(255,255,255,.085);
}

/* Tag: klarer, etwas weniger düster */
body.mood-day {
  --mood-overlay: rgba(255, 190, 95, .13);
  --mood-glow: rgba(255, 185, 80, .18);
  --mood-card: rgba(255,255,255,.095);
}

/* Abend: Woodstone Orange stärker */
body.mood-evening {
  --mood-overlay: rgba(255, 107, 0, .10);
  --mood-glow: rgba(255, 107, 0, .24);
  --mood-card: rgba(255,255,255,.075);
}

/* Nacht: dunkler, mehr Neon/Glow */
body.mood-night {
  --mood-overlay: rgba(8, 12, 24, .18);
  --mood-glow: rgba(255, 107, 0, .16);
  --mood-card: rgba(255,255,255,.065);
}

/* Stimmungs-Layer über der Seite */
body::after {
  background:
    radial-gradient(circle at 50% 18%, var(--mood-glow, rgba(255,107,0,.16)), transparent 34%),
    linear-gradient(180deg, var(--mood-overlay, rgba(255,107,0,.06)), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.014) 0 1px, transparent 1px 120px) !important;
  transition: background 1.2s ease;
}

/* Tagsüber Karten etwas luftiger/heller */
body.mood-day .feature-card,
body.mood-day .team-card,
body.mood-day .rule-block,
body.mood-day .timeline-item,
body.mood-day .why-grid div {
  background:
    linear-gradient(135deg, rgba(255,107,0,.07), rgba(255,255,255,.065)),
    rgba(255,255,255,.08) !important;
}

/* Nachts stärkerer Glow */
body.mood-night .command-panel,
body.mood-night .story-premium-inner,
body.mood-night .join-history {
  box-shadow:
    0 30px 110px rgba(0,0,0,.50),
    0 0 60px rgba(255,107,0,.10) !important;
}

/* Discord Mitglieder Mini-Polish */
#discordMembers {
  color: #ffffff;
}

.discord-live-note {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .7px;
}



/* =========================================================
   VISIBLE DISCORD MEMBERS IN SERVER STATUS
   ========================================================= */

.discord-member-display {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  margin: 0 0 16px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(88,101,242,.22), rgba(255,255,255,.045)),
    rgba(0,0,0,.22);
  border: 1px solid rgba(88,101,242,.36);
  box-shadow:
    0 0 30px rgba(88,101,242,.12),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}

.discord-member-display::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 50%, rgba(88,101,242,.22), transparent 36%);
  pointer-events: none;
}

.discord-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #5865F2, #404EED);
  color: white;
  font-size: 20px;
  box-shadow:
    0 0 24px rgba(88,101,242,.42),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.discord-member-display div:not(.discord-icon) {
  position: relative;
  z-index: 1;
}

.discord-member-display span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .9px;
  font-weight: 900;
  margin-bottom: 3px;
}

.discord-member-display strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  text-shadow: 0 0 18px rgba(88,101,242,.42);
}

.discord-member-display small {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.52);
  font-size: 11px;
}



/* =========================================================
   CONSOLE NO-JUMP FIX
   ========================================================= */

/* Hero-Inhalt darf nicht mithüpfen, wenn die Statusbox rechts größer wird */
.hero,
.experience-hero {
  align-items: flex-start !important;
}

/* Linke Hero-Seite stabil halten */
.hero-content {
  padding-top: 120px !important;
}

/* Rechte Statusbox stabilisieren */
.status-ultra,
.status-hub,
.command-panel {
  align-self: flex-start !important;
}

/* Terminal bekommt feste Premium-Höhe statt die Box beim Schreiben zu vergrößern */
.terminal-box {
  height: 150px !important;
  min-height: 150px !important;
  max-height: 150px !important;
  overflow: hidden !important;
}

/* Innenbereich scrollt/clippt, ohne Layout-Höhe zu verändern */
#terminalLines {
  height: 100% !important;
  max-height: 100% !important;
  overflow: hidden !important;
}

/* Terminal-Zeilen bleiben kompakt */
#terminalLines p,
.terminal-box p {
  line-height: 1.35 !important;
  margin-bottom: 5px !important;
}

/* Auf kleineren Bildschirmen weniger Top-Abstand */
@media (max-width: 1150px) {
  .hero-content {
    padding-top: 40px !important;
  }

  .hero,
  .experience-hero {
    align-items: center !important;
  }
}

@media (max-width: 720px) {
  .terminal-box {
    height: 135px !important;
    min-height: 135px !important;
    max-height: 135px !important;
  }
}



/* =========================================================
   TERMINAL SCROLL + DISCORD NUMBER POLISH
   ========================================================= */

/* Feste Terminalbox bleibt, aber Inhalt scrollt automatisch nach unten */
.terminal-box {
  height: 150px !important;
  min-height: 150px !important;
  max-height: 150px !important;
  overflow: hidden !important;
}

#terminalLines {
  height: 100% !important;
  max-height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding-right: 6px;
  scroll-behavior: smooth;
}

/* Scrollbar fast unsichtbar, damit es premium bleibt */
#terminalLines::-webkit-scrollbar {
  width: 4px;
}

#terminalLines::-webkit-scrollbar-track {
  background: rgba(255,255,255,.035);
  border-radius: 999px;
}

#terminalLines::-webkit-scrollbar-thumb {
  background: rgba(255,107,0,.35);
  border-radius: 999px;
}

/* Discord-Zahl soll wie echter Status wirken */
.discord-member-display strong,
#discordMembers {
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  text-shadow:
    0 0 20px rgba(88,101,242,.55),
    0 0 40px rgba(88,101,242,.22) !important;
}

.discord-member-display small {
  color: rgba(255,255,255,.58) !important;
  text-transform: uppercase;
  letter-spacing: .7px;
  font-weight: 800;
}

/* Discord-Modul etwas kompakter/hochwertiger */
.discord-member-display {
  grid-template-columns: 52px 1fr !important;
}

.discord-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 18px !important;
}



/* =========================================================
   DISCORD STATUS CLEANUP
   ========================================================= */

.discord-member-display {
  margin-bottom: 18px !important;
}

.discord-member-display span {
  color: rgba(255,255,255,.68) !important;
}

.discord-member-display strong,
#discordMembers {
  font-size: 32px !important;
  line-height: 1 !important;
  letter-spacing: -.6px;
}

.discord-member-display small {
  margin-top: 6px !important;
}

/* Das untere Status-Feld nicht mehr wie Discord aussehen lassen */
.mini-panels div strong {
  word-break: normal;
}



/* =========================================================
   MIDCORE / SLOT POLISH
   ========================================================= */

.stats div strong#heroMaxSlots::after {
  content: "";
}

/* Konzept/Midcore Feld etwas hervorheben */
.mini-panels div:has(strong) strong {
  color: #fff1d2;
}

/* Browser ohne :has ignorieren das einfach */
.mini-panels div {
  transition: .22s ease;
}

.mini-panels div:hover {
  border-color: rgba(255,107,0,.25);
}



/* =========================================================
   WOODSTONERP MOBILE POLISH
   Handy / Tablet / Discord Browser Optimierung
   ========================================================= */

/* Tablet */
@media (max-width: 1150px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .nav {
    gap: 14px !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .nav-links {
    gap: 12px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .hero,
  .experience-hero {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding-left: 6vw !important;
    padding-right: 6vw !important;
    align-items: start !important;
  }

  .hero-content {
    padding-top: 40px !important;
    text-align: center !important;
    max-width: 920px !important;
    margin: 0 auto !important;
  }

  .hero-content p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions,
  .stats {
    justify-content: center !important;
  }

  .command-panel,
  .status-hub,
  .status-ultra {
    max-width: 720px !important;
    margin: 0 auto !important;
  }

  .why-grid,
  .premium-team-grid,
  .team-grid,
  .grid-section {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .join-history {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* Handy */
@media (max-width: 760px) {
  html,
  body {
    width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    font-size: 15px !important;
  }

  /* Navigation kompakt und scrollbar */
  .nav {
    position: sticky !important;
    top: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    border-radius: 0 0 22px 22px !important;
  }

  .brand {
    justify-content: center !important;
  }

  .logo {
    width: 42px !important;
    height: 42px !important;
  }

  .brand-title {
    font-size: 17px !important;
  }

  .brand-sub {
    font-size: 10px !important;
  }

  .nav-links {
    display: flex !important;
    width: 100% !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 2px 2px 6px !important;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto !important;
    padding: 9px 11px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.055) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }

  .nav-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .nav-actions a,
  .nav-button,
  .play-button {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px 12px !important;
    font-size: 12px !important;
  }

  /* Intro */
  .clean-intro-scene {
    width: 100% !important;
    min-height: 100svh !important;
    padding: 26px 18px !important;
  }

  .clean-intro-logo {
    width: 170px !important;
    height: 170px !important;
    margin-bottom: 26px !important;
  }

  .clean-intro h1 {
    font-size: clamp(32px, 10vw, 44px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.8px !important;
    max-width: 360px !important;
  }

  .clean-intro p {
    font-size: 11px !important;
    letter-spacing: 1.4px !important;
    max-width: 320px !important;
  }

  .clean-intro button,
  #enterSite {
    margin-top: 28px !important;
    padding: 14px 22px !important;
    font-size: 13px !important;
  }

  /* Hero */
  .hero,
  .experience-hero {
    padding: 34px 18px 38px !important;
    gap: 26px !important;
    grid-template-columns: 1fr !important;
  }

  .hero-content {
    padding-top: 20px !important;
    text-align: center !important;
  }

  .hero-content h1 {
    font-size: clamp(38px, 12vw, 58px) !important;
    line-height: 0.98 !important;
    letter-spacing: -1.6px !important;
  }

  .hero-content p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 24px !important;
  }

  .hero-actions a {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 18px !important;
  }

  .stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    margin-top: 22px !important;
  }

  .stats div {
    padding: 13px 8px !important;
    border-radius: 18px !important;
  }

  .stats strong {
    font-size: 20px !important;
  }

  .stats span {
    font-size: 10px !important;
  }

  /* Serverstatus */
  .command-panel,
  .status-hub,
  .status-ultra {
    width: 100% !important;
    padding: 18px !important;
    border-radius: 26px !important;
  }

  .ultra-status-top {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    justify-items: center !important;
  }

  .status-ring {
    width: 118px !important;
    height: 118px !important;
  }

  .status-main h3 {
    font-size: 34px !important;
  }

  .discord-member-display {
    grid-template-columns: 44px 1fr !important;
    padding: 14px !important;
  }

  .discord-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .discord-member-display strong,
  #discordMembers {
    font-size: 23px !important;
  }

  .ultra-restart {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .ultra-restart em,
  .ultra-restart .restart-timeline {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .mini-panels {
    grid-template-columns: 1fr 1fr !important;
  }

  .city-status {
    gap: 8px !important;
  }

  .terminal-box {
    height: 135px !important;
    min-height: 135px !important;
    max-height: 135px !important;
  }

  /* Sections */
  .section {
    padding: 42px 18px !important;
  }

  .page-hero {
    padding: 70px 18px 36px !important;
    text-align: center !important;
  }

  .page-hero h1 {
    font-size: clamp(42px, 13vw, 64px) !important;
    line-height: 0.98 !important;
    letter-spacing: -1.5px !important;
  }

  .page-hero p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .why-grid,
  .premium-team-grid,
  .team-grid,
  .grid-section,
  .story-pillars {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .why-grid div,
  .feature-card,
  .team-card,
  .timeline-item {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  .why-woodstone h2,
  .cinematic h2,
  .story-premium h2,
  .join-history h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
    line-height: 1.03 !important;
    letter-spacing: -1px !important;
  }

  .lead {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  .story-premium-inner {
    padding: 30px 20px 24px !important;
    border-radius: 26px !important;
  }

  .story-premium-inner::before {
    display: none !important;
  }

  .join-history {
    margin: 24px 18px 54px !important;
    padding: 30px 22px !important;
    border-radius: 26px !important;
  }

  .join-list {
    gap: 8px !important;
  }

  .join-list span {
    font-size: 10px !important;
    padding: 8px 10px !important;
  }

  .large-link {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* IC Einreise Timeline */
  .timeline {
    grid-template-columns: 1fr !important;
    padding-left: 46px !important;
    padding-top: 36px !important;
  }

  .timeline-progress {
    left: 22px !important;
    right: auto !important;
    top: 48px !important;
    bottom: 48px !important;
    width: 28px !important;
    height: auto !important;
  }

  .timeline .timeline-item {
    min-height: auto !important;
  }

  /* Legal pages */
  .legal-layout {
    grid-template-columns: 1fr !important;
    padding: 20px 18px 60px !important;
  }

  .legal-side {
    position: relative !important;
    top: auto !important;
  }

  /* Footer */
  footer {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    text-align: center !important;
    padding: 28px 18px !important;
  }

  .footer-brand {
    align-items: center !important;
  }

  .footer-links {
    justify-content: center !important;
    gap: 12px !important;
  }

  .footer-links a {
    font-size: 11px !important;
  }

  /* Performance auf Mobile */
  #particles {
    display: none !important;
  }

  .woodstone-bg-logo {
    opacity: 0.04 !important;
    width: 110vw !important;
    height: 110vw !important;
  }

  .woodstone-atmosphere {
    display: none !important;
  }

  .noise {
    opacity: 0.15 !important;
  }
}

/* Sehr kleine Geräte */
@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 36px !important;
  }

  .stats {
    grid-template-columns: 1fr !important;
  }

  .mini-panels {
    grid-template-columns: 1fr !important;
  }

  .nav-actions {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   LIVE SERVER STATUS COLORS
   ========================================================= */

.server-online .status-main h3 {
  color: #5cff92 !important;
  text-shadow: 0 0 28px rgba(92,255,146,.35) !important;
}

.server-offline .status-main h3 {
  color: #ff5b5b !important;
  text-shadow: 0 0 28px rgba(255,91,91,.35) !important;
}

.server-online .pulse {
  background: #5cff92 !important;
  box-shadow: 0 0 14px rgba(92,255,146,.8) !important;
}

.server-offline .pulse {
  background: #ff5b5b !important;
  box-shadow: 0 0 14px rgba(255,91,91,.8) !important;
}

.server-online .ring-progress {
  stroke: #5cff92 !important;
  filter: drop-shadow(0 0 10px rgba(92,255,146,.7));
}

.server-offline .ring-progress {
  stroke: #ff5b5b !important;
  filter: drop-shadow(0 0 10px rgba(255,91,91,.7));
}

.server-online .status-ring::after {
  content: "LIVE" !important;
  background: rgba(92,255,146,.12) !important;
  border: 1px solid rgba(92,255,146,.28) !important;
  color: #baffcf !important;
}

.server-offline .status-ring::after {
  content: "OFFLINE" !important;
  background: rgba(255,91,91,.12) !important;
  border: 1px solid rgba(255,91,91,.28) !important;
  color: #ffb4b4 !important;
}

/* City Status folgt Online/Offline */
.server-offline .city-status .led.on {
  background: #ff5b5b !important;
  box-shadow: 0 0 14px rgba(255,91,91,.8) !important;
}

.server-offline .city-status div {
  border-color: rgba(255,91,91,.28) !important;
  background: rgba(255,91,91,.055) !important;
}

.server-online .city-status .led.on {
  background: #5cff92 !important;
  box-shadow: 0 0 14px rgba(92,255,146,.8) !important;
}

.server-online .city-status div {
  border-color: rgba(92,255,146,.16) !important;
}

/* RESTART STATUS */

.server-restart .status-main h3 {
  color: #ffbc5c !important;
  text-shadow: 0 0 28px rgba(255,188,92,.45) !important;
}

.server-restart .pulse {
  background: #ffbc5c !important;
  box-shadow: 0 0 14px rgba(255,188,92,.8) !important;
}

.server-restart .ring-progress {
  stroke: #ffbc5c !important;
  filter: drop-shadow(0 0 10px rgba(255,188,92,.7));
}

.server-restart .status-ring::after {
  content: "RESTART" !important;
  background: rgba(255,188,92,.12) !important;
  border: 1px solid rgba(255,188,92,.28) !important;
  color: #ffd89a !important;
}

.server-restart .city-status .led.on {
  background: #ffbc5c !important;
  box-shadow: 0 0 14px rgba(255,188,92,.8) !important;
}

.server-restart .city-status div {
  border-color: rgba(255,188,92,.25) !important;
  background: rgba(255,188,92,.05) !important;
}
.support-btn{
background:#ffd84d!important;
color:#111!important;
font-weight:900!important;
}
.einreise-btn{
background:linear-gradient(135deg,#ff8a22,#ff6b00)!important;
color:#fff!important;
border:none!important;
}


/* =========================================================
   WOODSTONE FINAL BUTTON + DISCORD POLISH
   ========================================================= */

/* Einheitliche CTA-Größe */
.hero-actions {
  align-items: center !important;
}

.hero-actions a {
  min-height: 48px !important;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  letter-spacing: .1px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  white-space: nowrap !important;
}

/* Hauptbutton */
.hero-actions .primary-btn {
  background: linear-gradient(135deg, #ffe0a0 0%, #ff9a2a 48%, #ff5a00 100%) !important;
  color: #170b04 !important;
  border: 1px solid rgba(255,205,120,.45) !important;
  box-shadow:
    0 0 28px rgba(255,107,0,.34),
    0 15px 42px rgba(255,107,0,.22),
    inset 0 1px 0 rgba(255,255,255,.42) !important;
}

/* Wie spiele ich? - gefüllt, aber bewusst anders als Jetzt spielen */
.hero-actions .einreise-btn,
.hero-actions .secondary-btn.einreise-btn {
  background: linear-gradient(135deg, #8b4517 0%, #c76520 45%, #ff8a22 100%) !important;
  color: #fff3df !important;
  border: 1px solid rgba(255,170,75,.52) !important;
  box-shadow:
    0 0 24px rgba(255,138,34,.26),
    0 12px 34px rgba(120,55,10,.28),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

/* Discord Button mit Logo */
.hero-actions .discord-btn,
.nav-actions .nav-button {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(190,195,255,.42) !important;
  box-shadow:
    0 0 30px rgba(88,101,242,.36),
    0 12px 38px rgba(88,101,242,.22),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.btn-discord-logo {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
  display: inline-block !important;
  border-radius: 4px !important;
}

/* Support Button: Gelb, schwarze Schrift, ausgefülltes Herz im Text */
.hero-actions .support-btn,
.hero-actions .shop-btn.support-btn {
  background: linear-gradient(135deg, #fff07a 0%, #ffd02e 48%, #ffb400 100%) !important;
  color: #140b00 !important;
  border: 1px solid rgba(255,239,120,.62) !important;
  box-shadow:
    0 0 30px rgba(255,210,40,.32),
    0 14px 42px rgba(255,180,0,.20),
    inset 0 1px 0 rgba(255,255,255,.42) !important;
}

.hero-actions .support-btn:hover,
.hero-actions .einreise-btn:hover,
.hero-actions .primary-btn:hover,
.hero-actions .discord-btn:hover {
  transform: translateY(-3px) scale(1.025) !important;
  filter: brightness(1.08) !important;
}

/* Discord Community Bereich: clean, Logo aus assets */
.discord-member-display {
  grid-template-columns: 58px 1fr !important;
  gap: 16px !important;
  align-items: center !important;
  min-height: 82px !important;
  padding: 17px 20px !important;
}

.discord-member-display .discord-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #5865F2, #404EED) !important;
  display: grid !important;
  place-items: center !important;
  box-shadow:
    0 0 26px rgba(88,101,242,.48),
    inset 0 1px 0 rgba(255,255,255,.20) !important;
}

.discord-member-display .discord-icon img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
  display: block !important;
}

.discord-member-display span {
  margin-bottom: 5px !important;
}

.discord-member-display small {
  display: none !important;
}

.discord-member-display strong,
#discordMembers {
  font-size: 30px !important;
  line-height: 1 !important;
}

/* Falls alte Stats doch noch irgendwo im DOM stehen: sicher verstecken */
.hero-content .stats {
  display: none !important;
}

@media (max-width: 720px) {
  .hero-actions a {
    width: 100% !important;
  }

  .discord-member-display {
    grid-template-columns: 50px 1fr !important;
  }

  .discord-member-display .discord-icon {
    width: 48px !important;
    height: 48px !important;
  }
}


/* =========================================================
   AETHER LAUNCH READY FIX - DO NOT REMOVE
   ========================================================= */

.stats,
.hero-content .stats {
  display: none !important;
}

.uptime-line,
#uptimeDemo,
.status-main .uptime-line,
.status-main > .uptime-line {
  display: none !important;
}

.ultra-tags,
.status-tags,
.premium-tags,
.status-pills,
.status-chip-row,
.tag-row,
.command-panel .tags,
.status-hub .tags {
  display: none !important;
}

.hero-actions {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

.hero-actions a {
  min-height: 54px !important;
  padding: 16px 30px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.hero-actions .primary-btn {
  background: linear-gradient(135deg, #ffb35c 0%, #ff8420 45%, #ff5a00 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,185,95,.55) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.35) !important;
  box-shadow:
    0 0 34px rgba(255,107,0,.42),
    0 16px 45px rgba(255,107,0,.24),
    inset 0 1px 0 rgba(255,255,255,.35) !important;
}

.hero-actions .secondary-btn,
.hero-actions .einreise-btn,
.hero-actions .secondary-btn.einreise-btn {
  background: linear-gradient(135deg, #9b4b13 0%, #cf6a21 48%, #ff8a22 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,160,70,.55) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.35) !important;
  box-shadow:
    0 0 28px rgba(255,138,34,.35),
    0 14px 40px rgba(170,75,15,.25),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.hero-actions .discord-btn,
.nav-actions .nav-button {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(190,195,255,.44) !important;
  box-shadow:
    0 0 30px rgba(88,101,242,.42),
    0 14px 40px rgba(88,101,242,.25),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.hero-actions .shop-btn,
.hero-actions .support-btn,
.hero-actions .shop-btn.support-btn {
  background: linear-gradient(135deg, #fff07a 0%, #ffd12f 50%, #ffb300 100%) !important;
  color: #111111 !important;
  border: 1px solid rgba(255,236,110,.70) !important;
  text-shadow: none !important;
  box-shadow:
    0 0 34px rgba(255,210,45,.42),
    0 16px 45px rgba(255,180,0,.22),
    inset 0 1px 0 rgba(255,255,255,.45) !important;
}

.play-button,
.nav-actions .play-button {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.35) !important;
}

.ws-discord-logo,
.btn-discord-logo {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
  display: inline-block !important;
}

.discord-member-display {
  grid-template-columns: 58px 1fr !important;
  gap: 16px !important;
  align-items: center !important;
  min-height: 78px !important;
}

.discord-member-display .discord-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 17px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #5865F2, #404EED) !important;
  display: grid !important;
  place-items: center !important;
  box-shadow: 0 0 25px rgba(88,101,242,.45) !important;
}

.discord-member-display .discord-icon img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
}

.discord-member-display small {
  display: none !important;
}

#discordMembers,
.discord-member-display strong {
  font-size: 30px !important;
}

.ultra-terminal,
.terminal-lines,
#terminalLines {
  max-height: 115px !important;
  min-height: 80px !important;
}

.hero-actions a:hover {
  transform: translateY(-3px) scale(1.025) !important;
  filter: brightness(1.08) !important;
}

@media (max-width: 720px) {
  .hero-actions a {
    width: 100% !important;
  }
}


/* =========================================================
   WOODSTONE FINAL REAL PATCH
   ========================================================= */

/* Entfernt unnötige Bereiche */
.stats,
.hero-content .stats,
.ultra-tags,
.status-tags,
.premium-tags,
.server-tags,
.uptime-line,
#uptimeDemo {
  display: none !important;
}

/* Features & Systeme / Nav bleibt sauber */
.nav-links a {
  white-space: nowrap !important;
}

/* Hero Buttons final */
.hero-actions {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
}

.hero-actions a {
  min-height: 54px !important;
  padding: 16px 28px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* Jetzt spielen > */
.hero-actions .primary-btn,
.primary-btn {
  background: linear-gradient(135deg, #ffb15c 0%, #ff8420 48%, #ff5a00 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,185,95,.55) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.35) !important;
  box-shadow:
    0 0 34px rgba(255,107,0,.42),
    0 16px 45px rgba(255,107,0,.24),
    inset 0 1px 0 rgba(255,255,255,.35) !important;
}

/* Wie spiele ich? > */
.hero-actions .secondary-btn,
.hero-actions .einreise-btn,
.hero-actions .secondary-btn.einreise-btn {
  background: linear-gradient(135deg, #8e4212 0%, #c76520 50%, #ff8a22 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,160,70,.58) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.35) !important;
  box-shadow:
    0 0 28px rgba(255,138,34,.35),
    0 14px 40px rgba(170,75,15,.25),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

/* Discord */
.hero-actions .discord-btn,
.nav-actions .nav-button {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(190,195,255,.44) !important;
  box-shadow:
    0 0 30px rgba(88,101,242,.42),
    0 14px 40px rgba(88,101,242,.25),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}

/* Server unterstützen ♥ */
.hero-actions .shop-btn,
.hero-actions .support-btn,
.hero-actions .shop-btn.support-btn {
  background: linear-gradient(135deg, #fff07a 0%, #ffd12f 50%, #ffb300 100%) !important;
  color: #111111 !important;
  border: 1px solid rgba(255,236,110,.70) !important;
  text-shadow: none !important;
  box-shadow:
    0 0 34px rgba(255,210,45,.42),
    0 16px 45px rgba(255,180,0,.22),
    inset 0 1px 0 rgba(255,255,255,.45) !important;
}

/* Top Button weiß */
.play-button,
.nav-actions .play-button {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,.35) !important;
}

/* Discord Icon */
.ws-discord-logo,
.btn-discord-logo,
.discord-btn img,
.nav-button img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
  display: inline-block !important;
}

/* Discord Community cleaner */
.discord-member-display small {
  display: none !important;
}

#discordMembers,
.discord-member-display strong {
  font-size: 28px !important;
}

/* Statusring echte Farben */
.server-online .status-ring,
.status-ring.server-online {
  filter: drop-shadow(0 0 22px rgba(92,255,146,.55)) !important;
}

.server-online .ring-progress,
.status-ring.server-online .ring-progress {
  stroke: #5cff92 !important;
  filter: drop-shadow(0 0 10px rgba(92,255,146,.75)) !important;
}

.server-offline .status-ring,
.status-ring.server-offline {
  filter: drop-shadow(0 0 22px rgba(255,91,91,.55)) !important;
}

.server-offline .ring-progress,
.status-ring.server-offline .ring-progress {
  stroke: #ff5b5b !important;
  filter: drop-shadow(0 0 10px rgba(255,91,91,.75)) !important;
}

.server-restart .status-ring,
.status-ring.server-restart {
  filter: drop-shadow(0 0 22px rgba(255,188,92,.58)) !important;
}

.server-restart .ring-progress,
.status-ring.server-restart .ring-progress {
  stroke: #ffbc5c !important;
  filter: drop-shadow(0 0 10px rgba(255,188,92,.75)) !important;
}

.server-online .status-ring::after {
  content: "LIVE" !important;
  background: rgba(92,255,146,.12) !important;
  border-color: rgba(92,255,146,.28) !important;
  color: #baffcf !important;
}

.server-offline .status-ring::after {
  content: "OFFLINE" !important;
  background: rgba(255,91,91,.12) !important;
  border-color: rgba(255,91,91,.28) !important;
  color: #ffb4b4 !important;
}

.server-restart .status-ring::after {
  content: "RESTART" !important;
  background: rgba(255,188,92,.12) !important;
  border-color: rgba(255,188,92,.28) !important;
  color: #ffd89a !important;
}

/* Hintergrundlogo etwas sichtbarer */
.experience-hero::before {
  opacity: .14 !important;
}

@media (max-width: 720px) {
  .hero-actions a {
    width: 100% !important;
  }
}


.launch-badge{
display:inline-flex;
margin-bottom:18px;
padding:10px 18px;
border-radius:999px;
background:rgba(255,120,0,.12);
border:1px solid rgba(255,140,0,.35);
color:#ffcf8a;
font-weight:800;
letter-spacing:2px;
text-transform:uppercase;
box-shadow:0 0 20px rgba(255,120,0,.2);
}


/* =========================================================
   WOODSTONE PREMIUM LAUNCH SOON BADGE
   data-remove-when-live: Diesen HTML-Block später einfach löschen.
   ========================================================= */

.launch-soon-premium{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  width:max-content;
  max-width:100%;
  padding:9px 18px;
  margin:0 0 18px;
  border-radius:999px;
  position:relative;
  overflow:hidden;
  color:#ffd591;
  font-size:12px;
  font-weight:900;
  letter-spacing:3.2px;
  text-transform:uppercase;
  background:
    linear-gradient(135deg, rgba(255,160,54,.16), rgba(255,107,0,.06)),
    rgba(5,4,3,.48);
  border:1px solid rgba(255,150,42,.34);
  box-shadow:
    0 0 28px rgba(255,107,0,.18),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(12px);
}

.launch-soon-premium::before{
  content:"";
  position:absolute;
  inset:0;
  transform:translateX(-120%);
  background:linear-gradient(90deg, transparent, rgba(255,220,150,.18), transparent);
  animation:launchBadgeSweep 3.4s ease-in-out infinite;
}

.launch-soon-premium .launch-text{
  position:relative;
  z-index:1;
  text-shadow:0 0 18px rgba(255,145,40,.35);
}

.launch-soon-premium .launch-line{
  position:relative;
  z-index:1;
  width:28px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,188,92,.95), transparent);
  box-shadow:0 0 14px rgba(255,160,54,.55);
}

.intro .launch-soon-premium,
.clean-intro .launch-soon-premium{
  margin:0 auto 22px;
  transform:translateY(-4px);
}

.hero-content .launch-soon-premium{
  margin-top:6px;
  margin-bottom:18px;
}

@keyframes launchBadgeSweep{
  0%, 42%{ transform:translateX(-120%); opacity:0; }
  52%{ opacity:1; }
  72%, 100%{ transform:translateX(120%); opacity:0; }
}

@media (max-width:720px){
  .launch-soon-premium{
    font-size:10px;
    letter-spacing:2.4px;
    padding:8px 14px;
  }
  .launch-soon-premium .launch-line{
    width:18px;
  }
}



/* =========================================================
   WOODSTONE CLEAN PREMIUM LAUNCH BADGE
   Entfernen nach Livegang:
   In index.html nach data-remove-when-live suchen und beide Blöcke löschen.
   ========================================================= */

.launch-soon-badge{
  display:none!important;
}

.launch-soon-premium{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:max-content!important;
  max-width:100%!important;
  padding:8px 16px!important;
  margin:0 0 18px!important;
  border-radius:999px!important;
  position:relative!important;
  overflow:hidden!important;
  color:#f6c071!important;
  font-size:11px!important;
  font-weight:900!important;
  letter-spacing:3px!important;
  text-transform:uppercase!important;
  background:rgba(8,6,4,.46)!important;
  border:1px solid rgba(246,160,58,.34)!important;
  box-shadow:
    0 0 18px rgba(255,107,0,.12),
    inset 0 1px 0 rgba(255,255,255,.08)!important;
  backdrop-filter:blur(10px)!important;
}

.launch-soon-premium::before,
.launch-soon-premium::after{
  content:""!important;
  display:block!important;
  width:26px!important;
  height:1px!important;
  margin:0 12px!important;
  background:linear-gradient(90deg, transparent, rgba(246,160,58,.8), transparent)!important;
  box-shadow:0 0 10px rgba(246,160,58,.35)!important;
}

.launch-soon-premium span{
  position:relative!important;
  z-index:1!important;
  text-shadow:0 0 12px rgba(246,160,58,.28)!important;
}

.intro .launch-soon-premium,
.clean-intro .launch-soon-premium{
  margin:0 auto 22px!important;
}

.hero-content .launch-soon-premium{
  margin-top:10px!important;
  margin-bottom:18px!important;
}

/* Alte Sweep/Line-Elemente komplett entschärfen */
.launch-soon-premium .launch-line,
.launch-soon-premium .launch-text{
  all:unset!important;
}

@media (max-width:720px){
  .launch-soon-premium{
    font-size:10px!important;
    letter-spacing:2.3px!important;
    padding:7px 13px!important;
  }
  .launch-soon-premium::before,
  .launch-soon-premium::after{
    width:18px!important;
    margin:0 9px!important;
  }
}


/* =========================================================
   WOODSTONE LAUNCH SOON HARD FIX
   Entfernen: in index.html nach data-remove-when-live suchen und beide Blöcke löschen.
   ========================================================= */

/* Alle alten Launch-Soon Varianten sicher deaktivieren */
.launch-soon-badge,
.launch-soon-premium {
  display: none !important;
}

/* Neuer cleaner Launch-Soon Stil */
.ws-launch-label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: max-content !important;
  max-width: 100% !important;
  padding: 7px 15px !important;
  margin: 0 auto 20px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #f4c170 !important;
  background: rgba(0,0,0,.28) !important;
  border: 1px solid rgba(244,193,112,.34) !important;
  box-shadow: 0 0 18px rgba(255,107,0,.12) !important;
  text-shadow: none !important;
  backdrop-filter: blur(8px) !important;
}

.ws-launch-label::before,
.ws-launch-label::after {
  content: "" !important;
  width: 22px !important;
  height: 1px !important;
  margin: 0 10px !important;
  background: linear-gradient(90deg, transparent, rgba(244,193,112,.75), transparent) !important;
}

/* Intro sauber zentriert */
.intro .ws-launch-label,
.clean-intro .ws-launch-label {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 20px !important;
}

/* Normale Startseite unter Community-Badge */
.hero-content .ws-launch-label-hero {
  margin: 12px 0 18px !important;
}

@media (max-width:720px) {
  .ws-launch-label {
    font-size: 10px !important;
    letter-spacing: 2.2px !important;
    padding: 7px 12px !important;
  }

  .ws-launch-label::before,
  .ws-launch-label::after {
    width: 16px !important;
    margin: 0 8px !important;
  }
}


/* =========================================================
   WOODSTONE V6 BACKGROUND + WATERMARK REAL FIX
   Neuer Background liegt in assets/background.jpg
   ========================================================= */

/* Neuer Hintergrund sauber sichtbar und perfekt ausgerichtet */
body {
  background:
    linear-gradient(90deg, rgba(5,4,3,.93) 0%, rgba(5,4,3,.46) 42%, rgba(5,4,3,.90) 100%),
    linear-gradient(180deg, rgba(5,4,3,.06) 0%, rgba(5,4,3,.86) 100%),
    url("../assets/background.jpg") center center / cover fixed no-repeat !important;
}

/* Overlay etwas dezenter, damit der neue Background besser sichtbar bleibt */
body::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(255,107,0,.16), transparent 32%),
    radial-gradient(circle at 84% 38%, rgba(214,154,58,.12), transparent 36%),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.42)) !important;
}

/* Woodstone-Wasserzeichen auf der Startseite bleibt beim Scrollen stabil im Hintergrund */
.experience-hero::before {
  position: fixed !important;
  right: 9vw !important;
  top: 55% !important;
  width: min(44vw, 720px) !important;
  aspect-ratio: 1 !important;
  transform: translateY(-50%) !important;
  background: url("../assets/logo.png") center/contain no-repeat !important;
  opacity: .135 !important;
  z-index: 0 !important;
  filter: drop-shadow(0 0 75px rgba(255,107,0,.62)) !important;
  pointer-events: none !important;
}

/* Wasserzeichen auf Unterseiten ebenfalls stabil und besser sichtbar */
.page-hero::after {
  position: fixed !important;
  right: 8vw !important;
  top: 55% !important;
  bottom: auto !important;
  width: min(36vw, 520px) !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  background: url("../assets/logo.png") center/contain no-repeat !important;
  opacity: .115 !important;
  z-index: 0 !important;
  filter: drop-shadow(0 0 65px rgba(255,107,0,.55)) !important;
  pointer-events: none !important;
}

/* Inhalt bleibt immer über dem Hintergrundlogo */
.hero-content,
.command-panel,
.page-hero > *,
.section,
.wiki-layout,
.team-grid,
.legal-layout,
footer {
  position: relative !important;
  z-index: 2 !important;
}

/* Mobile: Wasserzeichen deaktivieren/entschärfen, damit nichts stört */
@media (max-width: 900px) {
  .experience-hero::before,
  .page-hero::after {
    opacity: .055 !important;
    right: -18vw !important;
    width: 92vw !important;
  }

  body {
    background:
      linear-gradient(180deg, rgba(5,4,3,.76), rgba(5,4,3,.93)),
      url("../assets/background.jpg") center center / cover scroll no-repeat !important;
  }
}


/* =========================================================
   WOODSTONE PRECISE WATERMARK REMOVAL
   Entfernt nur das große Logo-Wasserzeichen.
   Discord/Icon-Elemente bleiben unberührt.
   ========================================================= */

.experience-hero::before {
  display: none !important;
  opacity: 0 !important;
  background-image: none !important;
}

.page-hero::after {
  display: none !important;
  opacity: 0 !important;
  background-image: none !important;
}
/* REGELWERK MOBILE FIX */

@media (max-width: 900px) {
  .wiki-layout {
    display: block !important;
    padding: 0 16px !important;
  }

  .wiki-nav {
    position: sticky !important;
    top: 80px !important;
    z-index: 20 !important;
    display: flex !important;
    overflow-x: auto !important;
    gap: 10px !important;
    padding: 12px !important;
    margin-bottom: 20px !important;
    border-radius: 18px !important;
    background: rgba(10, 8, 6, 0.88) !important;
    backdrop-filter: blur(12px) !important;
  }

  .wiki-nav a {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
  }

  .wiki-content {
    width: 100% !important;
  }

  .rule-block {
    width: 100% !important;
    padding: 22px 18px !important;
    margin-bottom: 18px !important;
  }

  .rule-clean h2 {
    font-size: 24px !important;
  }

  .rule-clean h3 {
    font-size: 18px !important;
  }

  .rule-clean p,
  .rule-clean li {
    font-size: 14.5px !important;
    line-height: 1.75 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
}
/* REGELWERK MOBILE REVEAL FIX */

@media (max-width: 900px) {
  .wiki-layout .rule-block,
  .wiki-layout .rule-block.reveal {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* REGELWERK MOBILE REVEAL + BLUR FIX */

@media (max-width: 900px) {
  .wiki-layout .rule-block,
  .wiki-layout .rule-block.reveal,
  .wiki-layout .rule-block.visible {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    filter: none !important;
    blur: none !important;
  }
}