
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georgia", serif;
}

:root{
  --bg: #050505;
  --line: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.88);
  --muted: rgba(255,255,255,0.65);
  --gold: #d6b36a;
  --gold2:#ffda79;
  --violet: rgba(180,120,255,0.55);
}

body{
  min-height: 100vh;
  color: var(--text);
}

body.index{
  background: #000;
}

body:not(.index){
  background:
    radial-gradient(1200px 800px at 70% 10%, rgba(214,179,106,0.10), transparent 60%),
    radial-gradient(900px 700px at 20% 90%, rgba(255,218,121,0.06), transparent 55%),
    linear-gradient(180deg, #111118 0%, #09090e 55%, #050507 100%);
}


.container{
  display: flex;
  min-height: 100vh;
}


.sidebar{
  width: 260px;
  background: linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.98));
  color: #fff;
  padding: 26px 20px;
  text-align: center;

  border-right: 1px solid var(--line);
  box-shadow: 12px 0 40px rgba(0,0,0,0.55);


  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar .logo{
  width: 80px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.sidebar-logo{
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.sidebar-logo img{
  width: 140px;
  height: auto;
}

.sidebar-logo h2{
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.sidebar nav a{
  display: block;
  text-decoration: none;

  color: rgba(255,255,255,0.72);
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 10px;

  font-size: 14px;
  letter-spacing: 0.35px;

  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, padding-left 0.18s ease;
  will-change: transform;
}

.sidebar nav a:hover{
  color: #fff;
  padding-left: 16px;
  transform: translateX(3px);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.sidebar nav a.active{
  color: #fff;
  background: linear-gradient(90deg, rgba(214,179,106,0.18), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 0 1px rgba(214,179,106,0.28);
  position: relative;
}

.sidebar nav a.active::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  bottom:10px;
  width:3px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
}


.content{
  flex: 1;
  position: relative;
  display: block;
  padding: 34px 46px;
}

.index .content{
  background: url("../img/bg.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

.overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 65% 40%, rgba(214,179,106,0.14), rgba(0,0,0,0) 70%),
    rgba(0,0,0,0.65);
}

.center-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: gold;
  text-align: center;
}

.center-content .logo{
  width: 300px;
  margin-bottom: 30px;
}

.center-content h1{
  font-size: 42px;
  letter-spacing: 4px;
}

.center-content h2{
  font-size: 18px;
  letter-spacing: 6px;
  margin-top: 10px;
}

.page-hero{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 260px;
  margin: 0;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  border-bottom: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow: hidden;

  box-shadow:
    0 22px 70px rgba(0,0,0,0.60),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.35), rgba(0,0,0,0.82));
}

.page-hero__inner{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  z-index: 1;
}

.page-hero__line{
  width: 90px;
  height: 1px;
  background: rgba(214,179,106,0.55);
  position: relative;
  overflow: hidden;
}

.page-hero__title{
  color: rgba(255,255,255,0.96);
  font-size: 54px;
  font-weight: 650;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.8);
}

body.Geschichte .page-hero,
body.Standort .page-hero,
body.Aufgaben .page-hero,
body.Rangsystem .page-hero,
body.Bezahlung .page-hero,
body.Regeln .page-hero,
body.Fahrzeuge .page-hero,
body.Auftreten .page-hero,
body.Neuanstellungen .page-hero,
body.RP-Förderung .page-hero,
body.Schlusswort .page-hero{
  background-image: url("../img/Titelbild.png");
}

.page-body{
  position: relative;
  z-index: 2;

  max-width: 980px;
  margin: 26px auto 0;

  padding: 28px 30px;
  border-radius: 16px;

  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 90px rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

.page-body p{
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
}

.page-body strong{ color: rgba(255,255,255,0.95); }
.page-body em{ color: var(--gold2); font-style: normal; }

.center-text{
  text-align: center;
  margin: 60px auto;
}

.section-title{
  text-align: center;
  color: #fff;
  font-size: 22px;
  margin: 40px 0 10px;
  position: relative;
}

.section-title::after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin: 10px auto 0;
}


.fancy-list{
  list-style: none;
  padding-left: 0;
  margin: 18px 0 0;
}

.fancy-list li{
  position: relative;
  padding: 14px 16px 14px 52px;
  margin: 12px 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  line-height: 1.75;

  transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease;
}

