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

:root {
  --bg: #0b0d13;
  --bg-soft: #11141d;
  --surface: rgba(24, 27, 38, 0.78);
  --surface-solid: #171a24;
  --surface-light: #202331;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f7ff;
  --muted: #aeb4c4;
  --discord: #5865f2;
  --discord-light: #7983f5;
  --green: #23a559;
  --red: #ed4245;
  --orange: #f0a72f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(88, 101, 242, 0.09), transparent 28%),
    radial-gradient(circle at 80% 35%, rgba(88, 101, 242, 0.07), transparent 28%),
    var(--bg);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.background-glow {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.11;
  pointer-events: none;
}

.background-glow--one {
  top: 180px;
  left: -240px;
  background: #5865f2;
}

.background-glow--two {
  right: -240px;
  bottom: -120px;
  background: #8a5cf6;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 76px;
  margin: 18px auto 0;
  padding: 12px 16px 12px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(13, 15, 22, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}

.navbar.scrolled {
  margin-top: 8px;
  background: rgba(13, 15, 22, 0.93);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__logo {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--discord-light), #4752c4);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand__text strong {
  font-size: 15px;
  font-weight: 800;
}

.brand__text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  padding: 10px 13px;
  color: #bec3d0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-light);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: #fff;
  transition: 0.25s ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 11px;
  font-size: 13px;
}

.button--primary,
.button--discord {
  background: linear-gradient(145deg, #6670f5, #4e5bdc);
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.25);
}

.button--primary:hover,
.button--discord:hover {
  background: linear-gradient(145deg, #7580ff, #5965ec);
  box-shadow: 0 16px 38px rgba(88, 101, 242, 0.34);
}

.button--secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.045);
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
}

.button--white {
  color: #3d44aa;
  background: #fff;
}

.button--white:hover {
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.22);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 108px 0;
}

.hero {
  display: grid;
  min-height: calc(100vh - 110px);
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 62px;
  padding-top: 72px;
  padding-bottom: 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  color: #aeb6ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.55px;
  text-transform: uppercase;
}

.status-dot,
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(35, 165, 89, 0.12);
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -4.2px;
  line-height: 0.98;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #8290ff, #b9a2ff 55%, #8390ff);
  background-clip: text;
  -webkit-background-clip: text;
}


