@font-face {
  font-family: 'Pricedown Bl';
  src: url('assets/fonts/Pricedown Bl.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Handflair';
  src: url('assets/fonts/Handflair.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Insanibc';
  src: url('assets/fonts/Insanibc.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --menu-active-text-color: #ffd95a;
  --main-header-top: clamp(-4px, calc(50% - 384px), 116px);
  --main-header-size: clamp(3.6rem, 7.8vw, 5.6rem);
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

#mainContent {
  opacity: 0;
  transform: translateY(10px);
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

body.main-ready #mainContent {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

body.no-scroll {
  overflow: hidden;
}

/* Left-side GTA5-style menu (centered) */
.gta-font { font-family: 'Anton', Arial, sans-serif; }

.left-menu {
  position: fixed;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(420px, 86vw);
  padding: 16px 14px;
  border-radius: 12px;
  background: rgba(5,8,15,0.72);
  /* removed backdrop-filter per request: no blur before menu items */
  z-index: 9000; /* below loader (9999) so it stays hidden while loading */
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.menu-header {
  position: fixed;
  left: 50%;
  top: var(--main-header-top);
  width: min(420px, 86vw);
  transform: translateX(-50%);
  font-family: 'Pricedown Bl', 'Anton', Arial, sans-serif;
  font-size: var(--main-header-size);
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  color: #ffffff;
  text-shadow:
    -1px 0 rgba(0, 0, 0, 0.65),
    1px 0 rgba(0, 0, 0, 0.65),
    0 -1px rgba(0, 0, 0, 0.55),
    0 1px rgba(0, 0, 0, 0.55);
  z-index: 9001;
  pointer-events: none;
}

.menu-header-subtitle {
  position: fixed;
  left: 50%;
  top: calc(var(--main-header-top) + var(--main-header-size) + 2px);
  width: min(420px, 86vw);
  transform: translateX(-50%);
  font-family: 'Handflair', cursive;
  font-size: 1.68rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-align: left;
  text-shadow:
    -1px 0 rgba(0, 0, 0, 0.65),
    1px 0 rgba(0, 0, 0, 0.65),
    0 -1px rgba(0, 0, 0, 0.55),
    0 1px rgba(0, 0, 0, 0.55);
  z-index: 9001;
  pointer-events: none;
}

.mobile-back-btn {
  display: none;
}

.feather-scroll-hint {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9002;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(8, 13, 24, 0.78);
  color: rgba(255,255,255,0.92);
  font-family: 'Insanibc', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.feather-scroll-hint.visible {
  opacity: 1;
}

body:not(.feather-friends-active) .feather-scroll-hint {
  opacity: 0 !important;
}

body.feather-friends-active .feather-scroll-hint.visible {
  opacity: 1;
}

.left-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.left-menu .menu-item {
  color: #ffffff;
  padding: 14px 10px;
  font-size: 1.35rem; /* larger menu items */
  text-transform: uppercase;
  letter-spacing: 0.10em;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.left-menu .menu-item + .menu-item { margin-top: 10px; }

.left-menu .menu-item:hover {
  color: #ffd95a;
  transform: translateX(8px);
}

.left-menu .menu-item.active {
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.94), rgba(3, 5, 12, 0.98)),
    radial-gradient(circle at top left, rgba(125, 175, 255, 0.18), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255, 195, 105, 0.12), transparent 35%);
  background-blend-mode: overlay, screen, screen;
  color: var(--menu-active-text-color);
  border-radius: 999px;
  padding-left: 18px;
  padding-right: 18px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
}

.home-panel,
.about-panel,
.early-panel,
.birbcall-panel,
.feather-panel {
  position: fixed;
  top: 50%;
  width: min(300px, 82vw);
  max-width: 300px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(12, 16, 26, 0.86);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 80px rgba(0,0,0,0.32);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  z-index: 8999;
}

.feather-panel {
  visibility: hidden;
}

.home-panel {
  transform: translate(-18px, -50%);
  overflow: hidden;
}

#noobiexPanel,
#noobiexPanelMirror {
  transform: translate(-18px, -50%);
}

#noobiexPanelMirror {
  transform: translate(18px, -50%);
}

#noobiexPanel.visible,
#noobiexPanelMirror.visible {
  transform: translate(0, -50%);
}

#noobiexPanel::before,
#noobiexPanelMirror::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.48), rgba(6, 10, 18, 0.72)),
    url('assets/noobiex.jpeg') center 28%/cover no-repeat;
  filter: blur(1px) saturate(1.06);
  transform: scale(1.03);
  z-index: 0;
}

#noobiexPanel .panel-content,
#noobiexPanelMirror .panel-content {
  position: relative;
  z-index: 1;
}

.about-panel {
  transform: translate(18px, -50%);
  overflow: hidden;
}

.about-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.48), rgba(6, 10, 18, 0.72)),
    url('assets/berge.jpeg') center 28%/cover no-repeat;
  filter: blur(3px) saturate(1.05);
  transform: scale(1.08);
  z-index: 0;
}

.about-panel .panel-content {
  position: relative;
  z-index: 1;
}

.home-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.48), rgba(6, 10, 18, 0.72)),
    url('assets/nestbaum.jpeg') center 28%/cover no-repeat;
  filter: blur(3px) saturate(1.05);
  transform: scale(1.08);
  z-index: 0;
}

.home-panel .panel-content {
  position: relative;
  z-index: 1;
}

.home-panel.visible,
.about-panel.visible,
.early-panel.visible,
.birbcall-panel.visible,
.feather-panel.visible {
  transform: translate(0, -50%);
  opacity: 1;
  pointer-events: auto;
}

.early-panel,
.early-panel.visible {
  transform: none;
  transition: opacity 0.45s ease;
}

.birbcall-panel,
.birbcall-panel.visible {
  transform: none;
  transition: opacity 0.45s ease;
}