.fancy-list li::before{
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(214,179,106,0.20);
  border: 1px solid rgba(214,179,106,0.35);
  color: rgba(255,218,121,0.95);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

.fancy-list li:hover{
  transform: translateY(-2px);
  background: rgba(214,179,106,0.06);
  border-color: rgba(214,179,106,0.22);
}


.image-row{
  display: flex;
  gap: 20px;
  margin: 30px 0 30px 270px; 
  align-items: flex-start;
  flex-wrap: wrap;
}

.location-image{
  max-width: 500px;
  width: 100%;
  height: auto;

  border: 1px solid rgba(214,179,106,0.35);
  padding: 6px;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.location-image:hover{
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
}


.rank-header{
  text-align: center;
  margin: 50px auto 20px;
  color: #fff;
}

.rank-header h3{
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.rank-header p{
  font-size: 15px;
  color: #ccc;
}

.table-wrapper{
  max-width: 980px;
  margin: 26px auto 0;
  overflow-x: auto;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  padding: 8px 10px;
}

.rank-table{
  width: 100%;
  border-collapse: collapse;
  color: #eaeaea;
  font-size: 16px;
}

.rank-table thead th{
  text-align: center;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(214,179,106,0.35);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

.rank-table tbody td{
  text-align: center;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rank-table td:first-child,
.rank-table th:first-child{
  width: 70px;
}

.rank-table tbody tr{
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-table tbody tr:hover{
  background: rgba(214,179,106,0.06);
  transform: translateY(-1px);
}


@keyframes fadeUp{
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes softPop{
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmerLine{
  0%   { transform: translateX(-120%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

.page-hero{ animation: softPop 0.7s ease-out both; }
.page-body, .table-wrapper{ animation: fadeUp 0.8s ease-out both; animation-delay: 0.10s; }
.page-hero__title{ animation: fadeUp 0.9s ease-out both; animation-delay: 0.15s; }

.page-hero__line::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: shimmerLine 1.2s ease-out 0.25s both;
}

.center-content .logo,
.center-content h1,
.center-content h2{ animation: fadeUp 0.9s ease-out both; }
.center-content .logo{ animation-delay: 0.10s; }
.center-content h1{ animation-delay: 0.18s; }
.center-content h2{ animation-delay: 0.26s; }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

.footer{
  margin-top: 0;
  padding: 0;
  width: 100%;
}

.footer__inner{
  width: 100%;
  margin: 0;
  padding: 18px 26px;

  border-top: 1px solid rgba(180,120,255,0.18);

  background:
    radial-gradient(900px 220px at 15% 50%, rgba(180,120,255,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));

  box-shadow:
    0 -18px 60px rgba(0,0,0,0.55),
    0 0 50px rgba(180,120,255,0.10);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer__brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__logo{
  width: 56px;
  height: auto;
  display: block;
  margin-right: 16px;

  filter: drop-shadow(0 0 12px rgba(160,120,255,0.55));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer__logo:hover{
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 18px rgba(180,120,255,0.75));
}

body:not(.index) .page-body{
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}

body:not(.index):not(.Geschichte):not(.Standort):not(.Aufgaben):not(.Rangsystem):not(.Bezahlung):not(.Regeln):not(.Fahrzeuge):not(.Auftreten):not(.RP-Förderung):not(.Schlusswort){
  background:
    radial-gradient(1200px 800px at 70% 10%, rgba(214,179,106,0.10), transparent 60%),
    linear-gradient(180deg, #050505, #000);
}

.rules-wrapper{
  max-width: 980px;
  margin: 0 auto;
}

.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__center{
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer__discord{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 12px 22px;
  border-radius: 16px;

  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 14px;

  color: #fff;

  background:
    linear-gradient(135deg, rgba(114,137,218,0.95), rgba(88,101,242,0.95));

  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    0 0 30px rgba(114,137,218,0.35);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer__discord:hover{
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.6),
    0 0 55px rgba(114,137,218,0.65);
}

.discord-svg{
  width: 22px;
  height: 22px;
  fill: #fff;

  filter: drop-shadow(0 0 10px rgba(114,137,218,0.8));
  animation: discordPulse 2.8s ease-in-out infinite;
}

@keyframes discordPulse{
  0%{
    filter: drop-shadow(0 0 8px rgba(114,137,218,0.6));
  }
  50%{
    filter: drop-shadow(0 0 18px rgba(114,137,218,0.95));
  }
  100%{
    filter: drop-shadow(0 0 8px rgba(114,137,218,0.6));
  }
}

.discord-text{
  font-size: 14px;
}
:root{
  --soft-bg: #0b0d12;
  --card: rgba(255,255,255,0.06);
  --cardLine: rgba(255,255,255,0.10);
  --softShadow: 0 18px 60px rgba(0,0,0,0.45);
  --accent: #ffda79;
  --accent2: #d6b36a;
}

body.index .container{ display: block; min-height: auto; }
body.index .sidebar{ display: none; }
body.index .content{ display: none; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(5,5,5,0.55);
  backdrop-filter: blur(10px);
}

.topbar__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  min-width: 240px;
}

.topbar__logo{
  width: 44px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
}

.topbar__title{
  font-weight: 700;
  letter-spacing: 0.2px;
}

.topbar__sub{
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.topbar__nav{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;

  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  overflow-x: auto;
  scrollbar-width: none;
}
.topbar__nav::-webkit-scrollbar{ display:none; }

.topbar__nav a{
  text-decoration: none;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  letter-spacing: 0.25px;
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.topbar__nav a:hover{
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.topbar__nav a.active{
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 34px rgba(214,179,106,0.18);
}

.topbar__cta{
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 45px rgba(214,179,106,0.22);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.topbar__cta:hover{ transform: translateY(-1px); filter: brightness(1.03); }

.topbar__burger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  cursor: pointer;
  position: relative;
}
.topbar__burger span{
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}
.topbar__burger span:nth-child(1){ top: 14px; }
.topbar__burger span:nth-child(2){ top: 21px; }
.topbar__burger span:nth-child(3){ top: 28px; }

.topbar__burger[aria-expanded="true"] span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.topbar__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.topbar__burger[aria-expanded="true"] span:nth-child(3){ top: 21px; transform: rotate(-45deg); }

.topbar__drawer{
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(5,5,5,0.86);
  backdrop-filter: blur(10px);
}

.topbar__drawerNav{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.topbar__drawerNav a{
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.topbar__drawerNav a.active{
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.hero{
  min-height: calc(100vh - 74px);
  position: relative;
  background: url("../img/bg.jpg") center/cover no-repeat;
  display: grid;
  place-items: center;
  padding: 70px 18px 40px;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 35%, rgba(255,218,121,0.16), rgba(0,0,0,0) 65%),
    rgba(0,0,0,0.62);
}

.hero__content{
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;

  padding: 26px 22px;
  border-radius: 22px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--softShadow);
  backdrop-filter: blur(6px);
}

.hero__logo{
  width: 340px;
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 22px 45px rgba(0,0,0,0.6));
}

.hero__h1{
  font-size: 44px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.95);
}

.hero__p{
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  letter-spacing: 0.4px;
}

.hero__actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease;
  border: 1px solid rgba(255,255,255,0.12);
}

.btn--primary{
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 60px rgba(214,179,106,0.22);
}
.btn--primary:hover{ transform: translateY(-1px); filter: brightness(1.04); }

.btn--ghost{
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
}
.btn--ghost:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.09); }

@media (max-width: 980px){
  .topbar__nav{ display: none; }
  .topbar__cta{ display: none; }
  .topbar__burger{ display: inline-block; }
  .topbar__brand{ min-width: auto; }
  .hero__h1{ font-size: 36px; }
  .hero__logo{ width: 200px; }
}

@media (max-width: 520px){
  .topbar__drawerNav{ grid-template-columns: 1fr; }
}
.topbar__inner{
  flex-wrap: wrap;
}

.topbar__inner{
  max-width: 1700px; 
  width: 100%;
  margin: 0 auto;
  padding: 12px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar__brand{
  min-width: auto;
  gap: 10px;
}

.topbar__logo{
  width: 36px;
}

.topbar__nav{
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 6px;

  paddi
}

.content-full{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 18px;
}

.sidebar{
  display: none !important;
}

.container{
  display: block !important;
}

body.Geschichte{
  background:
    radial-gradient(1200px 700px at 65% 15%, rgba(255,218,121,0.12), transparent 60%),
    radial-gradient(900px 650px at 20% 80%, rgba(180,120,255,0.10), transparent 60%),
    linear-gradient(180deg, #0b0d12 0%, #07080c 65%, #050507 100%);
}

.story{
  min-height: calc(100vh - 74px);
}

.story-hero{
  position: relative;
  margin: 22px auto 0;
  max-width: 1200px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 90px rgba(0,0,0,0.55);
}

.story-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 65% 20%, rgba(255,218,121,0.18), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.70), rgba(0,0,0,0.35), rgba(0,0,0,0.70)),
    url("../img/Titelbild.png") center/cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
}

.story-hero__inner{
  position: relative;
  z-index: 1;
  padding: 42px 28px;
  text-align: left;
}

.story-hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}

.story-hero__title{
  margin-top: 14px;
  font-size: 52px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 45px rgba(0,0,0,0.65);
}

.story-hero__lead{
  margin-top: 10px;
  max-width: 720px;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.8;
}

.story-wrap{
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}

.story-card{
  border-radius: 22px;
  padding: 22px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

.story-card__title{
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.story-text p{
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255,255,255,0.80);
  margin-top: 14px;
}

.story-text strong{
  color: rgba(255,255,255,0.95);
}

.story-quote{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;

  padding: 16px 16px;
  border-radius: 18px;

  background: linear-gradient(135deg, rgba(255,218,121,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,218,121,0.20);
}

.story-quote__mark{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  box-shadow: 0 18px 55px rgba(214,179,106,0.20);
}

.story-quote__text{
  color: rgba(255,255,255,0.88);
  line-height: 1.85;
}

.story-panel{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-card{
  border-radius: 22px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.40);
  backdrop-filter: blur(8px);
}

.panel-card--soft{
  background: rgba(255,255,255,0.035);
}

.panel-card__title{
  font-size: 14px;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
}

.panel-card__text{
  color: rgba(255,255,255,0.74);
  line-height: 1.85;
  font-size: 14px;
}

.panel-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.panel-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  font-size: 14px;
}

.panel-list li span{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,218,121,0.14);
  border: 1px solid rgba(255,218,121,0.22);
  color: rgba(255,218,121,0.95);
  font-weight: 800;
}

.story-steps{
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 18px 36px;
}

.steps-inner{
  border-radius: 26px;
  padding: 22px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

.steps-title{
  font-size: 16px;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.4px;
}

.steps-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.step{
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
}

.step__num{
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}

.step__title{
  margin-top: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 700;
}

.step__text{
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.7;
}

.story-callout{
  margin-top: 14px;
  border-radius: 20px;
  padding: 16px 16px;
  background: linear-gradient(135deg, rgba(180,120,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(180,120,255,0.20);
  display: grid;
  gap: 6px;
}

.story-callout__title{
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

.story-callout__text{
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}

@media (max-width: 980px){
  .story-wrap{ grid-template-columns: 1fr; }
  .steps-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-hero__title{ font-size: 42px; }
}

@media (max-width: 520px){
  .steps-grid{ grid-template-columns: 1fr; }
  .story-hero__title{ font-size: 36px; }
}

body.midnight{
  --mc-bg1: #060714;
  --mc-bg2: #05050a;
  --mc-text: rgba(255,255,255,0.88);
  --mc-muted: rgba(255,255,255,0.70);

  --mc-neon: #37f3ff;     
  --mc-neon2: #a855ff;    
  --mc-warm: #ffda79;     

  background:
    radial-gradient(900px 520px at 65% 15%, rgba(55,243,255,0.10), transparent 60%),
    radial-gradient(900px 520px at 25% 80%, rgba(168,85,255,0.12), transparent 60%),
    linear-gradient(180deg, var(--mc-bg1) 0%, var(--mc-bg2) 70%, #040409 100%);

  color: var(--mc-text);
}

body.midnight *{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body.midnight .sidebar{ display: none !important; }
body.midnight .container{ display: block !important; }
body.midnight .content{ padding: 0 !important; background: transparent !important; border: none !important; }

.mc{
  min-height: calc(100vh - 74px);
}

.mc-hero{
  position: relative;
  margin: 22px auto 0;
  max-width: 1200px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 110px rgba(0,0,0,0.62);
}

.mc-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 60% 25%, rgba(55,243,255,0.18), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(168,85,255,0.18), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.35), rgba(0,0,0,0.72));
  filter: contrast(1.03);
}

.mc-hero__inner{
  position: relative;
  z-index: 1;
  padding: 44px 28px;
}

.mc-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.mc-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mc-neon);
  box-shadow: 0 0 16px rgba(55,243,255,0.75);
}

.mc-title{
  margin-top: 14px;
  font-size: 56px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 55px rgba(0,0,0,0.7);
}

.mc-lead{
  margin-top: 10px;
  max-width: 760px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.85;
}

.mc-tags{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mc-tag{
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.mc-wrap{
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

.mc-card{
  border-radius: 22px;
  padding: 22px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.50);
  backdrop-filter: blur(10px);
}

.mc-card__title{
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.92);
}

.mc-text p{
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255,255,255,0.78);
}

.mc-text strong{
  color: rgba(255,255,255,0.96);
}

.mc-quote{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;

  background: linear-gradient(135deg, rgba(55,243,255,0.10), rgba(168,85,255,0.08));
  border: 1px solid rgba(255,255,255,0.12);
}

.mc-quote__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #0b0d12;
  background: linear-gradient(135deg, var(--mc-neon), var(--mc-neon2));
  box-shadow: 0 0 28px rgba(55,243,255,0.25);
  font-weight: 800;
}

.mc-quote__text{
  color: rgba(255,255,255,0.86);
  line-height: 1.85;
}

.mc-panel{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mc-panelCard{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 70px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.mc-panelCard--soft{
  background: rgba(255,255,255,0.035);
}

.mc-panelCard--glow{
  border-color: rgba(55,243,255,0.18);
  box-shadow:
    0 24px 90px rgba(0,0,0,0.55),
    0 0 60px rgba(55,243,255,0.10);
}

.mc-panelTitle{
  font-size: 13px;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
}

.mc-panelText{
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  font-size: 14px;
}

.mc-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mc-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.80);
  font-size: 14px;
  line-height: 1.6;
}

.mc-list li span{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.92);
  background: rgba(55,243,255,0.12);
  border: 1px solid rgba(55,243,255,0.20);
  box-shadow: 0 0 18px rgba(55,243,255,0.10);
  font-weight: 900;
}

.mc-steps{
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 0 18px 34px;
}

.mc-stepsInner{
  border-radius: 26px;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.50);
  backdrop-filter: blur(10px);
}

.mc-stepsTitle{
  font-size: 15px;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.90);
}

.mc-stepsGrid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mc-step{
  border-radius: 18px;
  padding: 14px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.08);
}

.mc-stepNum{
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #0b0d12;
  background: linear-gradient(135deg, var(--mc-neon), var(--mc-neon2));
}

.mc-stepTitle{
  margin-top: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 800;
}

.mc-stepText{
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.7;
}

.mc-callout{
  margin-top: 14px;
  border-radius: 20px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(55,243,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(55,243,255,0.18);
  display: grid;
  gap: 6px;
}

.mc-calloutTitle{
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.mc-calloutText{
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}

@media (max-width: 980px){
  .mc-wrap{ grid-template-columns: 1fr; }
  .mc-stepsGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mc-title{ font-size: 44px; }
}

@media (max-width: 520px){
  .mc-stepsGrid{ grid-template-columns: 1fr; }
  .mc-title{ font-size: 38px; }
}

body.midnight.locationpage .loc{
  padding-bottom: 28px;
}

.loc-hero{
  position: relative;
  margin: 22px auto 0;
  max-width: 1200px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 110px rgba(0,0,0,0.62);
}

.loc-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 60% 20%, rgba(55,243,255,0.18), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(168,85,255,0.16), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.35), rgba(0,0,0,0.72));
}

.loc-hero__inner{
  position: relative;
  z-index: 1;
  padding: 40px 28px;
}

.loc-title{
  margin-top: 14px;
  font-size: 52px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 55px rgba(0,0,0,0.7);
}

.loc-lead{
  margin-top: 10px;
  max-width: 820px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.85;
}
.loc-lead strong{ color: rgba(255,255,255,0.92); }

.loc-wrap{
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 14px;
}

.loc-card{
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.50);
  backdrop-filter: blur(10px);
}

.loc-card__title{
  font-size: 16px;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.92);
}

.loc-kv{
  margin-top: 14px;
  display: grid;
  gap: 6px;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.08);
}

.loc-kv__label{
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.4px;
}

.loc-kv__value{
  font-size: 16px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

.loc-text{
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(255,255,255,0.78);
}

.loc-sub{
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.90);
}

.loc-list{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.loc-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  font-size: 14px;
}

.loc-list li span{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(55,243,255,0.12);
  border: 1px solid rgba(55,243,255,0.20);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  box-shadow: 0 0 18px rgba(55,243,255,0.10);
}

.loc-callout{
  margin-top: 14px;
  border-radius: 20px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(168,85,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(168,85,255,0.18);
  display: grid;
  gap: 6px;
}

.loc-callout__title{
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.loc-callout__text{
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}

.loc-panel{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loc-panelCard{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 70px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.loc-panelCard--glow{
  border-color: rgba(55,243,255,0.18);
  box-shadow:
    0 24px 90px rgba(0,0,0,0.55),
    0 0 60px rgba(55,243,255,0.10);
}

.loc-panelTitle{
  font-size: 13px;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
}

.loc-panelText{
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  font-size: 14px;
}

.loc-chips{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.loc-chip{
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.loc-gallery{
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 0 18px 34px;
}

.loc-gallery__inner{
  border-radius: 26px;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.50);
  backdrop-filter: blur(10px);
}

.loc-gallery__title{
  font-size: 15px;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.90);
}

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

.loc-shot{
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
}

.loc-shot img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.loc-shot:hover img{
  transform: scale(1.02);
  filter: brightness(1.05);
}

.loc-shot figcaption{
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 980px){
  .loc-wrap{ grid-template-columns: 1fr; }
  .loc-grid{ grid-template-columns: 1fr; }
  .loc-shot img{ height: 280px; }
  .loc-title{ font-size: 42px; }
}

@media (max-width: 520px){
  .loc-title{ font-size: 36px; }
}

body.midnight.rankpage .ranks{
  padding-bottom: 28px;
}

.rk-hero{
  position: relative;
  margin: 22px auto 0;
  max-width: 1200px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 110px rgba(0,0,0,0.62);
}

.rk-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 60% 20%, rgba(55,243,255,0.18), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(168,85,255,0.16), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.35), rgba(0,0,0,0.72));
}

.rk-hero__inner{
  position: relative;
  z-index: 1;
  padding: 40px 28px;
}

.rk-title{
  margin-top: 14px;
  font-size: 52px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 55px rgba(0,0,0,0.7);
}

.rk-lead{
  margin-top: 10px;
  max-width: 900px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.85;
}

.rk-hints{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rk-hint{
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.84);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.rk-wrap{
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 18px 34px;
}

.rk-card{
  border-radius: 26px;
  padding: 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.50);
  backdrop-filter: blur(10px);
}

.rk-card__head{
  display: grid;
  gap: 6px;
  padding: 4px 4px 14px;
}

.rk-card__title{
  font-size: 16px;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.92);
}

.rk-card__sub{
  color: rgba(255,255,255,0.70);
  font-size: 13px;
}

.rk-tableWrap{
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
}

.rk-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 760px;
}