.hero__claim {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding: 12px 15px;
  border: 1px solid rgba(127, 139, 255, 0.22);
  border-radius: 15px;
  background: rgba(88, 101, 242, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__claim > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #6670f5, #4e5bdc);
  box-shadow: 0 10px 25px rgba(88, 101, 242, 0.25);
  font-size: 13px;
  font-weight: 900;
}

.hero__claim strong,
.hero__claim small {
  display: block;
}

.hero__claim strong {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero__claim small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.hero__description {
  max-width: 620px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__facts {
  display: flex;
  gap: 34px;
  margin-top: 48px;
}

.hero__facts div {
  display: flex;
  flex-direction: column;
}

.hero__facts strong {
  font-size: 21px;
}

.hero__facts span {
  color: #858c9c;
  font-size: 11px;
  font-weight: 600;
}

.hero__visual {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}

.discord-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #313338;
  box-shadow: var(--shadow);
  transform: rotateY(-3deg) rotateX(1deg);
}

.discord-window__topbar {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #aaaeb8;
  background: #1e1f22;
  font-size: 10px;
  font-weight: 600;
}

.window-dots {
  position: absolute;
  left: 15px;
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42454c;
}

.window-dots span:first-child { background: #f26c6c; }
.window-dots span:nth-child(2) { background: #f1bd50; }
.window-dots span:nth-child(3) { background: #55c374; }

.discord-window__body {
  display: grid;
  height: 445px;
  grid-template-columns: 54px 130px minmax(250px, 1fr) 105px;
}

.server-rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  background: #1e1f22;
}

.server-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #b5bac1;
  background: #313338;
  font-size: 11px;
  font-weight: 800;
  transition: 0.2s ease;
}

.server-icon--active {
  color: #fff;
  border-radius: 12px;
  background: #5865f2;
}

.channel-list {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 0 6px 72px;
  background: #2b2d31;
}

.server-title {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  margin: 0 -6px 7px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  color: #f2f3f5;
  font-size: 10px;
  font-weight: 700;
}

.channel-category {
  margin: 10px 4px 4px;
  color: #969ba5;
  font-size: 7px;
  font-weight: 800;
}

.channel {
  margin: 1px 0;
  padding: 5px 7px;
  border-radius: 4px;
  color: #949ba4;
  font-size: 8px;
  font-weight: 600;
}

.channel.active {
  color: #f2f3f5;
  background: #404249;
}

.voice-box {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 58px;
  align-items: center;
  gap: 7px;
  padding: 8px;
  background: #232428;
}

.voice-box__icon {
  color: #23a559;
  font-size: 12px;
}

.voice-box strong,
.voice-box small {
  display: block;
  font-size: 7px;
  line-height: 1.4;
}

.voice-box strong { color: #23a559; }
.voice-box small { color: #b5bac1; }

.chat-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #313338;
}

.chat-panel__header {
  display: flex;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.chat-panel__header strong {
  display: block;
  font-size: 9px;
}

.chat-panel__header span {
  display: block;
  margin-top: 1px;
  color: #949ba4;
  font-size: 6px;
}

.header-icons {
  color: #b5bac1;
  font-size: 10px;
}

.chat-messages {
  display: flex;
  overflow: hidden;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 19px;
  padding: 14px 12px;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.avatar {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #5865f2, #8a5cf6);
  font-size: 9px;
  font-weight: 800;
}

.avatar--bot {
  background: linear-gradient(145deg, #23a559, #168245);
}

.avatar--small {
  width: 23px;
  height: 23px;
  font-size: 7px;
}

.avatar--red { background: linear-gradient(145deg, #ed4245, #b83234); }
.avatar--blue { background: linear-gradient(145deg, #5865f2, #3d48bb); }
.avatar--green { background: linear-gradient(145deg, #23a559, #17763f); }

.message__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.message__meta strong {
  font-size: 8px;
}

.message__meta small {
  color: #949ba4;
  font-size: 6px;
}

.bot-tag {
  padding: 2px 3px;
  border-radius: 2px;
  background: #5865f2;
  font-size: 5px;
  font-weight: 800;
}

.message p {
  margin-top: 4px;
  color: #dbdee1;
  font-size: 7px;
  line-height: 1.55;
}

.message-card {
  width: 180px;
  margin-top: 8px;
  padding: 10px;
  border-left: 3px solid #23a559;
  border-radius: 4px;
  background: #2b2d31;
}

.message-card > span {
  display: block;
  color: #949ba4;
  font-size: 5px;
  font-weight: 800;
}

.message-card strong {
  display: block;
  margin: 3px 0;
  font-size: 7px;
}

.message-card small {
  color: #b5bac1;
  font-size: 6px;
}

.message-card .online-dot {
  width: 5px;
  height: 5px;
  box-shadow: none;
}

.chat-input {
  height: 32px;
  flex-shrink: 0;
  margin: 0 10px 12px;
  padding: 9px 11px;
  border-radius: 7px;
  color: #737881;
  background: #383a40;
  font-size: 7px;
}

.member-list {
  padding: 13px 8px;
  background: #2b2d31;
}

.member-category {
  margin: 10px 2px 6px;
  color: #949ba4;
  font-size: 6px;
  font-weight: 800;
}

.member {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  padding: 4px;
  border-radius: 5px;
}

.member strong,
.member small {
  display: block;
  overflow: hidden;
  max-width: 60px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member strong {
  font-size: 6px;
}

.member small {
  color: #949ba4;
  font-size: 5px;
}

.member.muted {
  opacity: 0.55;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(20, 23, 32, 0.88);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(15px);
}

.floating-card--status {
  top: -22px;
  right: -18px;
  gap: 10px;
  padding: 11px 15px;
}

.floating-card--players {
  bottom: -28px;
  left: -26px;
  display: block;
  min-width: 170px;
  padding: 13px 15px;
}

.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}

.floating-card strong {
  display: block;
  margin-top: 1px;
  font-size: 13px;
}

.pulse-icon {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.pulse-icon::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(35, 165, 89, 0.42);
  border-radius: 50%;
  content: "";
  animation: pulse 1.7s infinite;
}

.player-bar {
  overflow: hidden;
  height: 4px;
  margin-top: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

.player-bar span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5865f2, #8a7ff5);
  transition: width 0.5s ease;
}

.trust-strip {
  display: flex;
  width: min(calc(100% - 48px), var(--max-width));
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 38px;
  margin: 0 auto;
  padding: 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #8f96a6;
  font-size: 12px;
  font-weight: 600;
}

.section--center {
  text-align: center;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.status-panel h2,
.cta-section h2 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 850;
  letter-spacing: -2.4px;
  line-height: 1.08;
}

.section-heading p,
.status-panel__content > p,
.cta-section p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 282px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(88, 101, 242, 0.08);
  filter: blur(10px);
  content: "";
}

.feature-card:hover {
  border-color: rgba(116, 129, 255, 0.3);
  background:
    linear-gradient(155deg, rgba(88, 101, 242, 0.1), rgba(255, 255, 255, 0.015)),
    var(--surface);
  transform: translateY(-5px);
}

.feature-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(116, 129, 255, 0.22);
  border-radius: 14px;
  background: rgba(88, 101, 242, 0.1);
  font-size: 21px;
}

.feature-card h3 {
  margin-top: 22px;
  font-size: 18px;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.feature-link {
  position: absolute;
  bottom: 23px;
  left: 26px;
  color: #9fa8ff;
  font-size: 11px;
  font-weight: 700;
}

.status-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.status-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  min-height: 460px;
  padding: 55px;
  border: 1px solid rgba(115, 126, 255, 0.25);
  border-radius: 30px;
  background:
    linear-gradient(125deg, rgba(88, 101, 242, 0.18), transparent 55%),
    #12151f;
  box-shadow: var(--shadow);
}

.status-panel__content {
  position: relative;
  z-index: 2;
}

.status-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin-top: 32px;
}

.status-values > div {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.status-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}

.status-values strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

.status-label .online-dot {
  width: 6px;
  height: 6px;
  box-shadow: none;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 27px;
}

.status-panel__graphic {
  display: grid;
  min-height: 330px;
  place-items: center;
}

.radar {
  position: relative;
  width: 270px;
  height: 270px;
  overflow: hidden;
  border: 1px solid rgba(128, 139, 255, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(rgba(88, 101, 242, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 101, 242, 0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(88, 101, 242, 0.15), rgba(7, 8, 14, 0.15) 62%);
  background-size: 24px 24px, 24px 24px, auto;
  box-shadow: inset 0 0 60px rgba(88, 101, 242, 0.09), 0 0 90px rgba(88, 101, 242, 0.12);
}

.radar__ring {
  position: absolute;
  border: 1px solid rgba(117, 129, 255, 0.18);
  border-radius: 50%;
}

.radar__ring--one { inset: 34px; }
.radar__ring--two { inset: 72px; }
.radar__ring--three { inset: 106px; }

.radar__sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(102, 113, 245, 0.32) 38deg, transparent 70deg);
  animation: radar 4.5s linear infinite;
}

.radar__center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #5865f2;
  box-shadow: 0 0 40px rgba(88, 101, 242, 0.5);
  font-size: 16px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: left;
}

.rule-card {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.rule-card > span {
  color: #7782f4;
  font-size: 11px;
  font-weight: 800;
}

.rule-card h3 {
  margin-top: 25px;
  font-size: 17px;
}

.rule-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.rules-button {
  margin-top: 34px;
}

.team-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.team-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 60px;
  padding: 55px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 40%, rgba(88, 101, 242, 0.1), transparent 35%),
    rgba(255, 255, 255, 0.018);
}

.section-heading--left .button {
  margin-top: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.team-card {
  display: flex;
  min-height: 146px;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(18, 21, 30, 0.8);
}

.team-avatar {
  display: grid;
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 900;
}

.team-avatar--purple { background: linear-gradient(145deg, #6e74f5, #7f56d9); }
.team-avatar--blue { background: linear-gradient(145deg, #4a8cf0, #3f5bbf); }
.team-avatar--green { background: linear-gradient(145deg, #27b36a, #177543); }
.team-avatar--orange { background: linear-gradient(145deg, #f0a72f, #bb641d); }

.role-badge {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.role-badge--red { color: #ff9b9d; background: rgba(237, 66, 69, 0.12); }
.role-badge--blue { color: #aab2ff; background: rgba(88, 101, 242, 0.14); }
.role-badge--green { color: #7ce6ac; background: rgba(35, 165, 89, 0.14); }
.role-badge--orange { color: #ffc778; background: rgba(240, 167, 47, 0.14); }

.team-card h3 {
  margin-top: 7px;
  font-size: 15px;
}

.team-card p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.022);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  color: #aeb6ff;
  background: rgba(88, 101, 242, 0.1);
  font-size: 17px;
  transition: transform 0.25s ease;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 21px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 20px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 110px;
  padding: 55px;
  border-radius: 28px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.13), transparent 55%),
    linear-gradient(135deg, #5865f2, #6d4cc7);
  box-shadow: 0 30px 80px rgba(88, 101, 242, 0.22);
}

.cta-section > div:first-child {
  max-width: 700px;
}

.cta-section .eyebrow,
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-section__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  padding: 60px max(24px, calc((100vw - var(--max-width)) / 2)) 28px;
  border-top: 1px solid var(--border);
  background: #090b10;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.footer__links div {
  display: flex;
  min-width: 110px;
  flex-direction: column;
  gap: 9px;
}

.footer__links strong {
  margin-bottom: 5px;
  font-size: 11px;
}

.footer__links a {
  color: #7f8695;
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: #676d7a;
  font-size: 9px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #20232f;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.55); }
  100% { opacity: 0; transform: scale(1.25); }
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }

  .hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
  }

  .hero__description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__actions,
  .hero__facts {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 760px);
    margin: 15px auto 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-layout {
    grid-template-columns: 1fr;
  }

  .section-heading--left {
    max-width: 700px;
  }

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

  .status-panel__graphic {
    display: none;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .navbar {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .desktop-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 96px;
    right: 14px;
    left: 14px;
    display: flex;
    max-height: 0;
    overflow: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 17px;
    background: rgba(14, 16, 23, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-links.open {
    max-height: 420px;
    padding: 13px 12px;
    border-color: var(--border);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px;
  }

  .nav-toggle.active span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .section,
  .trust-strip {
    width: min(calc(100% - 30px), var(--max-width));
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .discord-window__body {
    grid-template-columns: 48px 122px minmax(240px, 1fr);
  }

  .member-list {
    display: none;
  }

  .floating-card--status {
    right: -6px;
  }

  .floating-card--players {
    left: -6px;
  }

  .status-panel,
  .team-layout,
  .cta-section {
    padding: 38px;
  }

  .status-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__links {
    width: 100%;
    gap: 35px;
  }
}

@media (max-width: 620px) {

  .hero__claim {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
  .navbar {
    min-height: 66px;
    margin-top: 10px;
    padding: 9px 10px 9px 12px;
  }

  .brand__logo {
    width: 39px;
    height: 39px;
  }

  .nav-links {
    top: 84px;
  }

  .hero {
    gap: 48px;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -2.6px;
  }

  .hero__description {
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    gap: 18px;
    justify-content: space-between;
  }

  .hero__facts strong {
    font-size: 17px;
  }

  .hero__facts span {
    font-size: 9px;
  }

  .hero__visual {
    width: 100%;
  }

  .discord-window {
    border-radius: 16px;
    transform: none;
  }

  .discord-window__body {
    height: 395px;
    grid-template-columns: 42px 1fr;
  }

  .channel-list {
    display: none;
  }

  .chat-panel__header {
    height: 44px;
  }

  .floating-card {
    display: none;
  }

  .trust-strip {
    gap: 12px 20px;
    font-size: 10px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .status-panel h2,
  .cta-section h2 {
    font-size: 33px;
    letter-spacing: -1.7px;
  }

  .section-heading p,
  .status-panel__content > p,
  .cta-section p {
    font-size: 13px;
  }

  .feature-grid,
  .rule-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 260px;
  }

  .status-panel,
  .team-layout,
  .cta-section {
    padding: 27px 22px;
    border-radius: 21px;
  }

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

  .status-actions {
    flex-direction: column;
  }

  .status-actions .button {
    width: 100%;
  }

  .team-card {
    min-height: 125px;
  }

  .cta-section {
    margin-bottom: 70px;
  }

  .cta-section__actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-section__actions .button {
    width: 100%;
  }

  .footer {
    padding-top: 48px;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Eigene Kategorieseiten */
.subpage-hero {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 70px;
  padding-top: 95px;
  padding-bottom: 55px;
}

.subpage-hero__content {
  max-width: 760px;
}

.subpage-hero h1 {
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
}

.subpage-hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #8290ff, #b9a2ff 55%, #8390ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.subpage-hero__content > p {
  max-width: 670px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.subpage-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.subpage-hero__badge {
  position: relative;
  display: grid;
  width: 290px;
  height: 290px;
  place-content: center;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(126, 137, 255, 0.25);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent),
    radial-gradient(circle at 30% 20%, rgba(139, 126, 255, 0.35), transparent 45%),
    #151824;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.38);
  text-align: center;
  transform: rotate(3deg);
}

.subpage-hero__badge::before,
.subpage-hero__badge::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.subpage-hero__badge::before {
  inset: 35px;
}

.subpage-hero__badge::after {
  inset: 74px;
}

.subpage-hero__badge > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin: 0 auto 17px;
  border-radius: 25px;
  background: linear-gradient(145deg, #6d78ff, #4c57cf);
  box-shadow: 0 18px 45px rgba(88, 101, 242, 0.42);
  font-size: 23px;
  font-weight: 900;
}

.subpage-hero__badge strong,
.subpage-hero__badge small {
  position: relative;
  z-index: 2;
  display: block;
}

.subpage-hero__badge strong {
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.subpage-hero__badge small {
  margin-top: 3px;
  color: #9da4b5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

body[data-page]:not([data-page="index.html"]) main > .section:not(.subpage-hero):first-of-type {
  padding-top: 60px;
}

@media (max-width: 900px) {
  .subpage-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 90px;
    text-align: center;
  }

  .subpage-hero__content {
    margin: 0 auto;
  }

  .subpage-hero__content > p {
    margin-right: auto;
    margin-left: auto;
  }

  .subpage-hero__actions {
    justify-content: center;
  }

  .subpage-hero__badge {
    width: 230px;
    height: 230px;
    justify-self: center;
    border-radius: 31px;
  }
}

@media (max-width: 620px) {
  .subpage-hero {
    padding-top: 65px;
    padding-bottom: 30px;
  }

  .subpage-hero h1 {
    font-size: clamp(40px, 12vw, 55px);
    letter-spacing: -2.6px;
  }

  .subpage-hero__content > p {
    font-size: 14px;
  }

  .subpage-hero__actions {
    flex-direction: column;
  }

  .subpage-hero__actions .button {
    width: 100%;
  }

  .subpage-hero__badge {
    width: 195px;
    height: 195px;
  }

  .subpage-hero__badge > span {
    width: 66px;
    height: 66px;
    border-radius: 20px;
  }
}


/* Kategorisierte Teamliste */
.categorized-roster {
  padding-top: 62px;
}

.section-heading--team {
  max-width: 790px;
  text-align: center;
}

.team-category-list {
  display: grid;
  gap: 34px;
}

.team-category {
  --category-color: #5865f2;
  --category-rgb: 88, 101, 242;
  padding: 24px;
  border: 1px solid rgba(var(--category-rgb), 0.2);
  border-radius: 24px;
  background:
    linear-gradient(130deg, rgba(var(--category-rgb), 0.075), transparent 42%),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18);
}

.team-category--highteam,
.team-category--management {
  --category-color: #ed4245;
  --category-rgb: 237, 66, 69;
}

.team-category--teamleitung {
  --category-color: #20d6d2;
  --category-rgb: 32, 214, 210;
}

.team-category--community-management,
.team-category--eventmanager {
  --category-color: #f39c35;
  --category-rgb: 243, 156, 53;
}

.team-category--frakverwaltung,
.team-category--social-media {
  --category-color: #f5d547;
  --category-rgb: 245, 213, 71;
}

.team-category--entwicklung {
  --category-color: #9b59f6;
  --category-rgb: 155, 89, 246;
}

.team-category--analysten {
  --category-color: #f05ac8;
  --category-rgb: 240, 90, 200;
}

.team-category--supporter {
  --category-color: #23a559;
  --category-rgb: 35, 165, 89;
}

.team-category--guide {
  --category-color: #101217;
  --category-rgb: 16, 18, 23;
  border-color: rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.045), transparent 42%),
    #0d0f14;
}

.team-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding: 0 2px;
}

.team-category__title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.team-category__line {
  width: 7px;
  height: 51px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--category-color);
  box-shadow: 0 0 25px rgba(var(--category-rgb), 0.42);
}

.team-category__label {
  display: block;
  color: var(--category-color);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.team-category__header h2 {
  margin-top: 2px;
  font-size: clamp(22px, 3vw, 29px);
  letter-spacing: -0.9px;
  line-height: 1.15;
}

.team-category__count {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(var(--category-rgb), 0.22);
  border-radius: 999px;
  color: var(--category-color);
  background: rgba(var(--category-rgb), 0.085);
  font-size: 9px;
  font-weight: 800;
}

.team-category--guide .team-category__label,
.team-category--guide .team-category__count {
  color: #d7d9df;
}

.team-category--guide .team-category__count {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.team-category--guide .team-category__line {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.categorized-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.categorized-team-card {
  overflow: hidden;
  border: 1px solid rgba(var(--category-rgb), 0.16);
  border-radius: 19px;
  background:
    linear-gradient(160deg, rgba(var(--category-rgb), 0.06), transparent 62%),
    #141720;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.categorized-team-card:hover {
  border-color: rgba(var(--category-rgb), 0.4);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
  transform: translateY(-6px);
}

.categorized-team-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #202331;
}

.categorized-team-card__image::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(11, 13, 19, 0.88));
  content: "";
  pointer-events: none;
}

.categorized-team-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.categorized-team-card:hover .categorized-team-card__image img {
  transform: scale(1.045);
}

.categorized-team-card__online {
  position: absolute;
  right: 13px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(14, 17, 24, 0.78);
  backdrop-filter: blur(9px);
  font-size: 8px;
  font-weight: 750;
}

.categorized-team-card__online i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #23a559;
  box-shadow: 0 0 0 4px rgba(35, 165, 89, 0.12);
}

.categorized-team-card__body {
  padding: 19px;
}

.categorized-team-card__role {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(var(--category-rgb), 0.22);
  border-radius: 7px;
  color: var(--category-color);
  background: rgba(var(--category-rgb), 0.09);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.team-category--guide .categorized-team-card__role {
  color: #e4e5e9;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.categorized-team-card h3 {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.2;
}

.categorized-team-card p {
  min-height: 42px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.categorized-team-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 17px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #767e8f;
  font-size: 8px;
  font-weight: 750;
}

.categorized-team-card__mark {
  display: grid;
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--category-color);
  box-shadow: 0 8px 20px rgba(var(--category-rgb), 0.22);
  font-size: 7px;
  font-weight: 900;
}

.team-category--frakverwaltung .categorized-team-card__role,
.team-category--social-media .categorized-team-card__role,
.team-category--frakverwaltung .team-category__count,
.team-category--social-media .team-category__count {
  color: #f8df76;
}

.team-category--guide .categorized-team-card__mark {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #090b0f;
  box-shadow: none;
}

.team-application {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 38px;
  padding: 30px;
  border: 1px solid rgba(126, 137, 255, 0.19);
  border-radius: 21px;
  background:
    linear-gradient(120deg, rgba(88, 101, 242, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.025);
}

.team-application .eyebrow {
  margin-bottom: 8px;
}

.team-application h3 {
  font-size: 21px;
}

.team-application p {
  max-width: 720px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.team-application .button {
  flex: 0 0 auto;
}

@media (max-width: 1000px) {
  .categorized-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .team-category {
    padding: 18px;
    border-radius: 20px;
  }

  .team-category__header {
    align-items: flex-start;
  }

  .team-category__count {
    display: none;
  }

  .categorized-team-grid {
    grid-template-columns: 1fr;
  }

  .categorized-team-card__image {
    aspect-ratio: 16 / 11;
  }

  .team-application {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-application .button {
    width: 100%;
  }
}



/* Bewerbungsformular und interner Bewerbungseingang */
.application-hero {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 72px;
  padding-top: 90px;
  padding-bottom: 60px;
}

.application-hero__content {
  max-width: 780px;
}

.application-hero h1 {
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
}

.application-hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #8290ff, #b9a2ff 55%, #8390ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.application-hero__content > p {
  max-width: 690px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.application-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 27px;
}

.application-hero__facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #bec4d2;
  background: rgba(255, 255, 255, 0.03);
  font-size: 10px;
  font-weight: 650;
}

.application-hero__facts i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #23a559;
  box-shadow: 0 0 0 4px rgba(35, 165, 89, 0.12);
}

.application-info-card {
  padding: 30px;
  border: 1px solid rgba(126, 137, 255, 0.22);
  border-radius: 25px;
  background:
    radial-gradient(circle at 90% 0%, rgba(88, 101, 242, 0.18), transparent 40%),
    #141720;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.32);
}

.application-info-card__label {
  color: #aeb6ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.application-info-card ol {
  display: grid;
  gap: 17px;
  margin-top: 23px;
  list-style: none;
}

.application-info-card li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.application-info-card li > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: rgba(88, 101, 242, 0.18);
  font-size: 11px;
  font-weight: 850;
}

.application-info-card strong,
.application-info-card small {
  display: block;
}

.application-info-card strong {
  font-size: 12px;
}

.application-info-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.application-section {
  padding-top: 50px;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 25px;
}

.application-form {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 55%),
    #12151d;
  box-shadow: 0 25px 68px rgba(0, 0, 0, 0.24);
}

.application-form__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 28px;
}

.application-form__header .eyebrow {
  margin-bottom: 8px;
}

.application-form__header h2 {
  font-size: clamp(27px, 4vw, 39px);
  letter-spacing: -1.6px;
  line-height: 1.08;
}

.application-form__header p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.application-form__icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #6670f5, #4e5bdc);
  box-shadow: 0 13px 34px rgba(88, 101, 242, 0.28);
  font-size: 13px;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field > span,
.team-login-form label > span,
.application-entry__actions label > span {
  color: #c7cbd5;
  font-size: 10px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea,
.team-login-form input,
.team-search input,
.team-inbox__controls select,
.application-entry__actions select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  outline: none;
  color: var(--text);
  background: #191c26;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input,
.form-field select,
.team-login-form input,
.team-inbox__controls select,
.application-entry__actions select {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
  padding: 14px;
  border-radius: 12px;
  line-height: 1.65;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.team-login-form input::placeholder,
.team-search input::placeholder {
  color: #686f7e;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.team-login-form input:focus,
.team-search input:focus,
.team-inbox__controls select:focus,
.application-entry__actions select:focus {
  border-color: rgba(113, 126, 255, 0.75);
  background: #1b1f2b;
  box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.1);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: rgba(237, 66, 69, 0.8);
  box-shadow: 0 0 0 4px rgba(237, 66, 69, 0.08);
}

.field-error,
.consent-error {
  min-height: 15px;
  color: #ff8588;
  font-size: 9px;
}

.field-counter {
  align-self: flex-end;
  margin-top: -27px;
  margin-right: 10px;
  color: #747b89;
  font-size: 8px;
  pointer-events: none;
}

.application-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: #afb5c2;
  font-size: 10px;
  line-height: 1.55;
  cursor: pointer;
}

.consent-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: #5865f2;
}

.application-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 22px;
}

.form-message {
  display: none;
  margin-top: 17px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.55;
}

.form-message:not(:empty) {
  display: block;
}

.form-message--success {
  color: #8be1b0;
  border-color: rgba(35, 165, 89, 0.2);
  background: rgba(35, 165, 89, 0.08);
}

.form-message--error {
  color: #ff9c9e;
  border-color: rgba(237, 66, 69, 0.2);
  background: rgba(237, 66, 69, 0.08);
}

.form-message--loading {
  color: #b7beff;
  border-color: rgba(88, 101, 242, 0.2);
  background: rgba(88, 101, 242, 0.08);
}

.application-sidebar {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 15px;
}

.application-sidebar__card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.025);
}

.application-sidebar__card--accent {
  border-color: rgba(126, 137, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(88, 101, 242, 0.1), transparent),
    rgba(255, 255, 255, 0.02);
}

.application-sidebar__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #23a559;
  font-size: 14px;
  font-weight: 900;
}

.application-sidebar h3 {
  margin-top: 16px;
  font-size: 17px;
}

.application-sidebar ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-left: 17px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.application-sidebar p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.team-application__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.team-inbox-section {
  padding-top: 58px;
}

.team-inbox-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 25px;
}

.team-inbox-heading .eyebrow {
  margin-bottom: 8px;
}

.team-inbox-heading h2 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -2px;
  line-height: 1.05;
}

.team-inbox-heading p {
  max-width: 690px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.team-inbox-heading__badge {
  padding: 8px 11px;
  border: 1px solid rgba(237, 66, 69, 0.2);
  border-radius: 999px;
  color: #ff9ea0;
  background: rgba(237, 66, 69, 0.08);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.team-login-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border: 1px solid rgba(126, 137, 255, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(88, 101, 242, 0.1), transparent 56%),
    #12151d;
}

.team-login-panel__icon {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #6670f5, #4e5bdc);
  box-shadow: 0 16px 40px rgba(88, 101, 242, 0.3);
  font-size: 17px;
  font-weight: 900;
}

.team-login-panel__content {
  width: 100%;
}

.team-login-panel h3 {
  font-size: 21px;
}

.team-login-panel p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.team-login-panel code {
  color: #b5bdff;
  font-family: inherit;
}

.team-login-form {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.team-login-form label {
  display: flex;
  width: min(100%, 430px);
  flex-direction: column;
  gap: 7px;
}

.team-inbox[hidden],
.team-login-panel[hidden] {
  display: none;
}

.team-inbox__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #12151d;
}

.team-inbox__stats {
  display: flex;
  gap: 9px;
}

.team-inbox__stats div {
  min-width: 90px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.team-inbox__stats span,
.team-inbox__stats strong {
  display: block;
}

.team-inbox__stats span {
  color: var(--muted);
  font-size: 8px;
}

.team-inbox__stats strong {
  margin-top: 3px;
  font-size: 17px;
}

.team-inbox__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.team-search {
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: #191c26;
}

.team-search span {
  color: #777e8e;
}

.team-search input {
  min-height: 44px;
  padding: 0 11px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.team-search input:focus {
  background: transparent;
  box-shadow: none;
}

.team-inbox__controls select {
  width: auto;
  min-height: 44px;
}

.button--compact {
  min-height: 44px;
  padding: 0 14px;
  font-size: 10px;
}

.team-inbox__mode {
  margin-top: 12px;
  padding: 11px 13px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 9px;
  line-height: 1.5;
}

.team-inbox__mode--success {
  color: #91dfb3;
  border-color: rgba(35, 165, 89, 0.18);
  background: rgba(35, 165, 89, 0.07);
}

.team-inbox__mode--warning {
  color: #f4ca7d;
  border-color: rgba(240, 167, 47, 0.2);
  background: rgba(240, 167, 47, 0.07);
}

.team-inbox__list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.team-inbox-loading,
.team-inbox-error {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 15px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
  font-size: 11px;
}

.team-inbox-error {
  color: #ff9c9e;
  border-color: rgba(237, 66, 69, 0.2);
  background: rgba(237, 66, 69, 0.06);
}

.application-entry {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 19px;
  background:
    linear-gradient(150deg, rgba(88, 101, 242, 0.055), transparent 55%),
    #12151d;
}

.application-entry__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.application-entry__identity {
  display: flex;
  align-items: center;
  gap: 13px;
}

.application-entry__avatar {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #6670f5, #4e5bdc);
  font-size: 11px;
  font-weight: 900;
}

.application-entry__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.application-entry__title-row h3 {
  font-size: 17px;
}

.application-entry__identity p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.application-entry__meta {
  text-align: right;
}

.application-entry__meta strong,
.application-entry__meta span {
  display: block;
}

.application-entry__meta strong {
  color: #b8c0ff;
  font-size: 9px;
}

.application-entry__meta span {
  margin-top: 3px;
  color: #747b89;
  font-size: 8px;
}

.application-status {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 850;
}

.application-status--new {
  color: #b7beff;
  border-color: rgba(88, 101, 242, 0.2);
  background: rgba(88, 101, 242, 0.09);
}

.application-status--progress {
  color: #75dedb;
  border-color: rgba(32, 214, 210, 0.2);
  background: rgba(32, 214, 210, 0.08);
}

.application-status--interview {
  color: #f7c477;
  border-color: rgba(243, 156, 53, 0.2);
  background: rgba(243, 156, 53, 0.08);
}

.application-status--accepted {
  color: #83dfa9;
  border-color: rgba(35, 165, 89, 0.2);
  background: rgba(35, 165, 89, 0.08);
}

.application-status--rejected {
  color: #ff9294;
  border-color: rgba(237, 66, 69, 0.2);
  background: rgba(237, 66, 69, 0.08);
}

.application-entry__quickfacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding: 15px 20px;
}

.application-entry__quickfacts > span {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.022);
}

.application-entry__quickfacts small,
.application-entry__quickfacts strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.application-entry__quickfacts small {
  color: #747b89;
  font-size: 7px;
}

.application-entry__quickfacts strong {
  margin-top: 3px;
  font-size: 9px;
  white-space: nowrap;
}

.application-entry__details {
  margin: 0 20px 15px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.application-entry__details summary {
  padding: 12px 14px;
  color: #b8bfcf;
  font-size: 9px;
  font-weight: 750;
  cursor: pointer;
}

.application-entry__answers {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}

.application-entry__answers section {
  padding: 12px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.13);
}

.application-entry__answers h4 {
  color: #aeb6ff;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.application-entry__answers p {
  margin-top: 6px;
  color: #c1c6d0;
  font-size: 10px;
  line-height: 1.65;
}

.application-entry__actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 20px 20px;
}

.application-entry__actions label {
  display: flex;
  width: min(100%, 260px);
  flex-direction: column;
  gap: 6px;
}

.application-entry__actions select {
  min-height: 43px;
}

.team-inbox-empty {
  margin-top: 16px;
  padding: 45px 25px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.team-inbox-empty[hidden] {
  display: none;
}

.team-inbox-empty > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 14px;
  color: #aeb6ff;
  background: rgba(88, 101, 242, 0.1);
}

.team-inbox-empty h3 {
  color: var(--text);
  font-size: 16px;
}

.team-inbox-empty p {
  margin-top: 5px;
  font-size: 10px;
}

@media (max-width: 1000px) {
  .application-hero,
  .application-layout {
    grid-template-columns: 1fr;
  }

  .application-info-card {
    max-width: 650px;
  }

  .application-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-inbox__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .team-inbox__controls {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .application-hero {
    min-height: auto;
    padding-top: 70px;
  }

  .application-hero h1 {
    font-size: clamp(43px, 12vw, 60px);
    letter-spacing: -2.8px;
  }

  .application-form {
    padding: 23px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .application-form__header {
    align-items: flex-start;
  }

  .application-form__actions {
    flex-direction: column;
  }

  .application-form__actions .button {
    width: 100%;
  }

  .application-sidebar {
    grid-template-columns: 1fr;
  }

  .team-application__actions {
    width: 100%;
  }

  .team-application__actions .button {
    width: 100%;
  }

  .team-inbox-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-login-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-login-form {
    align-items: stretch;
    flex-direction: column;
  }

  .team-login-form .button {
    width: 100%;
  }

  .team-inbox__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .team-inbox__stats div {
    min-width: 0;
  }

  .team-inbox__controls {
    align-items: stretch;
    flex-direction: column;
  }

  .team-search {
    min-width: 0;
  }

  .team-inbox__controls select,
  .team-inbox__controls .button {
    width: 100%;
  }

  .application-entry__header {
    flex-direction: column;
  }

  .application-entry__meta {
    text-align: left;
  }

  .application-entry__quickfacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .application-entry__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .application-entry__actions label,
  .application-entry__actions .button {
    width: 100%;
  }
}



/* Bewerbungsstatus, Teamnachrichten und Gesprächstermine */
.application-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.application-status-section {
  padding-top: 46px;
  padding-bottom: 55px;
}

.application-status-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  align-items: stretch;
  gap: 22px;
}

.application-status-copy,
.application-status-result,
.application-status-placeholder {
  min-height: 430px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 58%),
    #12151d;
}

.application-status-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.application-status-copy .eyebrow {
  margin-bottom: 10px;
}

.application-status-copy h2 {
  max-width: 650px;
  font-size: clamp(30px, 4.5vw, 46px);
  letter-spacing: -2px;
  line-height: 1.07;
}

.application-status-copy > p {
  max-width: 650px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.application-lookup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  margin-top: 24px;
}

.application-lookup-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.application-lookup-form label > span {
  color: #c7cbd5;
  font-size: 9px;
  font-weight: 750;
}

.application-lookup-form input {
  min-height: 48px;
  width: 100%;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  outline: none;
  color: var(--text);
  background: #191c26;
  transition: 0.2s ease;
}

.application-lookup-form input:focus {
  border-color: rgba(113, 126, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.1);
}

.application-status-copy__form-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 20px;
  color: #aeb6ff;
  font-size: 10px;
  font-weight: 750;
}

.application-status-result {
  position: relative;
  overflow: hidden;
  border-color: rgba(126, 137, 255, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(88, 101, 242, 0.16), transparent 38%),
    #12151d;
}

.application-status-result[hidden],
.application-status-placeholder[hidden] {
  display: none;
}

.application-status-result__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.application-status-result__label,
.application-team-message > span,
.application-appointment span {
  display: block;
  color: #aeb6ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.application-status-result__top h3 {
  margin-top: 5px;
  font-size: 24px;
}

.application-status-result__top p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.application-status-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.application-status-timeline > div {
  position: relative;
  padding-top: 22px;
  color: #676e7d;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
}

.application-status-timeline > div::before {
  position: absolute;
  top: 7px;
  right: 50%;
  left: -50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  content: "";
}

.application-status-timeline > div:first-child::before {
  display: none;
}

.application-status-timeline i {
  position: absolute;
  top: 2px;
  left: 50%;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 3px solid #12151d;
  border-radius: 50%;
  background: #363b49;
  transform: translateX(-50%);
}

.application-status-timeline > div.is-active {
  color: #c6cad4;
}

.application-status-timeline > div.is-active::before {
  background: #5865f2;
}

.application-status-timeline > div.is-active i {
  background: #5865f2;
  box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.12);
}

.application-status-timeline > div.is-rejected {
  color: #ff9294;
}

.application-status-timeline > div.is-rejected i {
  background: #ed4245;
  box-shadow: 0 0 0 4px rgba(237, 66, 69, 0.12);
}

.application-appointment {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 17px;
  border: 1px solid rgba(243, 156, 53, 0.22);
  border-radius: 14px;
  background: rgba(243, 156, 53, 0.07);
}

.application-appointment[hidden] {
  display: none;
}

.application-appointment__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: #ffd08b;
  background: rgba(243, 156, 53, 0.13);
  font-size: 21px;
}

.application-appointment span {
  color: #f6bd6b;
}

.application-appointment strong,
.application-appointment small {
  display: block;
}

.application-appointment strong {
  margin-top: 4px;
  font-size: 15px;
}

.application-appointment small {
  margin-top: 3px;
  color: #aeb4c1;
  font-size: 8px;
}

.application-team-message {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.application-team-message p {
  margin-top: 8px;
  color: #c5cad4;
  font-size: 11px;
  line-height: 1.68;
  white-space: pre-wrap;
}

.application-status-result__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #737a89;
  font-size: 8px;
}

.application-status-result__footer strong {
  color: #aeb4c0;
}

.application-status-placeholder {
  display: grid;
  place-content: center;
  text-align: center;
}

.application-status-placeholder__icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, #6670f5, #4e5bdc);
  box-shadow: 0 16px 42px rgba(88, 101, 242, 0.28);
  font-size: 16px;
  font-weight: 900;
}

.application-status-placeholder h3 {
  font-size: 20px;
}

.application-status-placeholder p {
  max-width: 410px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.application-response-editor {
  margin: 0 20px 16px;
  padding: 17px;
  border: 1px solid rgba(126, 137, 255, 0.17);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.07), transparent 55%),
    rgba(255, 255, 255, 0.018);
}

.application-response-editor__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.application-response-editor__heading > div > span {
  color: #aeb6ff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1.1px;
}

.application-response-editor__heading h4 {
  margin-top: 2px;
  font-size: 14px;
}

.application-response-editor__saved {
  padding: 5px 8px;
  border-radius: 999px;
  color: #8be1b0;
  background: rgba(35, 165, 89, 0.09);
  font-size: 7px;
  font-weight: 800;
}

.application-response-editor__saved[hidden] {
  display: none;
}

.application-response-editor__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.application-response-editor__fields label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.application-response-editor__fields label > span {
  color: #c0c5d0;
  font-size: 8px;
  font-weight: 700;
}

.application-response-editor__fields input,
.application-response-editor__fields select,
.application-response-editor__fields textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  outline: none;
  color: var(--text);
  background: #191c26;
  transition: 0.2s ease;
}

.application-response-editor__fields input,
.application-response-editor__fields select {
  min-height: 43px;
  padding: 0 11px;
}

.application-response-editor__fields textarea {
  min-height: 105px;
  resize: vertical;
  padding: 11px;
  line-height: 1.55;
}

.application-response-editor__fields input:focus,
.application-response-editor__fields select:focus,
.application-response-editor__fields textarea:focus {
  border-color: rgba(113, 126, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.09);
}

.application-response-editor__message {
  grid-column: 1 / -1;
}

.application-response-editor__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
}

.application-response-editor__actions small {
  max-width: 590px;
  color: #7e8593;
  font-size: 8px;
  line-height: 1.55;
}

@media (max-width: 1030px) {
  .application-status-layout {
    grid-template-columns: 1fr;
  }

  .application-status-copy,
  .application-status-result,
  .application-status-placeholder {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .application-hero__actions {
    flex-direction: column;
  }

  .application-hero__actions .button {
    width: 100%;
  }

  .application-lookup-form {
    grid-template-columns: 1fr;
  }

  .application-lookup-form .button {
    width: 100%;
  }

  .application-status-copy,
  .application-status-result,
  .application-status-placeholder {
    padding: 23px 18px;
  }

  .application-status-timeline > div span {
    font-size: 7px;
  }

  .application-response-editor__fields {
    grid-template-columns: 1fr;
  }

  .application-response-editor__message {
    grid-column: auto;
  }

  .application-response-editor__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .application-response-editor__actions .button {
    width: 100%;
  }
}



/* Separater Teamler-Login und eigenes Teampanel */
.button--team-login {
  border-color: rgba(126, 137, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(88, 101, 242, 0.18), rgba(88, 101, 242, 0.09));
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.14);
}

.button--team-login:hover {
  border-color: rgba(126, 137, 255, 0.4);
  background:
    linear-gradient(145deg, rgba(88, 101, 242, 0.28), rgba(88, 101, 242, 0.14));
  box-shadow: 0 16px 38px rgba(88, 101, 242, 0.23);
}

.standalone-team-login {
  display: grid;
  min-height: calc(100vh - 190px);
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: 90px;
  padding-top: 75px;
  padding-bottom: 90px;
}

.standalone-team-login__visual {
  max-width: 710px;
}

.standalone-team-login__logo {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 24px;
  background: linear-gradient(145deg, #6975ff, #4b56cc);
  box-shadow: 0 20px 55px rgba(88, 101, 242, 0.34);
  font-size: 18px;
  font-weight: 900;
}

.standalone-team-login__visual .eyebrow {
  margin-bottom: 12px;
}

.standalone-team-login__visual h1 {
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
}

.standalone-team-login__visual h1 span {
  color: transparent;
  background: linear-gradient(95deg, #8290ff, #baa3ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.standalone-team-login__visual > p {
  max-width: 650px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.standalone-team-login__features {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.standalone-team-login__features div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c2c7d1;
  font-size: 11px;
  font-weight: 650;
}

.standalone-team-login__features i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  color: #8be1b0;
  background: rgba(35, 165, 89, 0.1);
  font-style: normal;
  font-size: 9px;
}

.standalone-team-login__card {
  padding: 32px;
  border: 1px solid rgba(126, 137, 255, 0.22);
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0%, rgba(88, 101, 242, 0.17), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 58%),
    #12151d;
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.36);
}

.standalone-team-login__card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.standalone-team-login__lock {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 15px;
  color: #c0c6ff;
  background: rgba(88, 101, 242, 0.13);
  font-size: 22px;
}

.standalone-team-login__card-header div > span {
  color: #aeb6ff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.standalone-team-login__card-header h2 {
  margin-top: 2px;
  font-size: 24px;
}

.standalone-team-login__form {
  display: grid;
  gap: 15px;
  margin-top: 26px;
}

.standalone-team-login__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.standalone-team-login__form label > span {
  color: #c5cad4;
  font-size: 10px;
  font-weight: 700;
}

.password-input {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: #191c26;
  transition: 0.2s ease;
}

.password-input:focus-within {
  border-color: rgba(113, 126, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(88, 101, 242, 0.1);
}

.password-input input {
  width: 100%;
  min-height: 51px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.password-input button {
  width: 50px;
  height: 51px;
  flex: 0 0 auto;
  border: 0;
  color: #8e96a7;
  background: transparent;
  cursor: pointer;
}

.password-input button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.standalone-team-login__form .button {
  width: 100%;
  min-height: 52px;
}

.standalone-team-login__notice {
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.standalone-team-login__notice strong {
  display: block;
  font-size: 10px;
}

.standalone-team-login__notice p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.standalone-team-login__back {
  display: inline-flex;
  margin-top: 20px;
  color: #aeb6ff;
  font-size: 10px;
  font-weight: 700;
}

.team-panel-page .navbar {
  border-color: rgba(126, 137, 255, 0.18);
}

.team-panel-hero {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 80px;
  padding-bottom: 45px;
}

.team-panel-hero__content {
  max-width: 760px;
}

.team-panel-hero__content .eyebrow {
  margin-bottom: 12px;
}

.team-panel-hero h1 {
  font-size: clamp(46px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -3.7px;
  line-height: 1;
}

.team-panel-hero h1 span {
  color: transparent;
  background: linear-gradient(95deg, #8290ff, #baa3ff);
  background-clip: text;
  -webkit-background-clip: text;
}

.team-panel-hero p {
  max-width: 670px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.team-panel-hero__status {
  display: flex;
  min-width: 190px;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(35, 165, 89, 0.18);
  border-radius: 15px;
  background: rgba(35, 165, 89, 0.06);
}

.team-panel-hero__status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #23a559;
  box-shadow: 0 0 0 6px rgba(35, 165, 89, 0.11);
}

.team-panel-hero__status small,
.team-panel-hero__status strong {
  display: block;
}

.team-panel-hero__status small {
  color: #93a09a;
  font-size: 8px;
}

.team-panel-hero__status strong {
  margin-top: 2px;
  font-size: 12px;
}

.team-panel-inbox {
  padding-top: 35px;
}

.team-panel-footer {
  display: flex;
  width: min(calc(100% - 48px), var(--max-width));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 30px 0 45px;
  border-top: 1px solid var(--border);
  color: #727988;
  font-size: 9px;
}

.team-panel-footer a {
  color: #aeb6ff;
  font-weight: 700;
}

@media (max-width: 940px) {
  .standalone-team-login {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .standalone-team-login__visual {
    margin: 0 auto;
    text-align: center;
  }

  .standalone-team-login__logo {
    margin-right: auto;
    margin-left: auto;
  }

  .standalone-team-login__features {
    justify-content: center;
  }

  .standalone-team-login__features div {
    justify-content: center;
  }

  .standalone-team-login__card {
    width: min(100%, 540px);
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .standalone-team-login {
    min-height: auto;
    padding-top: 65px;
  }

  .standalone-team-login__visual h1 {
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -2.7px;
  }

  .standalone-team-login__card {
    padding: 24px 18px;
  }

  .team-panel-hero {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 65px;
  }

  .team-panel-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    letter-spacing: -2.7px;
  }

  .team-panel-hero__status {
    width: 100%;
  }

  .team-panel-footer {
    width: min(calc(100% - 30px), var(--max-width));
    align-items: flex-start;
    flex-direction: column;
  }
}



/* Teamler-Login auf allen öffentlichen Seiten */
.mobile-team-login {
  display: none;
}

@media (max-width: 860px) {
  .mobile-team-login {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    color: #fff !important;
    border: 1px solid rgba(126, 137, 255, 0.24);
    background:
      linear-gradient(145deg, rgba(88, 101, 242, 0.24), rgba(88, 101, 242, 0.12)) !important;
    font-weight: 800 !important;
  }

  .mobile-team-login:hover {
    border-color: rgba(126, 137, 255, 0.42);
    background:
      linear-gradient(145deg, rgba(88, 101, 242, 0.34), rgba(88, 101, 242, 0.18)) !important;
  }
}



/* Austauschbares Serverlogo */
.brand__logo,
.subpage-hero__badge > span,
.standalone-team-login__logo,
.application-form__icon,
.application-status-placeholder__icon,
.team-login-panel__icon,
.radar__center,
.server-icon--active,
.profile-team-card__footer span:last-child,
.categorized-team-card__mark {
  overflow: hidden;
}

.server-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.server-logo-image--brand {
  padding: 5px;
}

.server-logo-image--hero {
  padding: 8px;
}

.server-logo-image--tile {
  padding: 6px;
}

.server-logo-image--mini {
  padding: 4px;
}

.server-logo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #fff;
  font: inherit;
  font-weight: 900;
}



/* Robuste Serverlogo-Korrektur */
.brand__logo,
.server-icon--active,
.radar__center,
.subpage-hero__badge > span,
.standalone-team-login__logo,
.application-form__icon,
.application-status-placeholder__icon,
.team-login-panel__icon,
.profile-team-card__footer span:last-child,
.categorized-team-card__mark {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
}

.server-logo-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  position: static !important;
  inset: auto !important;
  margin: 0 !important;
  transform: none !important;
}

.brand__logo {
  padding: 3px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.brand__logo .server-logo-image {
  padding: 0 !important;
}

.server-icon--active .server-logo-image {
  padding: 3px !important;
}

.radar__center .server-logo-image,
.subpage-hero__badge > span .server-logo-image,
.standalone-team-login__logo .server-logo-image,
.application-form__icon .server-logo-image,
.application-status-placeholder__icon .server-logo-image,
.team-login-panel__icon .server-logo-image {
  padding: 4px !important;
}

.server-logo-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
}


/* Badge-Logo-Zentrierung und saubere Darstellung */
.subpage-hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
}

.subpage-hero__badge > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  margin: 0 auto 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.subpage-hero__badge > span .server-logo-image {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: contain !important;
}

.subpage-hero__badge strong {
  margin: 0;
}

.subpage-hero__badge small {
  margin-top: 0;
}

.subpage-hero__badge .server-logo-fallback {
  display: none !important;
}


/* Harte Badge-Korrektur */
.subpage-hero__badge{display:flex !important;flex-direction:column !important;align-items:center !important;justify-content:center !important;gap:8px !important;text-align:center !important;padding:28px !important;}
.subpage-hero__logo-shell{display:flex !important;align-items:center !important;justify-content:center !important;width:108px !important;height:108px !important;margin:0 auto 8px !important;padding:0 !important;border:0 !important;border-radius:0 !important;background:transparent !important;box-shadow:none !important;}
.subpage-hero__logo-shell .server-logo-image{display:block !important;width:100% !important;height:100% !important;max-width:100% !important;max-height:100% !important;object-fit:contain !important;padding:0 !important;margin:0 !important;}
.subpage-hero__logo-shell .server-logo-fallback{display:none !important;}
.subpage-hero__badge > span.server-logo-fallback,.subpage-hero__badge .server-logo-fallback{display:none !important;}


/* Globale Logo-Korrektur ohne PR-Fallback */
.server-logo-fallback {
  display: none !important;
}

.brand__logo,
.server-icon--active,
.radar__center,
.subpage-hero__badge > span,
.subpage-hero__logo-shell,
.standalone-team-login__logo,
.application-form__icon,
.application-status-placeholder__icon,
.team-login-panel__icon,
.profile-team-card__footer span:last-child,
.categorized-team-card__mark {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  text-align: center !important;
}

/* Blaues Quadrat / Hintergrund hinter dem Wappen global entfernen */
.brand__logo,
.server-icon--active,
.radar__center,
.subpage-hero__badge > span,
.subpage-hero__logo-shell,
.standalone-team-login__logo,
.application-form__icon,
.application-status-placeholder__icon,
.team-login-panel__icon,
.profile-team-card__footer span:last-child,
.categorized-team-card__mark {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Logo selbst überall sauber skalieren und mittig halten */
.server-logo-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  padding: 0 !important;
  transform: none !important;
}

/* Navbar-Logo */
.brand__logo {
  padding: 0 !important;
}

/* Rechte Badge-Kachel */
.subpage-hero__badge {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-align: center !important;
}

.subpage-hero__badge > span,
.subpage-hero__logo-shell {
  width: 108px !important;
  height: 108px !important;
  margin: 0 auto 8px !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.subpage-hero__badge strong,
.subpage-hero__badge small {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* Letzte Logo-Feinkorrektur */
.brand__logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.brand__logo .server-logo-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
}

.hero__claim > span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.hero__claim > span .server-logo-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
}


/* Harte globale Entfernung aller blauen Logo-Hintergründe */
.brand__logo,
.server-icon--active,
.radar__center,
.application-form__icon,
.application-status-placeholder__icon,
.team-login-panel__icon,
.standalone-team-login__logo,
.subpage-hero__logo-shell,
.subpage-hero__badge > span,
.hero__claim > span,
.profile-team-card__footer span:last-child,
.categorized-team-card__mark {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.server-logo-image {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.server-logo-fallback {
  display: none !important;
}


/* Teamliste mit echten Mitgliedern */
.team-category-empty {
  grid-column: 1 / -1;
  display: flex;
  min-height: 120px;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border: 1px dashed rgba(var(--category-rgb), 0.24);
  border-radius: 16px;
  background: rgba(var(--category-rgb), 0.035);
}

.team-category-empty > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(var(--category-rgb), 0.22);
  border-radius: 13px;
  color: var(--category-color);
  background: rgba(var(--category-rgb), 0.08);
  font-size: 16px;
  font-weight: 900;
}

.team-category-empty strong {
  display: block;
  font-size: 13px;
}

.team-category-empty p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.team-category--guide .team-category-empty > span {
  color: #e4e5e9;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.categorized-team-card__image img {
  object-position: center;
}


/* Discord-Kanalvorschau im Stil des Referenzbilds */
.discord-window--channel-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #11141b;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  transform: rotateY(-3deg) rotateX(1deg);
}

.discord-window--channel-preview .discord-window__topbar {
  position: relative;
  justify-content: flex-start;
  gap: 12px;
  height: 42px;
  padding: 0 14px 0 52px;
  color: #cbd2dc;
  background: #151822;
  font-size: 11px;
  font-weight: 700;
}

.discord-window__topicons {
  margin-left: auto;
  color: #7d8596;
  font-size: 10px;
  letter-spacing: 0.6px;
}

.discord-window__body--channels {
  display: grid;
  height: 540px;
  grid-template-columns: 52px minmax(0, 1fr);
  background: #11141b;
}

.discord-window--channel-preview .server-rail {
  gap: 10px;
  padding-top: 14px;
  background: #11141b;
}

.discord-window--channel-preview .server-icon {
  width: 34px;
  height: 34px;
  color: #9da7b6;
  background: #232832;
  font-size: 14px;
}

.discord-window--channel-preview .server-icon--active {
  border-radius: 12px;
  background: rgba(88, 101, 242, 0.08);
}

.discord-window--channel-preview .server-icon--utility {
  color: #aab3c4;
  background: #232832;
}

.discord-channel-browser {
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, #171b25 0%, #151925 100%);
}

.discord-browser__header {
  display: flex;
  height: 47px;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #d7dde8;
}

.discord-browser__title {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
}

.discord-browser__actions {
  margin-left: auto;
  color: #8a92a4;
  font-size: 10px;
  white-space: nowrap;
}

.discord-browser__list {
  overflow: auto;
  height: calc(100% - 47px);
  padding: 12px 10px 14px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.09) transparent;
}

.browser-section + .browser-section {
  margin-top: 13px;
}

.browser-section__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #697387;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: none;
}

.browser-section__title span {
  color: #8a92a4;
  font-size: 12px;
  font-weight: 700;
}

.browser-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  margin-bottom: 3px;
  padding: 6px 9px;
  border-radius: 8px;
  color: #858e9f;
  background: transparent;
}

.browser-channel i {
  flex: 0 0 auto;
  color: #667182;
  font-style: normal;
  font-size: 12px;
}

.browser-channel b {
  overflow: hidden;
  flex: 1 1 auto;
  color: inherit;
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-channel span {
  flex: 0 0 auto;
  color: #8892a3;
  font-size: 10px;
}

.browser-channel--active {
  color: #e9edf5;
  background: #222836;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.browser-channel--active i,
.browser-channel--active span {
  color: #c7cfdd;
}

.browser-channel:hover {
  color: #d4dae5;
  background: rgba(255, 255, 255, 0.03);
}

.browser-channel:hover i,
.browser-channel:hover span {
  color: #b9c2d0;
}

@media (max-width: 900px) {
  .discord-window--channel-preview .discord-window__topbar {
    padding-left: 48px;
    font-size: 10px;
  }

  .discord-window__body--channels {
    height: 480px;
  }

  .browser-channel b {
    font-size: 8px;
  }
}


/* Hybrid-Discord-Vorschau mit Chat, Teamliste und Kanalstruktur */
.discord-window--hybrid {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: #313338;
  box-shadow: var(--shadow);
  transform: rotateY(-3deg) rotateX(1deg);
}

.discord-window--hybrid .discord-window__topbar {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #aaaeb8;
  background: #1e1f22;
  font-size: 10px;
  font-weight: 600;
}

.discord-window__body--hybrid {
  display: grid;
  height: 445px;
  grid-template-columns: 54px 160px minmax(250px, 1fr) 125px;
}

.channel-list--hybrid {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 0 6px 10px;
  background: #2b2d31;
}

.channel-list--hybrid .server-title {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  margin: 0 -6px 7px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  color: #f2f3f5;
  font-size: 9px;
  font-weight: 700;
}

.channel-list--hybrid .channel-category {
  margin: 9px 4px 4px;
  color: #8a909b;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.1px;
  text-transform: none;
  white-space: nowrap;
}

.channel-list--hybrid .channel {
  margin: 1px 0;
  padding: 4px 7px;
  border-radius: 4px;
  color: #949ba4;
  font-size: 7px;
  font-weight: 600;
  white-space: nowrap;
}

.channel-list--hybrid .channel.active {
  color: #f2f3f5;
  background: #404249;
}

.channel-list--hybrid .channel:hover {
  color: #d7dbe0;
  background: rgba(79, 84, 92, 0.42);
}

.member-list {
  padding: 13px 8px;
  background: #2b2d31;
}

.member-category {
  margin: 10px 2px 6px;
  color: #949ba4;
  font-size: 6px;
  font-weight: 800;
}

.member {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  padding: 4px;
  border-radius: 5px;
}

.member strong,
.member small {
  display: block;
  overflow: hidden;
  max-width: 72px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member strong {
  font-size: 6px;
}

.member small {
  color: #949ba4;
  font-size: 5px;
}

.member.muted {
  opacity: 0.72;
}

@media (max-width: 1180px) {
  .discord-window__body--hybrid {
    grid-template-columns: 50px 145px minmax(210px, 1fr) 112px;
  }

  .channel-list--hybrid .channel {
    font-size: 6px;
  }

  .member strong,
  .member small {
    max-width: 62px;
  }
}

@media (max-width: 980px) {
  .discord-window__body--hybrid {
    height: 420px;
    grid-template-columns: 46px 132px minmax(200px, 1fr) 104px;
  }

  .channel-list--hybrid .channel-category {
    font-size: 5px;
  }

  .channel-list--hybrid .channel {
    font-size: 6px;
    padding: 3px 6px;
  }

  .chat-panel__header strong {
    font-size: 8px;
  }

  .message p {
    font-size: 6px;
  }
}


/* Einzeiliger Discord-Servertitel */
.channel-list--hybrid .server-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 6px !important;
  white-space: nowrap !important;
}

.channel-list--hybrid .server-title__text {
  overflow: hidden !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  color: #f2f3f5 !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.channel-list--hybrid .server-title__arrow {
  flex: 0 0 auto !important;
  color: #b7bdc8 !important;
  font-size: 9px !important;
  line-height: 1 !important;
}


/* Discord-Servertitel exakt wie Referenz */
.channel-list--hybrid .server-title {
  display: flex !important;
  height: 48px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  margin: 0 -6px 7px !important;
  padding: 0 11px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22) !important;
  color: #cfd7ff !important;
  background: #1f232d !important;
  white-space: nowrap !important;
}

.channel-list--hybrid .server-title__icon {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  color: #e49ad3 !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

.channel-list--hybrid .server-title__text {
  overflow: hidden !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  color: #aebcff !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}


/* Discord-Servertitel ohne Icon und mit mehr Platz */
.discord-window__body--hybrid {
  grid-template-columns: 54px 195px minmax(240px, 1fr) 125px !important;
}

.channel-list--hybrid .server-title {
  display: flex !important;
  height: 52px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  margin: 0 -6px 8px !important;
  padding: 0 12px !important;
  background: #1f232d !important;
  white-space: nowrap !important;
}

.channel-list--hybrid .server-title__text {
  overflow: hidden !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  color: #aebcff !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.channel-list--hybrid .server-title__icon,
.channel-list--hybrid .server-title__arrow {
  display: none !important;
}

@media (max-width: 1180px) {
  .discord-window__body--hybrid {
    grid-template-columns: 50px 182px minmax(215px, 1fr) 112px !important;
  }

  .channel-list--hybrid .server-title__text {
    font-size: 9px !important;
  }
}

@media (max-width: 980px) {
  .discord-window__body--hybrid {
    grid-template-columns: 46px 170px minmax(200px, 1fr) 104px !important;
  }

  .channel-list--hybrid .server-title {
    height: 48px !important;
    padding: 0 10px !important;
  }

  .channel-list--hybrid .server-title__text {
    font-size: 8px !important;
  }
}


/* Discord-Servertitel oben mit mehr Luft darunter */
.channel-list--hybrid .server-title {
  align-items: flex-start !important;
  height: auto !important;
  min-height: 58px !important;
  margin: 0 -6px 14px !important;
  padding: 9px 12px 15px !important;
}

.channel-list--hybrid .server-title__text {
  display: block !important;
  line-height: 1.05 !important;
}

@media (max-width: 980px) {
  .channel-list--hybrid .server-title {
    min-height: 54px !important;
    margin: 0 -6px 12px !important;
    padding: 8px 10px 13px !important;
  }
}


/* Fraktionen- und ACP-Seiten */
.category-overview {
  padding-top: 55px;
}

.category-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 230px;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(88, 101, 242, 0.08), transparent 58%),
    #141720;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.info-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(126, 137, 255, 0.2);
  border-radius: 13px;
  color: #b8bfff;
  background: rgba(88, 101, 242, 0.11);
  font-size: 10px;
  font-weight: 900;
}

.info-card h3 {
  margin-top: 20px;
  font-size: 19px;
}

.info-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

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


/* Zentrierter Discord-Servertitel mit kompakterem Abstand */
.channel-list--hybrid .server-title {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: center !important;
  height: auto !important;
  min-height: 50px !important;
  margin: 0 -6px 10px !important;
  padding: 8px 10px 10px !important;
  background: #1f232d !important;
}

.channel-list--hybrid .server-title__text {
  display: block !important;
  flex: 0 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  text-align: center !important;
  line-height: 1.05 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  overflow: hidden !important;
}

@media (max-width: 980px) {
  .channel-list--hybrid .server-title {
    min-height: 46px !important;
    margin: 0 -6px 8px !important;
    padding: 7px 8px 9px !important;
  }

  .channel-list--hybrid .server-title__text {
    font-size: 9px !important;
  }
}

/* Funktionierende Live-Serverstatusübersicht */
.status-panel {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: start;
  min-height: 620px;
}

.status-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.status-live-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(35, 165, 89, 0.22);
  border-radius: 999px;
  color: #8be1b0;
  background: rgba(35, 165, 89, 0.08);
  font-size: 9px;
  font-weight: 800;
}

.status-live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #23a559;
  box-shadow: 0 0 0 5px rgba(35, 165, 89, 0.11);
}

.status-live-badge.is-offline {
  color: #ff9b9d;
  border-color: rgba(237, 66, 69, 0.22);
  background: rgba(237, 66, 69, 0.08);
}

.status-live-badge.is-offline i {
  background: #ed4245;
  box-shadow: 0 0 0 5px rgba(237, 66, 69, 0.11);
}

.status-panel.is-loading .status-live-badge {
  color: #bbc2ff;
  border-color: rgba(88, 101, 242, 0.22);
  background: rgba(88, 101, 242, 0.08);
}

.status-panel.is-loading .status-live-badge i {
  background: #5865f2;
  box-shadow: 0 0 0 5px rgba(88, 101, 242, 0.11);
  animation: statusPulse 1.2s ease-in-out infinite;
}

.status-label .online-dot.is-offline {
  background: #ed4245;
}

.status-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 14px;
  margin-top: 16px;
}