#birbcallPanel1 {
  overflow: hidden;
}

#birbcallPanel1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.28), rgba(6, 10, 18, 0.52)),
    url('assets/chartbirb.jpeg?v=20260713-chartbirb1') center center/cover no-repeat;
  filter: saturate(1.04);
  transform: none;
  z-index: 0;
}

#birbcallPanel1 .panel-content {
  position: relative;
  z-index: 1;
}

#birbcallPanel1.is-clickable {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  #birbcallPanel1.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }
}

#birbcallPanel1 {
  overflow: hidden;
}

#birbcallPanel1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.28), rgba(6, 10, 18, 0.52)),
    url('assets/chartbirb.jpeg') center center/cover no-repeat;
  filter: saturate(1.04);
  transform: none;
  z-index: 0;
}

#birbcallPanel1 .panel-content {
  position: relative;
  z-index: 1;
}

#birbcallPanel2 {
  overflow: hidden;
}

#birbcallPanel4 {
  overflow: hidden;
  width: min(206px, 52vw);
  max-width: 206px;
  box-sizing: border-box;
}

#birbcallPanel8 {
  overflow: hidden;
  width: min(206px, 52vw);
  max-width: 206px;
  box-sizing: border-box;
}

#birbcallPanel5,
#birbcallPanel6,
#birbcallPanel7 {
  box-sizing: border-box;
  overflow: hidden;
}

#birbcallPanel4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.76), rgba(6, 12, 24, 0.82));
  z-index: 0;
}

#birbcallPanel8::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 30, 0.76), rgba(6, 12, 24, 0.82));
  z-index: 0;
}

#birbcallPanel2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.24), rgba(6, 10, 18, 0.46)),
    url('assets/basement.jpeg') center center/cover no-repeat;
  filter: saturate(1.04);
  transform: none;
  z-index: 0;
}

#birbcallPanel3 {
  overflow: hidden;
}

#birbcallPanel3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.24), rgba(6, 10, 18, 0.46)),
    url('assets/granny.png') center center/cover no-repeat;
  filter: saturate(1.04);
  transform: none;
  z-index: 0;
}

#birbcallPanel3 .panel-content {
  position: relative;
  z-index: 1;
}

#birbcallPanel5::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.24), rgba(6, 10, 18, 0.46)),
    url('assets/bullchart.jpg') center center/cover no-repeat;
  filter: saturate(1.04);
  transform: none;
  z-index: 0;
}

#birbcallPanel6::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.24), rgba(6, 10, 18, 0.46)),
    url('assets/jackepot.jpeg') center center/cover no-repeat;
  filter: saturate(1.04);
  transform: none;
  z-index: 0;
}

#birbcallPanel1 .panel-content,
#birbcallPanel2 .panel-content,
#birbcallPanel3 .panel-content,
#birbcallPanel5 .panel-content,
#birbcallPanel6 .panel-content,
#birbcallPanel7 .panel-content,
#birbcallPanel4 .panel-content,
#birbcallPanel8 .panel-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

#birbcallPanel1 .panel-content h2,
#birbcallPanel2 .panel-content h2,
#birbcallPanel3 .panel-content h2,
#birbcallPanel5 .panel-content h2,
#birbcallPanel6 .panel-content h2,
#birbcallPanel7 .panel-content h2,
#birbcallPanel4 .panel-content h2,
#birbcallPanel8 .panel-content h2 {
  margin: 0;
}

#birbcallPanel1 .panel-content,
#birbcallPanel2 .panel-content,
#birbcallPanel3 .panel-content,
#birbcallPanel5 .panel-content,
#birbcallPanel6 .panel-content,
#birbcallPanel7 .panel-content,
#birbcallPanel4 .panel-content,
#birbcallPanel8 .panel-content {
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 2px;
}

#birbcallPanel8 .panel-content {
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

#birbcallPanel1 .panel-content h2,
#birbcallPanel2 .panel-content h2,
#birbcallPanel3 .panel-content h2,
#birbcallPanel5 .panel-content h2,
#birbcallPanel6 .panel-content h2,
#birbcallPanel7 .panel-content h2 {
  font-size: 1.55rem;
  line-height: 1.12;
  text-align: left;
}

#birbcallPanel4 .panel-content h2 {
  font-size: 1.12rem;
  letter-spacing: 0.1em !important;
  line-height: 1.18;
  text-align: left;
}

#birbcallPanel8 .panel-content h2 {
  display: none;
}

#birbcallPanel1 .panel-content p,
#birbcallPanel2 .panel-content p,
#birbcallPanel3 .panel-content p,
#birbcallPanel5 .panel-content p,
#birbcallPanel6 .panel-content p,
#birbcallPanel7 .panel-content p {
  margin: 10px 0 0;
  max-width: 58%;
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: left;
}

#birbcallPanel4 .panel-content p {
  margin: 10px 0 0;
  max-width: 100%;
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: left;
}

#birbcallPanel8 .panel-content p {
  margin: 0;
  max-width: 92%;
  font-size: 0.94rem;
  line-height: 1.55;
  text-align: center;
}

#birbcallPanel2.is-clickable {
  cursor: pointer;
}

#birbcallPanel3.is-clickable {
  cursor: pointer;
}

#birbcallPanel5.is-clickable {
  cursor: pointer;
}

#birbcallPanel6.is-clickable {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  #birbcallPanel2.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }

  #birbcallPanel3.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }

  #birbcallPanel5.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }

  #birbcallPanel6.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }
}

.birbcall-panel.visible {
  translate: 0 0;
  transition: opacity 0.45s ease, translate 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .birbcall-panel.visible:hover {
    scale: 1.04;
    box-shadow: 0 40px 92px rgba(0,0,0,0.4);
  }

  #birbcallPanel4.visible:hover {
    scale: 1;
    box-shadow: 0 32px 80px rgba(0,0,0,0.32);
  }

  #birbcallPanel8.visible:hover {
    scale: 1;
    box-shadow: 0 32px 80px rgba(0,0,0,0.32);
  }
}