.rk-table thead th{
  text-align: left;
  padding: 14px 14px;
  font-size: 12px;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1;
}

.rk-table tbody td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.78);
  vertical-align: top;
  line-height: 1.7;
  font-size: 14px;
}

.rk-table tbody tr:nth-child(odd){
  background: rgba(255,255,255,0.02);
}

.rk-table tbody tr:hover{
  background: rgba(55,243,255,0.05);
}

.rk-col-rang{ width: 92px; }
.rk-col-title{ width: 200px; }

.rk-role{
  font-weight: 800;
  color: rgba(255,255,255,0.92) !important;
}

.rk-rang{
  display: inline-flex;
  align-items: center;
  justify-content: ce
}

body.midnight.rulespage .rules{
  padding-bottom: 28px;
}

.rl-hero{
  position: relative;
  margin: 22px auto 0;
  max-width: 1200px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 110px rgba(0,0,0,0.62);
}

.rl-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 60% 20%, rgba(55,243,255,0.18), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(168,85,255,0.16), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.35), rgba(0,0,0,0.72));
}

.rl-hero__inner{
  position: relative;
  z-index: 1;
  padding: 40px 28px;
}

.rl-title{
  margin-top: 14px;
  font-size: 52px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 55px rgba(0,0,0,0.7);
}