.status-info-card,
.status-player-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.028);
}

.status-info-card {
  padding: 18px;
}

.status-info-card__title {
  color: #9fa8ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.15px;
}

.status-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.status-info-list > div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.status-info-list__wide {
  grid-column: 1 / -1;
}

.status-info-list dt {
  color: #747c8d;
  font-size: 7px;
  font-weight: 700;
}

.status-info-list dd {
  overflow: hidden;
  margin: 4px 0 0;
  color: #d9dce4;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  text-overflow: ellipsis;
}

.status-player-card {
  overflow: hidden;
}

.status-player-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.status-player-card__header strong {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.status-player-card__sync {
  padding: 5px 8px;
  border-radius: 999px;
  color: #8be1b0;
  background: rgba(35, 165, 89, 0.09);
  font-size: 7px;
  font-weight: 800;
}

.status-player-list {
  display: grid;
  max-height: 245px;
  overflow-y: auto;
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 137, 255, 0.34) transparent;
}

.status-player-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border-radius: 9px;
}

.status-player-row:hover {
  background: rgba(255, 255, 255, 0.035);
}

.status-player-row__avatar {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #6670f5, #4d58cf);
  font-size: 8px;
  font-weight: 900;
}

.status-player-row__details {
  min-width: 0;
}

.status-player-row__details strong,
.status-player-row__details small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-player-row__details strong {
  font-size: 9px;
}