.birbcall-panel {
  display: none;
  translate: 18px 0;
}

.birbcall-panel.visible,
.birbcall-panel.birbcall-exit {
  display: block;
}

.birbcall-panel.visible,
.birbcall-panel.birbcall-exit {
  visibility: visible;
}

.birbcall-panel.birbcall-exit {
  pointer-events: none;
}

#earlyPanel1 {
  overflow: hidden;
}

#earlyPanel1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.48), rgba(6, 10, 18, 0.72)),
    url('assets/nestbaum.jpeg') center 28%/cover no-repeat;
  filter: blur(3px) saturate(1.05);
  transform: scale(1.08);
  z-index: 0;
}

#earlyPanel1 .panel-content {
  position: relative;
  z-index: 1;
}

#earlyPanel2 {
  overflow: hidden;
}

#earlyPanel2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.48), rgba(6, 10, 18, 0.72)),
    url('assets/schwarm.jpeg') center 28%/cover no-repeat;
  filter: blur(3px) saturate(1.05);
  transform: scale(1.08);
  z-index: 0;
}

#earlyPanel2 .panel-content {
  position: relative;
  z-index: 1;
}

#earlyPanel3 {
  overflow: hidden;
}

#earlyPanel3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.48), rgba(6, 10, 18, 0.72)),
    url('assets/citybirb.jpeg') center 28%/cover no-repeat;
  filter: blur(3px) saturate(1.05);
  transform: scale(1.08);
  z-index: 0;
}

#earlyPanel3 .panel-content {
  position: relative;
  z-index: 1;
}

.feather-panel {
  overflow: hidden;
}

#featherLeft5::before,
#featherLeft6::before,
#featherLeft7::before,
#featherLeft8::before,
#featherRight5::before,
#featherRight6::before,
#featherRight7::before,
#featherRight8::before {
  display: none !important;
  background: none !important;
}

#featherLeft1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.18), rgba(6, 10, 18, 0.42)),
    url('assets/titus.jpeg') center 22%/cover no-repeat;
  filter: saturate(1.02);
  transform: scale(1.02);
  z-index: 0;
}

#featherLeft2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.2), rgba(6, 10, 18, 0.45)),
    url('assets/batnater.jpeg') calc(100% + 14px) 45%/cover no-repeat;
  filter: saturate(1.04);
  transform: scale(1.03);
  z-index: 0;
}

#featherLeft3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.22), rgba(6, 10, 18, 0.5)),
    url('assets/racoon.jpeg') center 42%/cover no-repeat;
  filter: saturate(1.03);
  transform: scale(1.02);
  z-index: 0;
}

#featherLeft4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.22), rgba(6, 10, 18, 0.5)),
    url('assets/wobbly.jpeg') 100% 100%/contain no-repeat;
  filter: saturate(1.03);
  transform: none;
  z-index: 0;
}

#featherLeft5::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.18), rgba(6, 10, 18, 0.42)),
    url('assets/titus.jpeg') center 22%/cover no-repeat;
  filter: saturate(1.02);
  transform: scale(1.02);
  z-index: 0;
}

#featherLeft6::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.2), rgba(6, 10, 18, 0.45)),
    url('assets/batnater.jpeg') calc(100% + 14px) 45%/cover no-repeat;
  filter: saturate(1.04);
  transform: scale(1.03);
  z-index: 0;
}

#featherLeft7::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.22), rgba(6, 10, 18, 0.5)),
    url('assets/racoon.jpeg') center 42%/cover no-repeat;
  filter: saturate(1.03);
  transform: scale(1.02);
  z-index: 0;
}

#featherLeft8::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.22), rgba(6, 10, 18, 0.5)),
    url('assets/wobbly.jpeg') 100% 100%/contain no-repeat;
  filter: saturate(1.03);
  transform: none;
  z-index: 0;
}

#featherRight1::before,
#featherRight5::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.2), rgba(6, 10, 18, 0.46)),
    url('assets/bull.jpeg') center 46%/cover no-repeat;
  filter: saturate(1.03);
  transform: scale(1.02);
  z-index: 0;
}

#featherRight1 .panel-content,
#featherRight5 .panel-content {
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#featherRight1 .panel-content h2,
#featherRight5 .panel-content h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.12;
  text-align: left;
}

#featherRight1 .panel-content p,
#featherRight5 .panel-content p {
  margin: 10px 0 0;
  max-width: 58%;
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: left;
}

#featherRight2::before,
#featherRight6::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(6, 10, 18, 0.62) 0%, rgba(6, 10, 18, 0.42) 48%, rgba(6, 10, 18, 0.2) 100%),
    url('assets/james.jpeg') 76% 46%/cover no-repeat;
  filter: saturate(1.03);
  transform: scale(1.02);
  z-index: 0;
}

#featherRight2 .panel-content,
#featherRight6 .panel-content {
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}

#featherRight2 .panel-content h2,
#featherRight6 .panel-content h2 {
  margin: -6px 0 0;
  font-size: 1.44rem;
  line-height: 1.12;
  text-align: left;
}

#featherRight2 .panel-content p,
#featherRight6 .panel-content p {
  margin: 8px 0 0;
  max-width: 55%;
  font-size: 0.84rem;
  line-height: 1.44;
  text-align: left;
}

#featherRight3::before,
#featherRight7::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 10, 18, 0.32) 0%, rgba(6, 10, 18, 0.52) 56%, rgba(6, 10, 18, 0.24) 100%),
    url('assets/og.jpeg') 106% 76%/92% auto no-repeat;
  filter: saturate(1.03);
  transform: none;
  z-index: 0;
}

#featherRight3 .panel-content,
#featherRight7 .panel-content {
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#featherRight3 .panel-content h2,
#featherRight7 .panel-content h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.12;
  text-align: left;
}

