/* ===== VARIABLEN & RESET ===== */
:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-text: #e8e4dc;
  --color-gold: #c9a84c;
  --color-red: #8b2020;
  --font-serif: 'Rubik Glitch', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background-color: var(--color-gold); color: var(--color-bg); }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav--solid {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 168, 76, 0.12);
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}
.nav__logo:hover { opacity: 0.8; }
.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.2s ease;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background-color: var(--color-gold);
  transition: width 0.2s ease;
}
.nav__link:hover, .nav__link--active { color: var(--color-gold); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }

/* Burger-Button (nur Mobile sichtbar) */
.nav__burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  justify-content: space-between;
  z-index: 110;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-gold);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav--open .nav__burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav--open .nav__burger span:nth-child(2) {
  opacity: 0;
}
.nav--open .nav__burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 105;
  }
  .nav--open .nav__links {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav__link {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 38vh;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  will-change: transform;
  animation: hero-zoom 12s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}
.hero__overlay {
  display: none;
}
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}
.hero__titel {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hero__subtitel {
  display: inline-block;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: #000;
  background-color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.6rem 1.4rem;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero__scroll-arrow {
  display: block;
  font-size: 1.5rem;
  color: var(--color-gold);
  animation: scroll-bounce 2.2s ease-in-out infinite;
  opacity: 0.8;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(10px); opacity: 0.4; }
}
@media (max-width: 768px) {
  .hero__bg { inset: 0; background-attachment: scroll; }
}

/* ===== ZITAT SECTION ===== */
.zitat-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zitat-section__bg {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, #1a1208 0%, #0a0a0a 70%);
  will-change: transform;
}
.zitat-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
}
.zitat-section__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
}
.zitat-section__anf {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--color-gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.zitat-section__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.5;
  font-weight: 400;
}
.zitat-section__autor {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.8;
}

/* ===== KAPITEL CARD ===== */
.kapitel-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background-color: var(--color-surface);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-left: 3px solid var(--color-gold);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.kapitel-card:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  border-left-color: var(--color-gold);
}
.kapitel-card:hover .kapitel-card__num,
.kapitel-card:hover .kapitel-card__titel,
.kapitel-card:hover .kapitel-card__teaser,
.kapitel-card:hover .kapitel-card__link {
  color: #000;
}
.kapitel-card--gesperrt { opacity: 0.4; pointer-events: none; }
.kapitel-card__num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
  padding-top: 0.25rem;
}
.kapitel-card__titel {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.kapitel-card__teaser {
  font-size: 0.95rem;
  color: rgba(232, 228, 220, 0.65);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.kapitel-card__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}
.kapitel-card__link:hover { opacity: 0.7; }
.kapitel-card__bald { font-size: 0.8rem; color: rgba(232, 228, 220, 0.3); font-style: italic; }
@media (max-width: 640px) {
  .kapitel-card { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== POST CARD ===== */
.post-card {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(232, 228, 220, 0.08);
}
.post-card__meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.post-card__titel {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.post-card__link { color: var(--color-text); transition: color 0.2s ease; }
.post-card__link:hover { color: var(--color-gold); }
.post-card__beschreibung { font-size: 0.9rem; color: rgba(232, 228, 220, 0.6); line-height: 1.6; }

/* ===== SEKTIONEN ===== */
.section { padding: 6rem 2rem; }
.container { max-width: 900px; margin: 0 auto; }
.section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.section__sub {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 3rem;
}
.kapitel-liste { display: flex; flex-direction: column; gap: 1px; }
.post-liste { margin-top: 0.5rem; }
.alle-link { margin-top: 2rem; text-align: right; }
.alle-link a {
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.alle-link a:hover { opacity: 0.7; }

/* Footer auf Post-Seiten verstecken */
.buch-main ~ .footer { display: none; }

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-surface);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem 2rem;
  margin-top: 6rem;
}
.footer__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer__brand { font-family: var(--font-serif); font-size: 1.2rem; color: var(--color-gold); font-weight: 400; }
.footer__links { display: flex; gap: 2rem; }
.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.5);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--color-gold); }
.footer__copy { font-size: 0.75rem; color: rgba(232, 228, 220, 0.3); }