.status-player-row__details small {
  margin-top: 2px;
  color: #7f8797;
  font-size: 7px;
}

.status-player-list__empty {
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 18px;
  color: #7f8797;
  font-size: 9px;
  text-align: center;
}

.status-refresh-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.status-update-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #777f8e;
  font-size: 8px;
}

.status-update-row strong {
  color: #aeb5c3;
}

.status-panel__graphic {
  position: sticky;
  top: 105px;
  min-height: 520px;
}

.radar-status-card {
  display: grid;
  min-width: 190px;
  margin-top: 24px;
  padding: 14px 17px;
  border: 1px solid rgba(126, 137, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.radar-status-card span {
  color: #8f97a8;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
}

.radar-status-card strong {
  margin-top: 5px;
  font-size: 16px;
}

.radar-status-card small {
  margin-top: 3px;
  color: #747c8d;
  font-size: 8px;
}

.radar.is-offline .radar__sweep {
  animation-play-state: paused;
  opacity: 0.12;
}

.radar.is-offline {
  border-color: rgba(237, 66, 69, 0.24);
  box-shadow:
    inset 0 0 60px rgba(237, 66, 69, 0.06),
    0 0 90px rgba(237, 66, 69, 0.07);
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1); }
}

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

  .status-panel__graphic {
    position: static;
    min-height: 340px;
  }
}

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

  .status-player-list {
    max-height: 300px;
  }
}

