:root {
  --bg-deep: #06080d;
  --bg-card: #0e1218;
  --bg-elevated: #141a24;
  --gold: #f0d35c;
  --gold-dim: #c4a035;
  --text: #eef1f7;
  --text-muted: #8b95a8;
  --accent: #ff5c33;
  --accent-2: #7c5cff;
  --border: rgba(240, 211, 92, 0.2);
  --radius: 16px;
  --font: "Manrope", system-ui, sans-serif;
  --ref: linear-gradient(135deg, #ffe566 0%, #e8b923 45%, #b8860b 100%);
  --ref-2: linear-gradient(135deg, #7c5cff 0%, #5a3fd4 100%);
  --shine: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 60%
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.97) 0%, rgba(6, 8, 13, 0.9) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.75rem);
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--gold);
}

.logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px var(--border);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 0.65rem;
  flex-wrap: wrap;
}

.header-nav a {
  padding: 0.45rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--gold);
  background: rgba(240, 211, 92, 0.08);
  text-decoration: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.62rem 1.25rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.2s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--shine);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--ref);
  color: #1a1204;
  box-shadow: 0 4px 28px rgba(240, 211, 92, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(240, 211, 92, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  border: 1px solid var(--border);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-accent {
  background: var(--ref-2);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 92, 255, 0.35);
}

.btn-accent:hover {
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.45);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
}

.btn-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 28px rgba(240, 211, 92, 0.35);
  }
  50% {
    box-shadow: 0 6px 40px rgba(240, 211, 92, 0.55);
  }
}

.btn-block {
  width: 100%;
  margin-top: auto;
}

.btn-icon {
  font-size: 1.05em;
  opacity: 0.9;
}

/* Hero — фон dragonmani.jpg */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0d12;
  background-image: url("images/dragonmani.jpg");
  background-size: cover;
  background-position: center 28%;
  transform: scale(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 13, 0.75) 0%, rgba(6, 8, 13, 0.55) 35%, rgba(6, 8, 13, 0.88) 100%),
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(124, 92, 255, 0.12), transparent 55%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3dff8a;
  box-shadow: 0 0 12px #3dff8a;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.65);
}

.hero-lead {
  margin: 0 0 1.5rem;
  font-size: 1.06rem;
  color: rgba(238, 241, 247, 0.88);
  max-width: 46ch;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.hero-actions-row2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.hero-note {
  font-size: 0.86rem;
  color: rgba(238, 241, 247, 0.65);
  max-width: 48ch;
  margin: 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  min-width: 120px;
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Sections */
section {
  padding: 2.85rem 0;
  scroll-margin-top: 5rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
  max-width: 58ch;
  font-size: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--accent-2));
  opacity: 0.85;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 211, 92, 0.35);
}

.info-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--gold);
}

.info-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.cta-strip {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(240, 211, 92, 0.06));
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-strip p {
  margin: 0;
  color: var(--text-muted);
  max-width: 420px;
  font-size: 0.95rem;
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Slots */
.slots-section {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 26, 36, 0.45) 40%, transparent 100%);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.1rem;
}

.slot-card {
  --slot-accent: var(--gold);
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.3s;
}

.slot-card:hover {
  border-color: rgba(240, 211, 92, 0.4);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.slot-card:nth-child(3n + 2) {
  --slot-accent: var(--accent-2);
}

.slot-card:nth-child(3n) {
  --slot-accent: var(--accent);
}

.slot-thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0d12;
}

.slot-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.slot-card:hover .slot-thumb img {
  transform: scale(1.06);
}

.slot-body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.slots-section-h3 {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.slot-body h4 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.slot-body p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.45;
}

.slot-actions {
  display: flex;
  gap: 0.45rem;
}

.slot-actions .btn {
  flex: 1;
  padding: 0.52rem 0.65rem;
  font-size: 0.78rem;
}

/* FAQ */
.faq-section {
  padding-bottom: 3.5rem;
}

.faq-intro {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: rgba(240, 211, 92, 0.28);
}

.faq-item[open] {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.faq-item summary {
  list-style: none;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}

.faq-item summary .faq-h {
  margin: 0;
  flex: 1;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: inherit;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.faq-answer p {
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.25rem 0 2.75rem;
  margin-top: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 520px;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

/* SEO checklist block */
.checklist-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}

.seo-checklist {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  max-width: 52rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.seo-checklist li {
  margin-bottom: 0.75rem;
  padding-left: 0.35rem;
}

.seo-checklist li::marker {
  color: var(--gold-dim);
}

@media (max-width: 640px) {
  .header-nav {
    width: 100%;
    order: 3;
    justify-content: center;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }
}