/* ===== BUCH-NAVIGATION ===== */
.buch-nav {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  pointer-events: none;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.buch-nav__pfeil {
  pointer-events: all;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.3rem;
  opacity: 0.25;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  user-select: none;
}
.buch-nav__pfeil:hover { opacity: 1; transform: scale(1.12); }
.buch-nav__leer {
  width: 2.8rem;
  height: 2.8rem;
}

/* ===== SEITEN-ANIMATIONEN ===== */
@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slide-out-left {
  to { opacity: 0; transform: translateX(-36px); }
}
@keyframes slide-out-right {
  to { opacity: 0; transform: translateX(36px); }
}

.post-main { animation: slide-in-right 0.35s ease both; }
.post-main.from-prev { animation: slide-in-left 0.35s ease both; }
.post-main.exit-next { animation: slide-out-left 0.25s ease forwards; }
.post-main.exit-prev { animation: slide-out-right 0.25s ease forwards; }

@media (max-width: 768px) {
  .buch-nav { padding: 0 0.25rem; }
  .buch-nav__pfeil { width: 2.2rem; height: 2.2rem; font-size: 1rem; }
}

/* ===== BUCH-LAYOUT (E-Book Reader) ===== */
.buch-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: calc(80px + 1.5rem) 2.5rem 1.5rem;
}

.buch-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1280px;
  height: calc(100vh - 80px - 3rem);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.1),
    0 30px 90px rgba(0, 0, 0, 0.85),
    0 8px 24px rgba(0, 0, 0, 0.6);
}

/* Buchrücken — Linie */
.buch-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom,
    rgba(201, 168, 76, 0.05),
    rgba(201, 168, 76, 0.2) 20%,
    rgba(201, 168, 76, 0.2) 80%,
    rgba(201, 168, 76, 0.05)
  );
  z-index: 3;
  pointer-events: none;
}

/* Buchrücken — Schatten */
.buch-wrapper::after {
  content: '';
  position: absolute;
  left: calc(50% - 18px);
  top: 0; bottom: 0;
  width: 36px;
  background: linear-gradient(to right,
    transparent,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.35) 55%,
    transparent
  );
  z-index: 2;
  pointer-events: none;
}

.buch-seite-links {
  background: #151515;
  padding: 3rem 3.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.buch-seite-rechts {
  background: #111;
  padding: 3.5rem 3rem 3rem 4rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  /* Dezenter Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.2) transparent;
}
.buch-seite-rechts::-webkit-scrollbar { width: 4px; }
.buch-seite-rechts::-webkit-scrollbar-track { background: transparent; }
.buch-seite-rechts::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.2); border-radius: 2px; }

/* Dekorative Kapitelzahl */
.buch-kapitel-deko {
  font-family: var(--font-serif);
  font-size: 18rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.05);
  line-height: 1;
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  user-select: none;
  pointer-events: none;
}

.buch-kapitel-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
  opacity: 0.8;
}

.buch-titel {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.12;
  margin-bottom: 2rem;
}

.buch-beschreibung {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(232, 228, 220, 0.45);
  font-style: italic;
  border-left: 2px solid rgba(201, 168, 76, 0.5);
  padding-left: 1rem;
  margin-bottom: auto;
}

.buch-meta {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.2);
  margin-top: 2.5rem;
}

/* Animationen */
.buch-main { animation: slide-in-right 0.35s ease both; }
.buch-main.from-prev { animation: slide-in-left 0.35s ease both; }
.buch-main.exit-next { animation: slide-out-left 0.25s ease forwards; }
.buch-main.exit-prev { animation: slide-out-right 0.25s ease forwards; }