@media (max-width: 650px) {
  .status-heading-row,
  .status-update-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-live-badge {
    align-self: flex-start;
  }

  .status-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .status-info-list__wide {
    grid-column: auto;
  }

  .status-actions {
    flex-direction: column;
  }

  .status-actions .button {
    width: 100%;
  }
}


/* Fraktionsliste im Stil der Teamliste */
.faction-roster {
  padding-top: 58px;
}

.section-heading--factions {
  max-width: 790px;
  text-align: center;
}

.faction-category-list {
  display: grid;
  gap: 34px;
}

.faction-category {
  --faction-color: #5865f2;
  --faction-rgb: 88, 101, 242;
  padding: 24px;
  border: 1px solid rgba(var(--faction-rgb), 0.2);
  border-radius: 24px;
  background:
    linear-gradient(130deg, rgba(var(--faction-rgb), 0.075), transparent 42%),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18);
}

.faction-category--staatlich {
  --faction-color: #4b92ff;
  --faction-rgb: 75, 146, 255;
}

.faction-category--unternehmen {
  --faction-color: #f5b83e;
  --faction-rgb: 245, 184, 62;
}

.faction-category--crime {
  --faction-color: #e14658;
  --faction-rgb: 225, 70, 88;
}

.faction-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding: 0 2px;
}

