/* Bot Razdevator — Black & Pink Theme 2026 */
:root {
  --bg: #08080c;
  --bg-card: #12121a;
  --bg-elevated: #1a1a26;
  --pink: #ff2d8a;
  --pink-light: #ff6eb4;
  --pink-glow: rgba(255, 45, 138, 0.35);
  --text: #f0eef3;
  --text-muted: #9a96a8;
  --border: rgba(255, 45, 138, 0.18);
  --radius: 16px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --max-w: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--pink-glow), transparent),
    radial-gradient(circle at 90% 80%, rgba(255, 45, 138, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pink); }
a:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

.container {
  width: min(100% - 32px, var(--max-w));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink), #c026d3);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 24px var(--pink-glow);
}

.badge-18 {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
  border: 1.5px solid var(--pink);
  border-radius: 6px;
  color: var(--pink);
  letter-spacing: 0.05em;
}

.nav-main {
  display: flex;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-main a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 45, 138, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #d946ef);
  color: #fff;
  box-shadow: 0 8px 32px var(--pink-glow);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 45, 138, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--pink-light);
  border: 1.5px solid var(--border);
}

.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Hero */
.hero {
  padding: 64px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 45, 138, 0.12);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--pink-light);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 30%, var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-answer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.hero-answer strong { color: var(--pink-light); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}

.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
}

.hero-visual-inner {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--pink);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.phone-mock {
  width: 75%;
  z-index: 1;
  text-align: center;
  padding: 24px;
}

.phone-mock .chat-bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  padding: 14px 18px;
  margin-bottom: 12px;
  text-align: left;
  font-size: 0.85rem;
}

.chat-bubble.bot {
  background: rgba(255, 45, 138, 0.15);
  border-color: rgba(255, 45, 138, 0.3);
  border-radius: 16px 16px 4px 16px;
}

/* Sections */
section { padding: 72px 0; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(255, 45, 138, 0.4);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 45, 138, 0.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.card p { font-size: 0.9rem; color: var(--text-muted); }

/* Features list */
.features-list {
  display: grid;
  gap: 16px;
  list-style: none;
}

.features-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--pink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #fff;
  margin-top: 2px;
}

/* FAQ */
.faq-list { display: grid; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--pink);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-a { display: block; }

/* Table comparison */
.table-wrap { overflow-x: auto; margin: 24px 0; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--bg-elevated);
  color: var(--pink-light);
  font-weight: 600;
}

tr:hover td { background: rgba(255, 45, 138, 0.04); }

/* Blog */
.post-list { display: grid; gap: 20px; }

.post-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: start;
}

.post-date {
  font-size: 0.78rem;
  color: var(--pink);
  font-weight: 600;
  white-space: nowrap;
}

.post-card h2 { font-size: 1.15rem; margin-bottom: 8px; }
.post-card h2 a { color: var(--text); }
.post-card h2 a:hover { color: var(--pink-light); }
.post-excerpt { font-size: 0.9rem; color: var(--text-muted); }

/* Article */
.article-header { padding: 48px 0 32px; }
.article-header h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.article-meta { color: var(--text-muted); font-size: 0.85rem; display: flex; gap: 16px; flex-wrap: wrap; }
.article-content { padding-bottom: 64px; }
.article-content h2 { font-size: 1.4rem; margin: 36px 0 16px; color: var(--pink-light); }
.article-content h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.article-content p { margin-bottom: 16px; color: var(--text-muted); }
.article-content ul, .article-content ol { margin: 0 0 16px 24px; color: var(--text-muted); }
.article-content li { margin-bottom: 8px; }

.breadcrumbs {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--pink); }

/* CTA block */
.cta-block {
  background: linear-gradient(135deg, rgba(255, 45, 138, 0.15), rgba(192, 38, 211, 0.1));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin: 48px 0;
}

.cta-block h2 { margin-bottom: 12px; }
.cta-block p { color: var(--text-muted); margin-bottom: 24px; max-width: 520px; margin-inline: auto; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--pink-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 720px;
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 12, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.hidden { display: none; }

.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.age-gate-box h2 { margin-bottom: 12px; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }
.age-gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .menu-toggle { display: block; }
  .nav-main {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
  }
  .nav-main.open { display: flex; }
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