@media (max-width: 900px) {
  .buch-main { padding: calc(80px + 1rem) 0 0; align-items: flex-start; }
  .buch-wrapper {
    grid-template-columns: 1fr;
    height: auto;
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
  .buch-wrapper::before, .buch-wrapper::after { display: none; }
  .buch-seite-links { padding: 3rem 1.5rem 2rem; justify-content: flex-start; }
  .buch-seite-rechts { padding: 2rem 1.5rem 4rem; }
  .buch-kapitel-deko { display: none; }
}

/* ===== POST LAYOUT ===== */
.post-main { padding-top: 8rem; padding-bottom: 4rem; min-height: 100vh; }
.post-container { max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.post-header { margin-bottom: 3rem; }
.post-header__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.post-header__titel {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.post-header__beschreibung {
  font-size: 1.05rem;
  color: rgba(232, 228, 220, 0.6);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--color-gold);
  padding-left: 1rem;
}
.post-body { font-size: 18px; line-height: 1.8; color: var(--color-text); }
.post-body p { margin-bottom: 1.6rem; }
.post-body h2, .post-body h3 { font-family: var(--font-serif); color: var(--color-text); margin: 2.5rem 0 1rem; }
.post-body h2 { font-size: 1.6rem; }
.post-body h3 { font-size: 1.25rem; }
.post-body hr { border: none; border-top: 1px solid rgba(232, 228, 220, 0.12); margin: 2.5rem 0; }
.post-body blockquote {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: rgba(232, 228, 220, 0.75);
}
.post-body strong { color: var(--color-text); font-weight: 600; }
.post-body em { font-style: italic; color: rgba(232, 228, 220, 0.85); }
.post-nav { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid rgba(232, 228, 220, 0.1); }
.post-nav__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.4);
  margin-bottom: 0.5rem;
}
.post-nav__link {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-text);
  transition: color 0.2s ease;
}
.post-nav__link:hover { color: var(--color-gold); }

/* ===== FORTSCHRITTSBALKEN ===== */
.fortschritt {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
/* Im Buchkontext: unten fixiert */
.buch-seite-links .fortschritt {
  position: absolute;
  bottom: 2.5rem;
  left: 3.5rem;
  right: 3.5rem;
  margin-bottom: 0;
}
.fortschritt__balken {
  flex: 1;
  height: 2px;
  background-color: rgba(232, 228, 220, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.fortschritt__fill {
  height: 100%;
  background-color: var(--color-gold);
  border-radius: 2px;
  transition: width 0.6s ease;
}
.fortschritt__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 228, 220, 0.3);
  white-space: nowrap;
}

/* ===== ÜBER MICH ===== */
.page-main { padding-top: 8rem; padding-bottom: 6rem; min-height: 100vh; }
.page-container { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.profil {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.profil__bild-wrapper { position: sticky; top: 7rem; }
.profil__bild { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; filter: grayscale(20%); }
.profil__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}
.profil__name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 2.5rem;
  line-height: 1.1;
}
.profil__beschreibung p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(232, 228, 220, 0.8);
  margin-bottom: 1.4rem;
}
.profil__grund {
  font-style: italic;
  color: var(--color-text) !important;
  border-left: 2px solid var(--color-gold);
  padding-left: 1.25rem;
}
@media (max-width: 768px) {
  .profil { grid-template-columns: 1fr; gap: 2.5rem; }
  .profil__bild-wrapper { position: static; max-width: 280px; }
}

/* ===== SIMPLE PAGES ===== */
.simple-main { padding-top: 8rem; padding-bottom: 4rem; min-height: 100vh; }
.simple-container { max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.page-titel { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 400; margin-bottom: 0.5rem; }
.page-hinweis { font-size: 0.8rem; color: rgba(232,228,220,0.4); margin-bottom: 2rem; }
.page-inhalt p { line-height: 1.8; color: rgba(232,228,220,0.7); margin-bottom: 1rem; }

/* ===== DIE GESCHICHTE ===== */
.geschichte-section { padding: 8rem 2rem 6rem; }
.geschichte-kapitel { margin-bottom: 4rem; }
.geschichte-kapitel__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.geschichte-kapitel__titel {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