.faction-category__title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faction-category__line {
  width: 7px;
  height: 51px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--faction-color);
  box-shadow: 0 0 25px rgba(var(--faction-rgb), 0.42);
}

.faction-category__label {
  display: block;
  color: var(--faction-color);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.faction-category__header h2 {
  margin-top: 2px;
  font-size: clamp(22px, 3vw, 29px);
  letter-spacing: -0.9px;
  line-height: 1.15;
}

.faction-category__count {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(var(--faction-rgb), 0.22);
  border-radius: 999px;
  color: var(--faction-color);
  background: rgba(var(--faction-rgb), 0.085);
  font-size: 9px;
  font-weight: 800;
}

.faction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faction-card {
  overflow: hidden;
  border: 1px solid rgba(var(--faction-rgb), 0.16);
  border-radius: 19px;
  background:
    linear-gradient(160deg, rgba(var(--faction-rgb), 0.06), transparent 62%),
    #141720;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.faction-card:hover {
  border-color: rgba(var(--faction-rgb), 0.42);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
  transform: translateY(-6px);
}

.faction-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #202331;
}

.faction-card__image::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(11, 13, 19, 0.88));
  content: "";
  pointer-events: none;
}

.faction-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.faction-card:hover .faction-card__image img {
  transform: scale(1.045);
}