.rl-lead{
  margin-top: 10px;
  max-width: 920px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.85;
}

.rl-wrap{
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 18px 34px;
}

.rl-card{
  border-radius: 26px;
  padding: 20px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.50);
  backdrop-filter: blur(10px);
}

.rl-card__head{
  display: grid;
  gap: 8px;
  padding: 4px 4px 14px;
}

.rl-kicker{
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}

.rl-card__title{
  font-size: 16px;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.92);
}

.rl-card__sub{
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  line-height: 1.8;
}

.rl-list{
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 10px;
}

.rl-list li{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  font-size: 14px;
}

.rl-list li span{
  color: rgba(55,243,255,0.92);
  text-shadow: 0 0 16px rgba(55,243,255,0.25);
}

.rl-divider{
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 16px 0;
}

.rl-tableWrap{
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
  margin-top: 10px;
}

.rl-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 760px;
}

.rl-table thead th{
  text-align: left;
  padding: 14px 14px;
  font-size: 12px;
  letter-spacing: 0.45px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1;
}

.rl-table tbody td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.78);
  vertical-align: top;
  line-height: 1.7;
  font-size: 14px;
}

.rl-table tbody tr:nth-child(odd){
  background: rgba(255,255,255,0.02);
}

.rl-table tbody tr:hover{
  background: rgba(55,243,255,0.05);
}

.rl-col-v{ width: 55%; }
.rl-col-s{ width: 45%; }

