:root{
  --bg:#0f1112;
  --panel:#141719;
  --text:#e6e2dc;
  --muted:#a7a29a;
  --line:#2a2f33;
  --accent:#d7c7a1;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--text);
  font:16px/1.65 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:980px;margin:0 auto;padding:28px 18px 96px}
.header{display:flex;gap:14px;align-items:flex-end;justify-content:space-between;border-bottom:1px solid var(--line);padding-bottom:14px;margin-bottom:22px}
.brand{display:flex;flex-direction:column;gap:6px}
.brand h1{margin:0;font-size:26px}
.byline{color:var(--muted);font-size:13px}
.nav{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end;font-size:14px}
.lang a{padding:6px 8px;border:1px solid var(--line);border-radius:10px}
.lang a.active{border-color:rgba(215,199,161,.45);background:rgba(215,199,161,.08)}
.block{background:var(--panel);border:1px solid var(--line);border-radius:14px;padding:18px;margin:14px 0}
.hero{display:grid;grid-template-columns:1.2fr .8fr;gap:14px}
@media (max-width:860px){.hero{grid-template-columns:1fr}}
.hero img{width:100%;border-radius:14px;border:1px solid var(--line);display:block}
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
@media (max-width:860px){.grid{grid-template-columns:1fr}}
.card img{width:100%;border-radius:14px;border:1px solid var(--line);display:block}
.muted{color:var(--muted)}
.btn{display:inline-flex;align-items:center;justify-content:center;border:1px solid var(--line);background:transparent;color:var(--text);padding:10px 14px;border-radius:12px;cursor:pointer}
.btn:hover{border-color:var(--accent);text-decoration:none}
.btn.primary{background:rgba(215,199,161,.10);border-color:rgba(215,199,161,.35)}
.floating-support{position:fixed;right:16px;bottom:16px;z-index:999}
.floating-support a{display:inline-flex;gap:8px;padding:12px 14px;border-radius:999px;border:1px solid rgba(215,199,161,.35);background:rgba(20,23,25,.92);box-shadow:0 10px 30px rgba(0,0,0,.35);color:var(--text)}
.floating-support a:hover{border-color:var(--accent);text-decoration:none}
/* HERO BACKGROUND (Start_Hintergrund as mood background) */
/* HERO BACKGROUND (Start_Hintergrund as mood background) */
.hero-bg{
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 18px;
}

  /* Слои: мягкое затемнение + картинка (светлее, чем было) */
  background-image:
    radial-gradient(
      1200px 520px at 30% 35%,
      rgba(15,17,18,0.05),
      rgba(15,17,18,0.75) 70%,
      rgba(15,17,18,0.92) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(15,17,18,0.05),
      rgba(15,17,18,0.85)
    ),
    url("../img/Start_Hintergrund.jpg");

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

.hero-bg h2{ margin-top:0; }
.hero-bg p{ max-width: 68ch; }




/* PAGE BACKGROUND (Support) */
.page-bg{
  background-color: var(--bg);

  background-image:
    radial-gradient(
      900px 520px at 50% 30%,
      rgba(15,17,18,0.10),
      rgba(15,17,18,0.80) 70%,
      rgba(15,17,18,0.95) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(15,17,18,0.25),
      rgba(15,17,18,0.95)
    ),
    url("../img/Lift.jpg");

  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
}

/* PAGE BACKGROUND (Home) */
.home-bg{
  background-color: var(--bg);

  background-image:
    radial-gradient(
      1100px 620px at 45% 18%,
      rgba(15,17,18,0.10),
      rgba(15,17,18,0.78) 65%,
      rgba(15,17,18,0.96) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(15,17,18,0.20),
      rgba(15,17,18,1)
    ),
    url("../img/Start_Hintergrund.jpg");

  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
}
/* PAGE BACKGROUND (Feedback) */
.feedback-bg{
  background-color: var(--bg);

  background-image:
    radial-gradient(
      1000px 600px at 50% 25%,
      rgba(15,17,18,0.12),
      rgba(15,17,18,0.80) 65%,
      rgba(15,17,18,0.95) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(15,17,18,0.30),
      rgba(15,17,18,1)
    ),
    url("../img/Fon.jpg");

  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
}
/* disabled button (e.g., PayPal later) */
.btn-disabled{
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  border-color: var(--line);
}