.faction-card__status {
  position: absolute;
  right: 13px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(14, 17, 24, 0.78);
  backdrop-filter: blur(9px);
  font-size: 8px;
  font-weight: 750;
}

.faction-card__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #23a559;
  box-shadow: 0 0 0 4px rgba(35, 165, 89, 0.12);
}

.faction-card__body {
  padding: 19px;
}

.faction-card__type {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(var(--faction-rgb), 0.22);
  border-radius: 7px;
  color: var(--faction-color);
  background: rgba(var(--faction-rgb), 0.09);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.faction-card h3 {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.2;
}

.faction-card p {
  min-height: 42px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.faction-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 17px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #767e8f;
  font-size: 8px;
  font-weight: 750;
}

.faction-card__mark {
  display: grid;
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--faction-color);
  box-shadow: 0 8px 20px rgba(var(--faction-rgb), 0.22);
  font-size: 7px;
  font-weight: 900;
}

.faction-category--unternehmen .faction-card__mark {
  color: #181b22;
}

@media (max-width: 1000px) {
  .faction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .faction-category {
    padding: 18px;
    border-radius: 20px;
  }

  .faction-category__header {
    align-items: flex-start;
  }

  .faction-category__count {
    display: none;
  }

  .faction-grid {
    grid-template-columns: 1fr;
  }

  .faction-card__image {
    aspect-ratio: 16 / 11;
  }
}