.rl-violation{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.rl-violation__text{
  color: rgba(255,255,255,0.80);
}

.rl-tag{
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: #0b0d12;
  white-space: nowrap;
}

.rl-tag--low{
  background: linear-gradient(135deg, rgba(55,243,255,0.75), rgba(255,255,255,0.10));
}

.rl-tag--mid{
  background: linear-gradient(135deg, rgba(168,85,255,0.80), rgba(255,255,255,0.10));
}

.rl-tag--high{
  background: linear-gradient(135deg, rgba(55,243,255,0.95), rgba(168,85,255,0.95));
  box-shadow: 0 0 26px rgba(55,243,255,0.12);
}

.rl-note{
  margin-top: 14px;
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(168,85,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(168,85,255,0.18);
  display: grid;
  gap: 6px;
}

.rl-note__title{
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.rl-note__text{
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}

@media (max-width: 980px){
  .rl-title{ font-size: 42px; }
}

@media (max-width: 520px){
  .rl-title{ font-size: 36px; }
}

.rules-box{
  max-width: 950px;
  margin: 40px auto;
  padding: 35px;

  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);

  box-shadow: 0 25px 90px rgba(0,0,0,0.60);
  backdrop-filter: blur(12px);
}

.rules-title{
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: rgba(255,255,255,0.92);
  text-align: center;
}

.rules-list{
  display: grid;
  gap: 16px;
}

.rule-item{
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 16px 20px;
  border-radius: 18px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.rule-check{
  width: 34px;
  height: 34px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(214,179,106,0.20);
  border: 1px solid rgba(214,179,106,0.35);

  color: #ffda79;
  font-weight: 900;
  font-size: 18px;

  box-shadow: 0 0 18px rgba(214,179,106,0.20);
}

.rule-item p{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 600px){
  .rules-box{
    padding: 20px;
  }

  .rule-item{
    flex-direction: column;
    text-align: center;
  }
}

.rules-table td{
  text-align: left !important;
  padding: 16px 18px !important;
}

.badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  min-width: 110px;

  color: #fff;
}

.badge-light{
  background: linear-gradient(135deg, #19d3c5, #0d7a73);
}

.badge-mid{
  background: linear-gradient(135deg, #8a4fff, #4c1d95);
}

.badge-fast{
  background: linear-gradient(135deg, #37f3ff, #0077ff);
}

.badge-hard{
  background: linear-gradient(135deg, #ff3c8f, #8b0037);
}

.badge-elite{
  background: linear-gradient(135deg, #ffd86b, #b8860b);
}

.rules-table tbody tr:hover{
  background: rgba(255,255,255,0.05) !important;
}

.rules-table td{
  text-align: left !important;
  padding: 16px 18px !important;
  vertical-align: middle;
}

.badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;

  color: #fff;
  white-space: nowrap;
  min-width: 110px;
}

.badge-light{
  background: linear-gradient(135deg, rgba(25,211,197,0.95), rgba(13,122,115,0.95));
  box-shadow: 0 0 22px rgba(25,211,197,0.12);
}

.badge-mid{
  background: linear-gradient(135deg, rgba(138,79,255,0.95), rgba(76,29,149,0.95));
  box-shadow: 0 0 22px rgba(138,79,255,0.12);
}

.badge-hard{
  background: linear-gradient(135deg, rgba(55,243,255,0.95), rgba(138,79,255,0.95));
  box-shadow: 0 0 26px rgba(55,243,255,0.12);
}

.badge-fast{
  background: linear-gradient(135deg, rgba(55,243,255,0.95), rgba(0,119,255,0.95));
  box-shadow: 0 0 22px rgba(55,243,255,0.12);
}

.badge-elite{
  background: linear-gradient(135deg, rgba(255,216,107,0.95), rgba(184,134,11,0.95));
  box-shadow: 0 0 22px rgba(255,216,107,0.12);
}

.table-wrapper tbody tr:hover{
  background: rgba(255,255,255,0.05) !important;
  transform: translateY(-1px);
}

@media (max-width: 560px){
  .badge{
    min-width: 92px;
    padding: 7px 12px;
    font-size: 12px;
  }
  .rules-table td{
    padding: 14px 14px !important;
  }
}

body.vehiclespage .content{
  padding: 26px 34px;
}

.vh-hero{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 110px rgba(0,0,0,0.62);
}

.vh-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 60% 20%, rgba(55,243,255,0.18), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(168,85,255,0.16), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.35), rgba(0,0,0,0.78));
}

.vh-hero__inner{
  position: relative;
  z-index: 1;
  padding: 34px 26px;
}

.vh-badge{
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.vh-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(55,243,255,0.95);
  box-shadow: 0 0 20px rgba(55,243,255,0.25);
}

.vh-title{
  margin-top: 14px;
  font-size: 52px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 55px rgba(0,0,0,0.7);
}

.vh-sub{
  margin-top: 10px;
  max-width: 920px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.85;
}

.vh-stats{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vh-stat{
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.vh-stat__label{
  font-size: 12px;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.64);
}

.vh-stat__value{
  margin-top: 6px;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}

.vh-card{
  margin: 16px 0 18px;
  border-radius: 22px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.vh-card__title{
  color: rgba(255,255,255,0.94);
  font-size: 16px;
  letter-spacing: 0.45px;
}

.vh-card__text{
  margin-top: 8px;
  color: rgba(255,255,255,0.74);
  line-height: 1.85;
  font-size: 14px;
}

.vh-sectionTitle{
  margin: 18px 0 12px;
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.4px;
}

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

.vh-item{
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  box-shadow: 0 26px 90px rgba(0,0,0,0.55);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vh-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 34px 110px rgba(0,0,0,0.62);
}

.vh-item__media{
  position: relative;
  height: 220px;
  background: rgba(255,255,255,0.03);
}

.vh-item__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.03) saturate(1.04);
}

.vh-item__glow{
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(55,243,255,0.20), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(168,85,255,0.18), transparent 55%);
  pointer-events: none;
}

.vh-item__body{
  padding: 14px 14px 16px;
}

.vh-item__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vh-item__name{
  font-size: 16px;
  color: rgba(255,255,255,0.93);
  letter-spacing: 0.3px;
}

.vh-item__desc{
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 13.5px;
}

.vh-pill{
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25px;
  color: #0b0d12;
  white-space: nowrap;
}

.vh-pill--cyan{
  background: linear-gradient(135deg, rgba(55,243,255,0.95), rgba(255,255,255,0.10));
}

.vh-pill--violet{
  background: linear-gradient(135deg, rgba(168,85,255,0.95), rgba(255,255,255,0.10));
}

.vh-pill--gold{
  background: linear-gradient(135deg, rgba(255,216,107,0.95), rgba(255,255,255,0.10));
}

.vh-item--wide{
  grid-column: span 2;
}
.vh-item--wide .vh-item__media{ height: 260px; }

@media (max-width: 980px){
  body.vehiclespage .content{ padding: 22px 18px; }
  .vh-title{ font-size: 42px; }
  .vh-stats{ grid-template-columns: 1fr; }
  .vh-grid{ grid-template-columns: 1fr; }
  .vh-item--wide{ grid-column: auto; }
  .vh-item__media{ height: 220px; }
}

.vh-item__media{
  height: 320px !important;
}

.vh-item--wide .vh-item__media{
  height: 380px !important;   
}

.vh-item__media img{
  object-fit: cover;
  object-position: center center; 
}
.vh-item--wide{
  max-width: 950px;
  margin: 1 auto;
}

body.presencepage .content{ padding: 26px 34px; }

.ap-hero{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 110px rgba(0,0,0,0.62);
  margin-bottom: 16px;
}

.ap-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 60% 20%, rgba(55,243,255,0.16), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(168,85,255,0.14), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.80), rgba(0,0,0,0.35), rgba(0,0,0,0.80));
}

.ap-hero__inner{
  position: relative;
  z-index: 1;
  padding: 34px 26px;
}

.ap-badge{
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.ap-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(55,243,255,0.95);
  box-shadow: 0 0 20px rgba(55,243,255,0.22);
}

.ap-title{
  margin-top: 14px;
  font-size: 48px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 55px rgba(0,0,0,0.7);
}

.ap-sub{
  margin-top: 10px;
  max-width: 980px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.85;
}

.ap-card{
  margin: 14px 0;
  border-radius: 22px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.ap-card__head{ margin-bottom: 10px; }
.ap-card__title{ color: rgba(255,255,255,0.94); font-size: 18px; letter-spacing: 0.35px; }
.ap-card__sub{ margin-top: 6px; color: rgba(255,255,255,0.70); line-height: 1.75; font-size: 13.5px; }

.ap-tableWrap{
  margin-top: 10px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.ap-table thead th{
  padding: 12px 14px !important;
}

.ap-table tbody td{
  padding: 14px 14px !important;
  text-align: left !important;
}

@media (max-width: 980px){
  body.presencepage .content{ padding: 22px 18px; }
  .ap-title{ font-size: 40px; }
}

body.rppage .content{ padding: 26px 34px; }

.rp-hero{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 110px rgba(0,0,0,0.62);
  margin-bottom: 16px;
}

.rp-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 60% 20%, rgba(55,243,255,0.16), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(168,85,255,0.14), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.80), rgba(0,0,0,0.35), rgba(0,0,0,0.80));
}

.rp-hero__inner{
  position: relative;
  z-index: 1;
  padding: 34px 26px;
}

.rp-badge{
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.rp-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(55,243,255,0.95);
  box-shadow: 0 0 20px rgba(55,243,255,0.22);
}

.rp-title{
  margin-top: 14px;
  font-size: 48px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 55px rgba(0,0,0,0.7);
}

.rp-sub{
  margin-top: 10px;
  max-width: 980px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.85;
}