#featherRight3 .panel-content p,
#featherRight7 .panel-content p {
  margin: 10px 0 0;
  max-width: 58%;
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: left;
}

#featherRight4::before,
#featherRight8::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(6, 10, 18, 0.62) 0%, rgba(6, 10, 18, 0.42) 48%, rgba(6, 10, 18, 0.2) 100%),
    url('assets/kelly.jpeg') 78% 46%/cover no-repeat;
  filter: saturate(1.03);
  transform: scale(1.02);
  z-index: 0;
}

#featherRight4 .panel-content,
#featherRight8 .panel-content {
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

#featherRight4 .panel-content h2,
#featherRight8 .panel-content h2 {
  margin: 0;
  font-size: 1.44rem;
  line-height: 1.12;
  text-align: left;
}

#featherRight4 .panel-content p,
#featherRight8 .panel-content p {
  margin: 10px 0 0;
  max-width: 55%;
  font-size: 0.86rem;
  line-height: 1.46;
  text-align: left;
}

.feather-panel .panel-content {
  position: relative;
  z-index: 1;
  max-width: 14ch;
}

.feather-panel .panel-content p {
  line-height: 1.35;
  white-space: pre-line;
}

.feather-panel .panel-content h2 {
  margin-top: -4px;
}

#featherLeft1.is-clickable {
  cursor: pointer;
}

#featherLeft2.is-clickable {
  cursor: pointer;
}

#featherLeft3.is-clickable {
  cursor: pointer;
}

#featherLeft4.is-clickable {
  cursor: pointer;
}

#featherRight1.is-clickable {
  cursor: pointer;
}

#featherRight3.is-clickable {
  cursor: pointer;
}

#featherRight2.is-clickable,
#featherRight4.is-clickable {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  #featherLeft1.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }

  #featherLeft2.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }

  #featherLeft3.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }

  #featherLeft4.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }

  #featherRight1.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }

  #featherRight3.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }

  #featherRight2.is-clickable:hover,
  #featherRight4.is-clickable:hover {
    border-color: rgba(255, 217, 90, 0.55);
  }
}

.feather-panel,
.feather-panel.visible {
  transform: none;
  transition: opacity 0.45s ease, scale 0.24s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .feather-panel.visible:hover {
    scale: 1.04;
    box-shadow: 0 40px 92px rgba(0,0,0,0.4);
  }
}

.feather-panel {
  display: none;
}

.feather-panel.visible,
.feather-panel.feather-exit {
  display: block;
}

.feather-panel.visible,
.feather-panel.feather-exit {
  visibility: visible;
}

@keyframes featherPanelIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.feather-panel.feather-animate {
  animation: featherPanelIn 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes featherPanelOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-18px) scale(0.94);
    filter: blur(10px);
  }
}

.feather-panel.feather-exit {
  animation: featherPanelOut 360ms cubic-bezier(0.4, 0, 0.2, 1) both;
  pointer-events: none;
}

.feather-panel {
  width: min(360px, 86vw);
  max-width: 360px;
  padding: 22px;
  height: 210px;
  box-sizing: border-box;
}

#earlyPanel1.visible {
  border-color: rgba(77, 255, 128, 0.95);
  box-shadow: 0 0 0 2px rgba(77, 255, 128, 0.22), 0 0 28px rgba(77, 255, 128, 0.35), 0 32px 80px rgba(0,0,0,0.32);
}