/* Saubere, einheitliche Fraktionskarten */
.faction-category--staatlich .faction-grid,
.faction-category--unternehmen .faction-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faction-category--crime .faction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faction-card {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
}

.faction-card__image {
  position: relative;
  display: flex;
  height: 220px;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(var(--faction-rgb), 0.16), transparent 48%),
    linear-gradient(180deg, #121621 0%, #0b0d13 100%);
}

.faction-card__image::after {
  display: none;
}

.faction-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: transform 0.35s ease;
}

.faction-card--logo .faction-card__image {
  padding: 22px;
}

.faction-card--logo .faction-card__image img {
  max-width: 78%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.faction-card--placeholder .faction-card__image {
  padding: 0;
}

.faction-card--placeholder .faction-card__image img {
  object-fit: cover;
}

.faction-card:hover .faction-card__image img {
  transform: scale(1.025);
}

.faction-card__status {
  right: 12px;
  bottom: 12px;
}

.faction-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px;
}

.faction-card h3 {
  margin-top: 11px;
  font-size: 18px;
}

.faction-card p {
  min-height: 38px;
  margin-top: 6px;
  font-size: 10px;
}

.faction-card__footer {
  margin-top: auto;
  padding-top: 14px;
}

@media (max-width: 1000px) {
  .faction-category--staatlich .faction-grid,
  .faction-category--unternehmen .faction-grid,
  .faction-category--crime .faction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .faction-category--staatlich .faction-grid,
  .faction-category--unternehmen .faction-grid,
  .faction-category--crime .faction-grid {
    grid-template-columns: 1fr;
  }

  .faction-card {
    min-height: 405px;
  }

  .faction-card__image {
    height: 205px;
    min-height: 205px;
    padding: 14px;
  }

  .faction-card--logo .faction-card__image img {
    max-width: 84%;
    max-height: 90%;
  }
}


/* Fraktionen: einheitliches 3-Spalten-Layout */
.faction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.faction-category--staatlich .faction-grid,
.faction-category--unternehmen .faction-grid,
.faction-category--crime .faction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faction-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 420px;
  height: 100%;
}

.faction-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 215px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(var(--faction-rgb), 0.14), transparent 50%),
    linear-gradient(180deg, #141922 0%, #0c1017 100%);
}

.faction-card__image::after {
  display: none;
}

.faction-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.35s ease;
}

.faction-card--logo .faction-card__image img {
  max-width: 74%;
  max-height: 84%;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.38));
}

.faction-card--placeholder .faction-card__image {
  padding: 0;
}

.faction-card--placeholder .faction-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.faction-card:hover .faction-card__image img {
  transform: scale(1.02);
}

.faction-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px;
}

.faction-card h3 {
  margin-top: 11px;
  font-size: 18px;
  line-height: 1.2;
}

.faction-card p {
  min-height: 40px;
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.55;
}

.faction-card__footer {
  margin-top: auto;
  padding-top: 14px;
}

@media (max-width: 1100px) {
  .faction-grid,
  .faction-category--staatlich .faction-grid,
  .faction-category--unternehmen .faction-grid,
  .faction-category--crime .faction-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .faction-grid,
  .faction-category--staatlich .faction-grid,
  .faction-category--unternehmen .faction-grid,
  .faction-category--crime .faction-grid {
    grid-template-columns: 1fr;
  }

  .faction-card {
    min-height: 400px;
  }

  .faction-card__image {
    min-height: 200px;
  }
}


/* ACP-Weiterleitungsbutton */
.button--acp-link {
  border-color: rgba(126, 137, 255, 0.42);
  background:
    linear-gradient(135deg, #6d78ff 0%, #5865f2 48%, #8d72ff 100%);
  box-shadow:
    0 14px 34px rgba(88, 101, 242, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button--acp-link:hover {
  border-color: rgba(166, 174, 255, 0.7);
  box-shadow:
    0 18px 42px rgba(88, 101, 242, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