.rp-card{
  margin: 14px 0;
  border-radius: 22px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.rp-card__head{ margin-bottom: 10px; }
.rp-card__title{ color: rgba(255,255,255,0.94); font-size: 18px; letter-spacing: 0.35px; }
.rp-card__sub{ margin-top: 6px; color: rgba(255,255,255,0.70); line-height: 1.75; font-size: 13.5px; }

.rp-tableWrap{
  margin-top: 10px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.rp-table thead th{
  padding: 12px 14px !important;
}

.rp-table tbody td{
  padding: 14px 14px !important;
  text-align: left !important;
}

@media (max-width: 980px){
  body.rppage .content{ padding: 22px 18px; }
  .rp-title{ font-size: 40px; }
}

body.finalpage .content{ padding: 26px 34px; }

.fw-hero{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 110px rgba(0,0,0,0.62);
  margin-bottom: 16px;
}

.fw-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 60% 20%, rgba(55,243,255,0.16), transparent 60%),
    radial-gradient(700px 420px at 30% 70%, rgba(168,85,255,0.14), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.35), rgba(0,0,0,0.82));
}

.fw-hero__inner{
  position: relative;
  z-index: 1;
  padding: 34px 26px;
}

.fw-badge{
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.fw-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(55,243,255,0.95);
  box-shadow: 0 0 20px rgba(55,243,255,0.22);
}

.fw-title{
  margin-top: 14px;
  font-size: 48px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 55px rgba(0,0,0,0.7);
}

.fw-sub{
  margin-top: 10px;
  max-width: 980px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.85;
}

.fw-actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fw-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.25px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fw-btn--primary{
  color: #0b0d12;
  background: linear-gradient(135deg, rgba(55,243,255,0.95), rgba(168,85,255,0.70));
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}

.fw-btn--ghost{
  color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.05);
}

.fw-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.60);
}

.fw-card{
  margin: 14px 0;
  border-radius: 22px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.fw-text{
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  font-size: 15px;
}

.fw-text p{
  margin: 0 0 14px 0;
}

.fw-last{
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
}

@media (max-width: 980px){
  body.finalpage .content{ padding: 22px 18px; }
  .fw-title{ font-size: 40px; }
}

.topbar-container{
  display: block !important;
  min-height: 100vh;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;

  border-bottom: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(900px 220px at 15% 50%, rgba(168,85,255,0.14), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.82), rgba(0,0,0,0.92));

  backdrop-filter: blur(10px);
}

.topbar__inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.topbar__logo{
  width: 44px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(55,243,255,0.18));
}

.topbar__title{
  color: rgba(255,255,255,0.94);
  font-weight: 900;
  letter-spacing: 0.4px;
  line-height: 1.1;
}

.topbar__subtitle{
  color: rgba(255,255,255,0.60);
  font-size: 12px;
  margin-top: 2px;
}