@media (max-width: 900px) {
  .loader-language {
    display: inline-flex;
    left: calc(env(safe-area-inset-left) + 16px);
    right: auto;
    bottom: calc(env(safe-area-inset-bottom) + 16px);
    transform: none;
    max-width: calc(100vw - 24px);
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    gap: 4px;
  }

  #homePanel,
  #noobiexPanel,
  #flockPanel,
  #aboutPanel,
  #earlyPanel1,
  #earlyPanel2,
  #earlyPanel3 {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: min(86vw, 340px);
    max-width: 340px;
    box-sizing: border-box;
    max-height: none;
    overflow: visible;
  }

  .menu-header {
    top: calc(env(safe-area-inset-top) + 10px);
    width: min(92vw, 380px);
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .menu-header-subtitle {
    top: calc(env(safe-area-inset-top) + 82px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: min(92vw, 380px);
    font-size: 1rem;
  }

  .left-menu {
    display: block;
    width: min(90vw, 344px);
    max-height: 42svh;
    overflow: auto;
    top: 58%;
    padding: 10px 8px;
    border-radius: 14px;
    text-align: center;
  }

  #homePanel,
  #homePanelExtra,
  #homePanelWhy,
  #noobiexPanel,
  #noobiexPanelMirror,
  #flockPanel,
  #aboutPanel,
  #earlyPanel1,
  #earlyPanel2,
  #earlyPanel3,
  .birbcall-panel {
    max-height: min(62svh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .left-menu .menu-item {
    font-size: 0.94rem;
    padding: 8px 6px;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .feather-panel {
    width: min(92vw, 380px);
    max-width: 380px;
    padding: 22px;
    height: 210px;
    box-sizing: border-box;
    max-height: none;
    overflow: visible;
  }

  .feather-panel .panel-content h2 {
    font-size: 1.06rem;
  }

  .feather-panel .panel-content p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .page-footer {
    width: min(92vw, 700px);
    bottom: calc(env(safe-area-inset-bottom) + 8px);
    font-size: 0.7rem;
  }

  .mobile-back-btn {
    position: fixed;
    left: 50%;
    top: calc(env(safe-area-inset-top) + 12px);
    transform: translateX(-50%);
    z-index: 9105;
    display: none;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(8, 13, 24, 0.88);
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .feather-scroll-hint {
    display: none !important;
  }

  body.mobile-panel-open .left-menu,
  body.mobile-panel-open .menu-header,
  body.mobile-panel-open .menu-header-subtitle {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translate(-50%, -48%) scale(0.98) !important;
  }

  body.mobile-panel-open .mobile-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.mobile-panel-open,
  html.mobile-panel-open {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  body.mobile-panel-open #mainContent {
    display: block !important;
    height: auto !important;
    min-height: 100svh !important;
    max-height: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-top: calc(env(safe-area-inset-top) + 56px) !important;
    padding-bottom: calc(env(safe-area-inset-bottom) + 12px) !important;
  }

  body.mobile-panel-open #homePanel,
  body.mobile-panel-open #homePanelExtra,
  body.mobile-panel-open #homePanelWhy,
  body.mobile-panel-open #noobiexPanel,
  body.mobile-panel-open #flockPanel,
  body.mobile-panel-open #aboutPanel,
  body.mobile-panel-open #earlyPanel1,
  body.mobile-panel-open #earlyPanel2,
  body.mobile-panel-open #earlyPanel3,
  body.mobile-panel-open .birbcall-panel,
  body.mobile-panel-open .feather-panel {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: min(90vw, 344px) !important;
    max-width: 344px !important;
    margin: 0 auto 8px !important;
    max-height: min(56svh, 420px) !important;
    overflow-y: auto !important;
    border-radius: 16px !important;
    padding: 16px !important;
  }

  body.mobile-panel-open .home-panel[aria-hidden='true'],
  body.mobile-panel-open .about-panel[aria-hidden='true'],
  body.mobile-panel-open .early-panel[aria-hidden='true'],
  body.mobile-panel-open .birbcall-panel[aria-hidden='true'],
  body.mobile-panel-open .feather-panel[aria-hidden='true'] {
    display: none !important;
  }

  body.mobile-panel-open .home-panel[aria-hidden='false'],
  body.mobile-panel-open .about-panel[aria-hidden='false'],
  body.mobile-panel-open .early-panel[aria-hidden='false'],
  body.mobile-panel-open .birbcall-panel[aria-hidden='false'],
  body.mobile-panel-open .feather-panel[aria-hidden='false'] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  body.mobile-panel-open #aboutPanel[aria-hidden='false'] {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: min(90vw, 344px) !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.mobile-panel-open #noobiexPanel[aria-hidden='false'] {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: min(90vw, 344px) !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.mobile-panel-open #noobiexPanelMirror[aria-hidden='false'] {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: min(90vw, 344px) !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.mobile-panel-open #homePanel[aria-hidden='false'] {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 18px auto 8px !important;
    width: min(90vw, 344px) !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
  }

  body.mobile-panel-open #homePanelExtra[aria-hidden='false'],
  body.mobile-panel-open #homePanelWhy[aria-hidden='false'] {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto 8px !important;
    width: min(90vw, 344px) !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
  }

  body.mobile-panel-open #earlyPanel1[aria-hidden='false'],
  body.mobile-panel-open #earlyPanel2[aria-hidden='false'],
  body.mobile-panel-open #earlyPanel3[aria-hidden='false'] {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 auto 5px !important;
    width: min(90vw, 344px) !important;
    max-width: 344px !important;
    padding: 16px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    box-sizing: border-box;
    border-radius: 16px !important;
  }

  body.mobile-panel-open #earlyPanel3[aria-hidden='false'] {
    margin-bottom: 0 !important;
  }

  body.mobile-panel-open .home-panel .panel-content,
  body.mobile-panel-open .about-panel .panel-content,
  body.mobile-panel-open .early-panel .panel-content,
  body.mobile-panel-open .birbcall-panel .panel-content,
  body.mobile-panel-open .feather-panel .panel-content {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 100% !important;
    padding-top: 0 !important;
  }

  body.mobile-panel-open .home-panel .panel-content h2,
  body.mobile-panel-open .about-panel .panel-content h2,
  body.mobile-panel-open .early-panel .panel-content h2,
  body.mobile-panel-open .birbcall-panel .panel-content h2,
  body.mobile-panel-open .home-panel .panel-content p,
  body.mobile-panel-open .about-panel .panel-content p,
  body.mobile-panel-open .early-panel .panel-content p,
  body.mobile-panel-open .birbcall-panel .panel-content p,
  body.mobile-panel-open .feather-panel .panel-content p {
    text-align: center !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.mobile-panel-open .page-footer,
  body.mobile-panel-open .main-social-links {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  html.mobile-feather-feed,
  body.mobile-feather-feed {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  body.mobile-feather-feed #mainContent {
    height: auto !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
  }

  body.mobile-feather-feed .menu-header,
  body.mobile-feather-feed .menu-header-subtitle,
  body.mobile-feather-feed .left-menu,
  body.mobile-feather-feed #homePanel,
  body.mobile-feather-feed #noobiexPanel,
  body.mobile-feather-feed #noobiexPanelMirror,
  body.mobile-feather-feed #flockPanel,
  body.mobile-feather-feed #aboutPanel,
  body.mobile-feather-feed #earlyPanel1,
  body.mobile-feather-feed #earlyPanel2,
  body.mobile-feather-feed #earlyPanel3,
  body.mobile-feather-feed .page-footer {
    display: none !important;
  }

  body.mobile-feather-feed .mobile-back-btn {
    display: inline-flex;
    position: sticky;
    top: calc(env(safe-area-inset-top) + 10px);
    top: clamp(14px, calc(50% - 366px), 134px);
    transform: translateX(-50%);
    margin: calc(env(safe-area-inset-top) + 8px) auto 10px;
    z-index: 9200;
  }

  body.mobile-feather-feed .feather-panel {
    position: relative !important;
    top: clamp(76px, calc(50% - 268px), 224px);
    top: auto !important;
    transform: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: min(90vw, 344px) !important;
    max-width: 344px !important;
    margin: 0 auto 5px !important;
    padding: 16px !important;
    border-radius: 16px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: hidden !important;
    box-sizing: border-box;
  }

  body.mobile-feather-feed .feather-panel .panel-content {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    max-width: 100% !important;
    padding-top: 0 !important;
  }

  body.mobile-feather-feed .feather-panel .panel-content h2,
  body.mobile-feather-feed .feather-panel .panel-content p {
    text-align: center !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Enforce one consistent, readable mobile card behavior for all menu panels. */
  body.mobile-panel-open #homePanel[aria-hidden='false'],
  body.mobile-panel-open #homePanelExtra[aria-hidden='false'],
  body.mobile-panel-open #homePanelWhy[aria-hidden='false'],
  body.mobile-panel-open #noobiexPanel[aria-hidden='false'],
  body.mobile-panel-open #noobiexPanelMirror[aria-hidden='false'],
  body.mobile-panel-open #flockPanel[aria-hidden='false'],
  body.mobile-panel-open #aboutPanel[aria-hidden='false'],
  body.mobile-panel-open #earlyPanel1[aria-hidden='false'],
  body.mobile-panel-open #earlyPanel2[aria-hidden='false'],
  body.mobile-panel-open #earlyPanel3[aria-hidden='false'],
  body.mobile-panel-open .birbcall-panel[aria-hidden='false'],
  body.mobile-panel-open .feather-panel[aria-hidden='false'] {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: min(90vw, 344px) !important;
    max-width: 344px !important;
    margin: 0 auto 8px !important;
    max-height: min(56svh, 420px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  body.mobile-panel-open #homePanel[aria-hidden='false'] {
    margin-top: 18px !important;
  }

  body.mobile-panel-open #earlyPanel3[aria-hidden='false'] {
    margin-bottom: 0 !important;
  }

  body.mobile-panel-open #birbcallPanel1[aria-hidden='false'],
  body.mobile-panel-open #birbcallPanel2[aria-hidden='false'],
  body.mobile-panel-open #birbcallPanel3[aria-hidden='false'],
  body.mobile-panel-open #birbcallPanel5[aria-hidden='false'],
  body.mobile-panel-open #birbcallPanel6[aria-hidden='false'],
  body.mobile-panel-open #birbcallPanel7[aria-hidden='false'] {
    width: min(90vw, 344px) !important;
    max-width: 344px !important;
  }

  body.mobile-panel-open #noobiexPanelMirror[aria-hidden='false'] {
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.mobile-feather-feed .feather-panel[aria-hidden='false'] {
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
  }
}

@supports (-webkit-touch-callout: none) {
  html,
  body,
  #mainContent,
  .page-reset {
    min-height: -webkit-fill-available;
    height: -webkit-fill-available;
  }

  .page-reset {
    padding-top: calc(env(safe-area-inset-top) + 16px);
    padding-bottom: calc(env(safe-area-inset-bottom) + 16px);
  }
}

.menu-header, .menu-header-subtitle, .left-menu, .home-panel, .about-panel, .early-panel, .feather-panel {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.home-panel .panel-content h2 {
  margin: 0 0 14px;
  font-family: 'Insanibc', Arial, sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.about-panel .panel-content {
  font-family: 'Insanibc', Arial, sans-serif;
}

.early-panel .panel-content {
  font-family: 'Insanibc', Arial, sans-serif;
}

.early-panel,
.early-panel .panel-content,
.early-panel .panel-content h2,
.early-panel .panel-content p,
.early-panel .panel-content span,
.early-panel .panel-content * {
  font-family: 'Insanibc', Arial, sans-serif;
}

.feather-panel,
.feather-panel .panel-content,
.feather-panel .panel-content h2,
.feather-panel .panel-content p,
.feather-panel .panel-content span,
.feather-panel .panel-content * {
  font-family: 'Insanibc', Arial, sans-serif;
}

.birbcall-panel,
.birbcall-panel .panel-content,
.birbcall-panel .panel-content h2,
.birbcall-panel .panel-content p,
.birbcall-panel .panel-content span,
.birbcall-panel .panel-content * {
  font-family: 'Insanibc', Arial, sans-serif;
}

.home-panel .panel-content h2,
.about-panel .panel-content h2,
.early-panel .panel-content h2 {
  font-size: 1.85rem;
  line-height: 1.15;
}

#earlyPanel1 .panel-content h2,
#earlyPanel2 .panel-content h2,
#earlyPanel3 .panel-content h2 {
  letter-spacing: 0.11em;
}

.home-panel .panel-content h2,
.about-panel .panel-content h2,
.early-panel .panel-content h2,
.birbcall-panel .panel-content h2,
.feather-panel .panel-content h2 {
  color: var(--menu-active-text-color) !important;
}

#noobiexPanel .panel-content h2 .about-link,
#noobiexPanel .panel-content h2 .about-link:visited {
  color: var(--menu-active-text-color) !important;
}

.feather-panel .panel-content h2 {
  font-size: 1.55rem;
  line-height: 1.12;
}

.home-panel .panel-content p,
.about-panel .panel-content p,
.early-panel .panel-content p {
  font-size: 1.08rem;
  line-height: 1.85;
}

.panel-content strong,
.panel-content b {
  letter-spacing: 0.035em;
}

.feather-panel .panel-content p {
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (max-height: 940px) {
  .feather-panel {
    width: min(360px, 86vw);
    max-width: 360px;
    padding: 22px;
    height: 210px;
    border-radius: 22px;
  }

  .feather-panel .panel-content h2 {
    font-size: 1.28rem;
    line-height: 1.1;
  }

  .feather-panel .panel-content p {
    font-size: 0.88rem;
    line-height: 1.45;
  }
}

.about-panel .panel-content h2,
.about-panel .panel-content p,
.about-panel .panel-content span {
  font-family: inherit;
}

.early-panel .panel-content h2,
.early-panel .panel-content p,
.early-panel .panel-content span {
  font-family: inherit;
}

.about-highlight {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.about-link {
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
  display: inline-block;
}

.about-link:hover {
  color: #ffd95a;
}

#noobiexPanel .panel-content h2 .about-link,
#noobiexPanelMirror .panel-content h2 .about-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 10, 18, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

#noobiexPanel .panel-content h2 .about-link-icon,
#noobiexPanelMirror .panel-content h2 .about-link-icon {
  width: 0.95em;
  height: 0.95em;
  object-fit: contain;
  vertical-align: middle;
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 3px rgba(255, 255, 255, 0.28));
}

#noobiexPanel .panel-content h2 .about-link:hover,
#noobiexPanelMirror .panel-content h2 .about-link:hover {
  border-color: rgba(255, 217, 90, 0.75);
  background: rgba(20, 28, 45, 0.48);
  box-shadow: 0 0 0 1px rgba(255, 217, 90, 0.25), 0 0 14px rgba(255, 217, 90, 0.16);
}

#flockPanel .panel-content p .about-link {
  font-size: 1.28rem;
  line-height: 1.2;
}

#flockPanel .flock-telegram-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin: 0 0 0 6px;
  vertical-align: middle;
  object-fit: contain;
}

