:root {
  --bg-1: #2a1c0e;
  --bg-2: #6b4a1f;
  --gold: #f4c14b;
  --gold-deep: #c98a1e;
  --red: #d23b2f;
  --red-deep: #9e281f;
  --cream: #fff7e6;
  --ink: #2b2013;
  --card: rgba(255, 247, 230, 0.96);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 50% 0%, var(--bg-2) 0%, var(--bg-1) 60%, #1a1108 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 50% 8%, rgba(244, 193, 75, 0.35), transparent 70%);
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 18px 40px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 8px 0 26px;
}

.hero-img {
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 22px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.55),
    0 0 0 4px rgba(244, 193, 75, 0.35);
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* CONTENT CARD */
.content {
  background: var(--card);
  border-radius: 24px;
  padding: 34px 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  border-top: 6px solid var(--gold);
}

.text h1 {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--red-deep);
  margin: 0 0 22px;
}

.text h2 {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold-deep);
  margin: 28px 0 10px;
}

.text p {
  margin: 0 0 16px;
  font-size: 1.05rem;
}

.text a {
  color: var(--red-deep);
  font-weight: 600;
}

.text ul,
.text ol {
  margin: 0 0 16px 1.4em;
  font-size: 1.05rem;
}

.text li {
  margin-bottom: 6px;
}

.loading {
  color: #8a7a5c;
  font-style: italic;
}

/* TELEGRAM BUTTON */
.tg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding: 18px 22px;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(210, 59, 47, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.tg-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(210, 59, 47, 0.55);
}

.tg-btn:active {
  transform: translateY(0);
}

.tg-ico {
  font-size: 1.3rem;
}

/* FOOTER */
.foot {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(255, 247, 230, 0.6);
  font-size: 0.85rem;
  padding: 10px 18px 40px;
}

/* MOBILE */
@media (max-width: 560px) {
  .wrap {
    padding: 16px 12px 30px;
  }
  .content {
    padding: 24px 18px;
    border-radius: 18px;
  }
  .hero-img {
    border-radius: 16px;
  }
  .text h1 {
    font-size: 1.28rem;
  }

  .text h2 {
    font-size: 1.1rem;
  }
  .text p {
    font-size: 1rem;
  }
  .tg-btn {
    font-size: 1rem;
    padding: 16px 16px;
  }
}