.topbar__nav{
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.topbar__nav a{
  white-space: nowrap;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;

  color: rgba(255,255,255,0.68);
  padding: 10px 12px;
  border-radius: 12px;

  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, border 0.18s ease;
}

.topbar__nav a:hover{
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.topbar__nav a.active{
  color: rgba(255,255,255,0.95);
  background: linear-gradient(135deg, rgba(55,243,255,0.10), rgba(168,85,255,0.10));
  border-color: rgba(55,243,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(168,85,255,0.16);
}

.topbar-content{
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 18px 34px;
}

body.finalpage .content{ padding: 0 !important; }

.fw-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.25px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fw-card{
  border-radius: 22px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}

.fw-card__head{
  margin-bottom: 10px;
}

.fw-card__title{
  color: rgba(255,255,255,0.94);
  font-size: 18px;
  letter-spacing: 0.35px;
}

.fw-card__sub{
  margin-top: 6px;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  font-size: 13.5px;
}

.fw-divider{
  margin: 16px 0;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

.fw-callout{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;

  padding: 14px 14px;
  border-radius: 18px;

  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}

.fw-callout__title{
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  letter-spacing: 0.25px;
}

.fw-callout__text{
  margin-top: 4px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 980px){
  .topbar__inner{ padding: 12px 14px; }
  .topbar-content{ padding: 18px 14px 28px; }
  .fw-title{ font-size: 40px; }
}
.vehicle-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;

  max-width: 1150px;
  margin: 50px auto;
}
.vh-hero{
  padding: 40px 0 25px !important;
  min-height: unset !important;
}

.vh-title{
  font-size: 52px !important; 
  margin-bottom: 10px !important;
}

.vh-lead{
  font-size: 15px !important;
  max-width: 700px;
  margin-bottom: 20px !important;
}
.vh-stats{
  margin-top: 20px !important;
  gap: 12px !important;
}

.vh-stat{
  padding: 12px 16px !important;
  font-size: 14px !important;
  border-radius: 14px !important;
}
.vh-panel{
  margin: 25px auto !important;
  padding: 18px 20px !important;
  max-width: 950px !important;
}
.vehicle-grid{
  margin-top: 25px !important;
  max-width: 1050px !important;
  gap: 18px !important;
}
.vh-item{
  height: 260px !important; 
}

.vh-item img{
  height: 100% !important;
  object-fit: cover !important;
}
.content{
  padding-top: 40px !important;
}

.container{
  align-items: flex-start !important;
}

.vh-hero{
  padding: 60px 0 40px !important;
}

.vh-hero__inner{
  max-width: 1050px !important;
  margin: 0 auto !important;
  padding: 55px 60px !important;

  border-radius: 26px !important;
  border: 1px solid rgba(255,255,255,0.08);

  background: radial-gradient(
    circle at top left,
    rgba(0,255,255,0.12),
    rgba(0,0,0,0.92)
  ) !important;

  box-shadow: 0 0 80px rgba(0,0,0,0.65) !important;
}
.vh-title{
  font-size: 64px !important;
  margin-bottom: 15px !important;
}

.vh-lead{
  font-size: 16px !important;
  max-width: 700px !important;
  opacity: 0.8;
}
.vh-hints{
  margin-top: 22px !important;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vh-hint{
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.vehicle-grid{
  margin-top: 35px !important;
}

.vh-hero{
  padding: 45px 0 30px !important; 
}

.vh-hero__inner{
  max-width: 1250px !important; 
  margin: 0 auto !important;

  padding: 40px 65px !important; 

  border-radius: 26px !important;
  border: 1px solid rgba(255,255,255,0.08);

  background: radial-gradient(
    circle at top left,
    rgba(0,255,255,0.12),
    rgba(0,0,0,0.92)
  ) !important;

  box-shadow: 0 0 70px rgba(0,0,0,0.65) !important;
}
.vh-title{
  font-size: 56px !important;
  margin-bottom: 10px !important;
  line-height: 1.05;
}
.vh-lead{
  font-size: 15px !important;
  max-width: 760px !important;
  opacity: 0.78;
  line-height: 1.5;
}
.vh-hints{
  margin-top: 16px !important;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vh-hint{
  padding: 7px 13px;
  font-size: 12.5px;
}
background: radial-gradient(
    circle at top left,
    rgba(0,255,255,0.12),
    rgba(0,0,0,0.92)
);

.vh-hero__inner{
  max-width: 1250px !important;
  margin: 0 auto !important;
  padding: 40px 65px !important;

  border-radius: 26px !important;
  border: 1px solid rgba(255,255,255,0.08);

  background: radial-gradient(
      circle at top left,
      rgba(120,70,255,0.16),
      rgba(0,0,0,0.92)
  ) !important;

  box-shadow:
    0 0 90px rgba(0,0,0,0.70),
    0 0 45px rgba(120,70,255,0.10) !important;
}
.vh-hero__inner::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;

  background: radial-gradient(
    circle at top right,
    rgba(0,200,255,0.06),
    transparent 70%
  );

  pointer-events:none;
}
.vh-hero__inner{
  position: relative;
}

body.Fahrzeuge{
  background:
    radial-gradient(1200px 800px at 70% 10%, rgba(120,70,255,0.10), transparent 60%),
    radial-gradient(900px 700px at 20% 90%, rgba(0,200,255,0.06), transparent 55%),
    linear-gradient(180deg, #0b0b10 0%, #07070b 55%, #050507 100%);
}

.vh-hero{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 46px 0 26px;
  background: none; 
}

.vh-hero__inner{
  position: relative;
  width: 100%;
  max-width: 1250px;
  padding: 42px 64px;

  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.10);

  background:
    radial-gradient(900px 420px at 18% 65%, rgba(120,70,255,0.18), transparent 60%),
    radial-gradient(800px 420px at 72% 35%, rgba(0,200,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));

  box-shadow:
    0 34px 110px rgba(0,0,0,0.65),
    0 0 45px rgba(120,70,255,0.12);
}

.vh-hero .mc-badge{
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  letter-spacing: 0.35px;
}

.vh-hero .mc-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,200,255,0.95);
  box-shadow: 0 0 18px rgba(0,200,255,0.20);
}

.vh-title{
  margin-top: 14px;
  font-size: 62px;
  line-height: 1.05;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 18px 55px rgba(0,0,0,0.7);
}

.vh-lead{
  margin-top: 10px;
  max-width: 860px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
}

.vh-hints{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vh-hint{
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}

.vh-panel{
  width: 100%;
  max-width: 1250px;
  margin: 18px auto 0;
  padding: 18px 22px;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.vh-panel__title{
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  letter-spacing: 0.25px;
  margin-bottom: 6px;
}

.vh-panel__text{
  color: rgba(255,255,255,0.70);
  font-size: 13.5px;
  line-height: 1.75;
}

.vh-section{
  max-width: 1250px;
  margin: 26px auto 0;
}

.vh-section__title{
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  margin: 16px 0 14px;
}

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

  width: 100%;
  max-width: 1250px;
  margin: 0 auto 26px;
}

.car-card{
  border-radius: 20px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 70px rgba(0,0,0,0.55);

  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.car-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 90px rgba(0,0,0,0.65);
}

.car-card__media{
  position: relative;
  height: 240px;
  background: rgba(0,0,0,0.35);
}

.car-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.car-card__media--contain img{
  object-fit: contain;
  padding: 14px;
}

.car-card__body{
  padding: 14px 14px 16px;
}

.car-card__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.car-card__name{
  color: rgba(255,255,255,0.94);
  font-size: 16px;
  letter-spacing: 0.2px;
}

.car-tag{
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.car-card__desc{
  color: rgba(255,255,255,0.70);
  font-size: 13.5px;
  line-height: 1.65;
}

.car-pill{
  position: absolute;
  right: 12px;
  bottom: 12px;

  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

.car-pill--street{ background: linear-gradient(135deg, rgba(0,200,255,0.35), rgba(0,0,0,0.35)); }
.car-pill--grip{ background: linear-gradient(135deg, rgba(120,70,255,0.35), rgba(0,0,0,0.35)); }
.car-pill--classic{ background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(0,0,0,0.35)); }
.car-pill--elite{ background: linear-gradient(135deg, rgba(255,180,70,0.22), rgba(0,0,0,0.35)); }
.car-pill--heavy{ background: linear-gradient(135deg, rgba(255,70,160,0.20), rgba(0,0,0,0.35)); }

.car-card--wide{
  grid-column: 1 / -1;
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 980px){
  .vh-hero__inner{ padding: 34px 18px; }
  .vh-title{ font-size: 48px; }

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

  .car-card__media{ height: 220px; }
}

body.Fahrzeuge{
  background:
    radial-gradient(1200px 800px at 70% 10%, rgba(120,70,255,0.11), transparent 60%),
    radial-gradient(900px 700px at 20% 90%, rgba(0,200,255,0.07), transparent 55%),
    linear-gradient(180deg, #0b0b10 0%, #07070b 55%, #050507 100%);
}

.vh-hero{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 46px 0 24px;
  background: none;
}

.vh-hero__inner{
  position: relative;
  width: 100%;
  max-width: 1260px;
  padding: 40px 64px 34px;

  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.10);

  background:
    radial-gradient(900px 420px at 18% 65%, rgba(120,70,255,0.18), transparent 60%),
    radial-gradient(800px 420px at 72% 35%, rgba(0,200,255,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));

  box-shadow:
    0 30px 110px rgba(0,0,0,0.70),
    0 0 50px rgba(120,70,255,0.14);
  overflow: hidden;
}

.vh-hero__inner::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background:
    radial-gradient(600px 280px at 18% 30%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(600px 280px at 75% 40%, rgba(255,255,255,0.03), transparent 65%);
  pointer-events:none;
}

.vh-hero .mc-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,200,255,0.95);
  box-shadow: 0 0 18px rgba(0,200,255,0.25);
}

.vh-title{
  margin-top: 14px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.97);
  text-shadow: 0 18px 55px rgba(0,0,0,0.75);
}

.vh-lead{
  margin-top: 10px;
  max-width: 860px;
  color: rgba(255,255,255,0.74);
  font-size: 15px;
  line-height: 1.75;
}

.vh-hint{
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.90);
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
}

.vh-panel{
  width: 100%;
  max-width: 1260px;
  margin: 18px auto 0;
  padding: 18px 22px;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: 0 18px 60px rgba(0,0,0,0.50);
}

.vh-panel__title{
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  letter-spacing: 0.25px;
  margin-bottom: 6px;
}

.vh-section{
  max-width: 1260px;
  margin: 26px auto 0;
}

.vh-section__title{
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  margin: 16px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vh-section__title::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(120,70,255,0.9);
  box-shadow: 0 0 22px rgba(120,70,255,0.25);
}

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

  width: 100%;
  max-width: 1260px;
  margin: 0 auto 26px;
}


.car-card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);

  background:
    radial-gradient(1200px 240px at 50% 0%, rgba(255,255,255,0.04), transparent 55%),
    rgba(255,255,255,0.022);

  box-shadow: 0 16px 60px rgba(0,0,0,0.55);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.car-card:hover{
  transform: translateY(-3px);
  border-color: rgba(120,70,255,0.25);
  box-shadow:
    0 26px 95px rgba(0,0,0,0.70),
    0 0 45px rgba(120,70,255,0.08);
}


.car-card__media{
  position: relative;
  height: 220px;
  background: rgba(0,0,0,0.35);
}

.car-card__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.55));
  pointer-events:none;
}

.car-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.car-card:hover .car-card__media img{
  transform: scale(1.06);
  filter: brightness(1.03);
}

.car-card__media--contain img{
  object-fit: contain;
  padding: 14px;
  transform: none;
}

.car-card__body{
  padding: 14px 16px 16px;
}

.car-card__name{
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  letter-spacing: 0.2px;
}

.car-tag{
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.28);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.car-card__desc{
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  line-height: 1.65;
}

