/* Settup dating content hub shared styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #080610;
  --surface: #0f0c1a;
  --surface-2: #161222;
  --text: #f0edf5;
  --text-muted: #a8a2b8;
  --text-dim: #7a7391;
  --accent: #e11d48;
  --accent-deep: #be123c;
  --border: #241e38;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(0,0,0,0.35);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; text-decoration: underline; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo { font-size: 22px; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; }

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.breadcrumb {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.6px;
}

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 42px;
  line-height: 1.6;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 16px;
  color: var(--text);
  letter-spacing: -0.3px;
}

h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text);
}

p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

ul, ol {
  padding-left: 24px;
  margin: 16px 0;
}

li {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.7;
}

.cta {
  background: linear-gradient(135deg, rgba(225,29,72,0.18), rgba(190,18,60,0.08));
  border: 1px solid rgba(225,29,72,0.25);
  border-radius: var(--radius);
  padding: 32px;
  margin: 44px 0;
  text-align: center;
}

.cta h3 { margin-top: 0; font-size: 22px; }
.cta p { color: var(--text-muted); margin-bottom: 22px; }

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(225,29,72,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(225,29,72,0.45);
  text-decoration: none;
  opacity: 1;
}

.screenshot {
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  margin: 28px 0;
  color: var(--text-dim);
  font-size: 14px;
}

.screenshot img {
  max-width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.quote {
  border-left: 4px solid var(--accent);
  padding: 18px 24px;
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text);
  font-size: 17px;
}

.quote cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-dim);
  font-style: normal;
}

.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 36px 0;
}

.faq-item { margin-bottom: 22px; }
.faq-item:last-child { margin-bottom: 0; }
.faq-item h3 { font-size: 17px; margin: 0 0 8px; }
.faq-item p { font-size: 15px; margin: 0; }

.related {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.related h2 { font-size: 20px; margin-bottom: 18px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.related a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
}

.related a:hover { background: var(--surface-2); text-decoration: none; opacity: 1; }

.footer {
  max-width: 760px;
  margin: 60px auto 0;
  padding: 30px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}

.footer a { color: var(--text-dim); margin: 0 10px; }

@media (max-width: 600px) {
  h1 { font-size: 30px; }
  h2 { font-size: 22px; }
  .cta { padding: 24px; }
  .btn { width: 100%; }
}