#flockPanel .flock-join-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
}

#flockPanel .flock-telegram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  #flockPanel .flock-join-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #flockPanel .flock-telegram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #flockPanel .flock-telegram-icon {
    width: 34px;
    height: 34px;
    margin: 0 0 0 6px;
  }
}

.home-panel .panel-content p {
  margin: 0;
  color: #ffffff;
  line-height: 1.75;
  font-size: 1rem;
  font-family: 'Insanibc', Arial, sans-serif;
}

#homePanel .panel-content {
  position: relative;
}

#homePanel .panel-content p,
#homePanelExtra .panel-content p,
#homePanelWhy .panel-content p {
  letter-spacing: 0.01em;
}

#homePanel .home-panel-switch-marker {
  display: block;
  width: 100%;
  margin-top: 10px;
  font-family: 'Insanibc', Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.58);
  text-shadow: none;
  opacity: 0.78;
  text-align: center;
  pointer-events: none;
}

@media (max-width: 900px) {
  #homePanel .home-panel-switch-marker {
    display: none;
  }
}

/* Rolling-in animation for menu items */
@keyframes rollIn {
  0% { opacity: 0; transform: translateY(-26px) rotateX(20deg) scaleY(0.97); }
  65% { opacity: 1; transform: translateY(5px) rotateX(-3deg) scaleY(1.01); }
  100% { opacity: 1; transform: translateY(0) rotateX(0deg) scaleY(1); }
}