.car-pill{
  position: absolute;
  right: 12px;
  bottom: 12px;

  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.35px;

  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}


.car-pill--street{ box-shadow: 0 0 35px rgba(0,200,255,0.10); }
.car-pill--grip{ box-shadow: 0 0 35px rgba(120,70,255,0.10); }
.car-pill--classic{ box-shadow: 0 0 35px rgba(255,255,255,0.08); }
.car-pill--elite{ box-shadow: 0 0 35px rgba(255,180,70,0.10); }
.car-pill--heavy{ box-shadow: 0 0 35px rgba(255,70,160,0.10); }


.car-card--wide{
  grid-column: 1 / -1;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 980px){
  .vh-hero__inner{ padding: 32px 16px 26px; }
  .vh-title{ font-size: 44px; }

  .vehicle-grid{ grid-template-columns: 1fr; }
  .car-card__media{ height: 210px; }
}
.vh-hero__inner{
  border: none !important;
}
.vh-hero__inner::after{
  inset: 0 !important;
}
.vh-hero__inner{
  outline: none !important;
}
.vh-hero__inner{
  border: none !important;
  box-shadow: 0 30px 110px rgba(0,0,0,0.75);
}
.vh-hero__inner{
  border: 1px solid rgba(255,255,255,0.06) !important;
  background: radial-gradient(circle at 30% 40%,
    rgba(120,70,255,0.20),
    rgba(0,0,0,0.85));
}

body.Fahrzeuge .vh-hero,
body.Fahrzeuge .vh-hero::before,
body.Fahrzeuge .vh-hero::after,
body.Fahrzeuge .vh-hero__inner,
body.Fahrzeuge .vh-hero__inner::before,
body.Fahrzeuge .vh-hero__inner::after,
body.Fahrzeuge .vh-hero__wrap,
body.Fahrzeuge .vh-hero__wrap::before,
body.Fahrzeuge .vh-hero__wrap::after{
  border: 0 !important;
  outline: 0 !important;
}

body.Fahrzeuge .vh-hero,
body.Fahrzeuge .vh-hero__inner,
body.Fahrzeuge .vh-hero__wrap{
  box-shadow: none !important;
}

body.Fahrzeuge .vh-hero__inner{
  box-shadow: 0 30px 110px rgba(0,0,0,0.75) !important;
}

.page-hero{
  height: 220px; 
  max-width: 1200px;
  margin: 0 auto 28px;
  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);

  background:
    radial-gradient(900px 500px at 70% 15%, rgba(214,179,106,0.18), transparent 60%),
    radial-gradient(700px 500px at 25% 80%, rgba(255,218,121,0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
}

.page-hero__inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.page-hero__line{
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

.page-hero__title{
  font-size: 46px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 12px 40px rgba(0,0,0,0.75);
}

.image-row{
  max-width: 1100px;
  margin: 32px auto;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.location-image{
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.6);
}

.image-row:has(img:only-child) img{
  max-width: 620px;
}

.page-hero,
.page-hero *,
.content,
.image-row,
.location-image{
  outline: none !important;
}

.mc-hero {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.mc-hero__inner {
  width: min(1200px, 92%) !important;
  margin: 0 auto !important;
  border-radius: 28px;
}


.vh-hero {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.vh-hero__inner {
  width: min(1200px, 92%) !important;
  margin: 0 auto !important;

  border-radius: 28px;


  background:
    radial-gradient(circle at top left,
      rgba(0,255,255,0.18),
      transparent 65%),
    radial-gradient(circle at bottom right,
      rgba(160,70,255,0.18),
      transparent 70%),
    rgba(10,10,14,0.92) !important;
}
body.Fahrzeuge .vh-section,
body.Fahrzeuge .vh-panel,
body.Fahrzeuge .vh-hero {
  background: transparent !important;
  box-shadow: none !important;
}

.leader-grid{
  display: grid;
  grid-template-columns: repeat(3, 360px); 
  gap: 28px;

  justify-content: center; 
  align-items: stretch;

  max-width: 1200px;
  margin: 40px auto 18px; 
  padding: 0;
}


.leader-bottom{
  display: grid;
  grid-template-columns: repeat(2, 360px);
  gap: 28px;

  justify-content: center; 
  align-items: stretch;

  max-width: 1200px;
  margin: 0 auto 60px;     
  padding: 0;
}


.leader-card{
  width: 360px; 
  border-radius: 22px;
  overflow: hidden;

  background: rgba(15, 15, 20, 0.72);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 35px rgba(0,0,0,0.55);

  display: flex;
  flex-direction: column;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.leader-card:hover{
  transform: translateY(-8px);
  border-color: rgba(0,255,255,0.35);
  box-shadow: 0 0 40px rgba(0,255,255,0.15);
}


.leader-card__media{
  height: 320px;
  overflow: hidden;
  flex: 0 0 auto;
}

.leader-card__media img{
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center 18%; 
  transition: transform 0.35s ease;
}

.leader-card:hover .leader-card__media img{
  transform: scale(1.05);
}


.leader-card__body{
  padding: 22px 22px 26px;
  flex: 1 1 auto;
}

.leader-card__name{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.leader-card__role{
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.leader-stats{
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 8px;

  font-size: 14px;
  line-height: 1.6;
}

.leader-stats li strong{
  color: cyan;
  font-weight: 600;
}


@media (max-width: 1150px){
  .leader-grid{
    grid-template-columns: repeat(2, 360px);
    margin-bottom: 18px;
  }
  .leader-bottom{
    grid-template-columns: 360px; 
  }
}

@media (max-width: 760px){
  .leader-grid{
    grid-template-columns: 360px; 
  }
}


body.Auftreten .topbar-content,
body.presencepage .topbar-content{
  max-width: 1300px !important;   
  margin: 0 auto !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}


body.Auftreten .topbar-content > :not(.ap-hero),
body.presencepage .topbar-content > :not(.ap-hero){
  max-width: 1300px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


body.Auftreten .table-wrapper,
body.presencepage .table-wrapper{
  max-width: 1300px !important;
  width: 100% !important;
  margin: 16px auto 0 auto !important;
}


body.Auftreten .topbar-container,
body.Auftreten .topbar-content,
body.presencepage .topbar-container,
body.presencepage .topbar-content{
  width: 100% !important;
  max-width: 1300px !important;
}


@media (max-width: 980px){
  body.Auftreten .topbar-content,
  body.presencepage .topbar-content{
    max-width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.Auftreten .table-wrapper,
  body.presencepage .table-wrapper{
    max-width: 100% !important;
  }
}


body.Auftreten.presencepage .container{
  display: block !important; 
}


body.Auftreten.presencepage main.content{
  width: min(1300px, 92vw) !important;
  margin: 0 auto !important;
  padding: 24px 0 40px !important; 
}


body.Auftreten.presencepage .rk-hero{
  width: 100% !important;
  max-width: 100% !important;
  margin: 22px auto 16px auto !important; 
}


body.Auftreten.presencepage .ap-card{
  width: 100% !important;
  max-width: 100% !important;
  margin: 14px auto !important;
}


body.Auftreten.presencepage .ap-tableWrap{
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;   
}


body.Auftreten.presencepage table.ap-table{
  width: 100% !important;
  max-width: 100% !important;
}


@media (max-width: 980px){
  body.Auftreten.presencepage main.content{
    width: 100% !important;
    margin: 0 auto !important;
    padding: 18px 14px 32px !important; 
  }
}