.left-menu .menu-item {
  opacity: 1;
  transform: none;
}

body.no-scroll .left-menu .menu-item {
  opacity: 0 !important;
  transform: translateY(-16px) rotateX(8deg) scaleY(0.98) !important;
}

.left-menu.menu-active .menu-item {
  opacity: 0;
  transform-origin: center top;
  animation: rollIn 640ms cubic-bezier(.22,.84,.28,1) forwards;
}
.left-menu.menu-active .menu-item:nth-child(1) { animation-delay: 0ms; }
.left-menu.menu-active .menu-item:nth-child(2) { animation-delay: 90ms; }
.left-menu.menu-active .menu-item:nth-child(3) { animation-delay: 180ms; }
.left-menu.menu-active .menu-item:nth-child(4) { animation-delay: 270ms; }
.left-menu.menu-active .menu-item:nth-child(5) { animation-delay: 360ms; }
.left-menu.menu-active .menu-item:nth-child(6) { animation-delay: 450ms; }
.left-menu.menu-active .menu-item:nth-child(7) { animation-delay: 540ms; }

.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(5, 8, 16, 0.84)),
    url('assets/loader-bg.png') center/cover no-repeat;
  background-blend-mode: overlay;
  z-index: 9999;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-card {
  width: min(560px, calc(100% - 32px));
  padding: 28px 22px 26px;
  border-radius: 28px;
  background: rgba(5, 8, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
  position: relative;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-loader.hidden .loader-card {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
}

.loader-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(36,30,34,0.9);
  color: #ffdba0;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 215, 120, 0.12);
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

.loader-language {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(8, 12, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  z-index: 9999;
}

.loader-lang-label {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.loader-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.loader-lang-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.loader-lang-btn.active {
  background: rgba(255, 217, 90, 0.26);
  border-color: rgba(255, 217, 90, 0.7);
  color: #fff5d4;
}

.loader-flag {
  width: 12px;
  height: 8px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.flag-en {
  background:
    linear-gradient(0deg, transparent 40%, #cf142b 40%, #cf142b 60%, transparent 60%),
    linear-gradient(90deg, transparent 44%, #cf142b 44%, #cf142b 56%, transparent 56%),
    #ffffff;
}

.flag-de {
  background: linear-gradient(180deg, #111111 0 33%, #dd0000 33% 66%, #ffce00 66% 100%);
}

.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33%, #ffffff 33% 66%, #ef4135 66% 100%);
}

@media (max-width: 900px) {
  .loader-language {
    display: inline-flex !important;
    left: calc(env(safe-area-inset-left) + 16px) !important;
    right: auto !important;
    bottom: calc(env(safe-area-inset-bottom) + 16px) !important;
    transform: none !important;
    max-width: calc(100vw - 24px) !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    gap: 4px;
  }

  .zorb-container {
    right: calc(env(safe-area-inset-right) + 14px);
    bottom: calc(env(safe-area-inset-bottom) + 92px);
    padding: 2px 4px;
    gap: 5px;
  }

  .zorb-text {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .zorb-link {
    width: 30px;
    height: 30px;
  }

  .zorb-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 420px) {
  .loader-language {
    left: calc(env(safe-area-inset-left) + 10px) !important;
    bottom: calc(env(safe-area-inset-bottom) + 10px) !important;
    transform: scale(0.96);
    transform-origin: left bottom;
  }

  .zorb-container {
    right: calc(env(safe-area-inset-right) + 10px);
    bottom: calc(env(safe-area-inset-bottom) + 84px);
  }
}

.loader-image {
  width: 100%;
  display: grid;
  place-items: center;
  min-height: 320px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: transparent; /* keep container transparent for freisteller */
  border: 0; /* remove frame so only neon shows */
  overflow: visible;
  cursor: pointer;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.loader-image.fadeout {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
}

.entry-image {
  width: 100%;
}

.loader-logo {
  width: min(100%, 760px);
  max-height: 360px;
  object-fit: contain;
  background: transparent;
  /* remove glow/drop-shadow so the PNG strokes themselves blend naturally */
  filter: none;
  mix-blend-mode: screen;
  image-rendering: optimizeQuality;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
  display: block;
}

.zorb-container {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 9999;
}

.zorb-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.zorb-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  cursor: url('assets/gif/vogel.gif') 16 16, pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.zorb-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.zorb-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95) 0%, rgba(123, 174, 255, 0.76) 22%, rgba(24, 93, 255, 0.55) 56%, rgba(8, 42, 100, 0.94) 100%);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.28), 0 10px 18px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.zorb-text {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .zorb-container {
    left: calc(env(safe-area-inset-left) + 12px) !important;
    right: auto !important;
    bottom: calc(env(safe-area-inset-bottom) + 78px) !important;
    padding: 2px 4px !important;
    gap: 5px !important;
  }

  .zorb-text {
    font-size: 0.62rem !important;
    letter-spacing: 0.08em !important;
  }

  .zorb-link {
    width: 30px !important;
    height: 30px !important;
  }

  .zorb-icon {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 420px) {
  .zorb-container {
    left: calc(env(safe-area-inset-left) + 10px) !important;
    right: auto !important;
    bottom: calc(env(safe-area-inset-bottom) + 70px) !important;
  }
}

.entry-btn {
  width: min(320px, 86%);
  padding: 14px 24px;
  margin-top: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #f9f5e8;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(0,0,0,0.38), inset 0 -4px 12px rgba(255,255,255,0.08);
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  transition: opacity 0.5s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.entry-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 56px rgba(0,0,0,0.42), inset 0 -6px 16px rgba(255,255,255,0.14);
}

.entry-btn.fadeout {
  opacity: 0;
  pointer-events: none;
}

.loader-text {
  margin-top: 12px;
  margin-bottom: 18px;
}

.title {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.05;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  cursor: default;
  pointer-events: none;
}
.loader-text h1 {
  margin: 0;
  font-family: 'Anton', Arial, sans-serif;
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(0,0,0,0.7);
  cursor: default;
  pointer-events: none;
}
.loader-text .subtitle {
  margin: 8px auto 0;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  font-family: "FF Brokenscript", cursive;
  cursor: default;
  pointer-events: none;
}

.loader-text p {
  margin: 14px auto 26px;
  max-width: 540px;
  font-family: "FF Brokenscript", cursive;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.entry-btn.fadeout {
  opacity: 0;
  pointer-events: none;
}

.page-reset {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  height: 100dvh;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.22), rgba(5, 10, 22, 0.5)),
    radial-gradient(circle at top, rgba(145, 197, 255, 0.26), transparent 44%),
    url('assets/skyline.jpeg') center center/cover no-repeat;
  background-blend-mode: multiply, screen, normal;
}

.hero {
  text-align: center;
  margin: 8vh 0 2vh;
}
.hero h1 {
  margin: 0;
  font-family: 'Anton', Arial, sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}
.hero .subtitle {
  margin-top: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  text-transform: none;
  cursor: default;
  pointer-events: none;
}

.logo-banner {
  width: 320px;
  max-width: 36vw;
  margin: 0;
  padding: 0;
  background: transparent;
  position: fixed; /* pin to top-left */
  left: 18px;
  top: 18px;
  z-index: 9100; /* above menu (9000) but below loader (9999) */
  overflow: visible; /* allow cables to extend past the banner container */
}

.logo-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 720px;
  margin: 0 auto;
  background: transparent;
  /* remove artificial glow, keep slight saturation and blend with background */
  filter: saturate(1.06) none;
  mix-blend-mode: screen;
  -webkit-font-smoothing: antialiased;
  image-rendering: optimizeQuality;
  width: calc(100% + 12vw);
  margin: 0 0 0 -6vw; /* shift so cables can reach screen edges */
  filter: saturate(1.04) none;
  transition: transform 420ms ease;
}

@media (max-width: 900px) {
  .main-social-links {
    display: none;
  }

  .logo-banner {
    position: static;
    width: min(760px, 100%);
    margin: 0 auto 24px;
  }
  .logo-banner img { width: calc(100% + 26vw); margin-left: -13vw; }
}

.page-reset h1 {
  margin: 0 0 16px;
  font-size: clamp(2.8rem, 5vw, 4rem);
  letter-spacing: 0.08em;
}

.page-reset p {
  margin: 12px 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.page-footer {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(860px, calc(100vw - 32px));
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  z-index: 8900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.page-footer.visible {
  opacity: 1;
}

.page-footer p {
  margin: 2px 0;
  max-width: none;
}

.main-social-links {
  position: fixed;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 8905;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body.main-ready .main-social-links {
  opacity: 1;
  pointer-events: auto;
}

body.main-ready.feather-friends-active .main-social-links {
  opacity: 0;
  pointer-events: none;
}

.main-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(9, 14, 25, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.main-social-link:hover {
  transform: translateY(-1px);
  background: rgba(17, 24, 40, 0.92);
  border-color: rgba(255, 217, 90, 0.65);
}

.main-social-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(245, 249, 255, 0.98);
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.3), 0 2px 7px rgba(0, 0, 0, 0.35);
}

.main-social-logo {
  width: 12px;
  height: 12px;
  display: block;
  object-fit: contain;
}
