/* ===== CUSTOM STYLES - Stripchat Review Site ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --accent: #ff4d6d;
  --accent-glow: rgba(255, 77, 109, 0.3);
  --accent2: #c9184a;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0b0;
  --border: rgba(255, 77, 109, 0.15);
  --gold: #f4a261;
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary) !important;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--accent); }
.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.9rem;
}
.nav-link:hover { color: var(--accent) !important; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 7px 20px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: all 0.2s !important;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.nav-cta:hover {
  background: var(--accent2) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--accent-glow);
}
.navbar-toggler {
  border: 1px solid var(--border);
  padding: 5px 10px;
  color: var(--text-primary);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28240, 240, 240, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a12 50%, #0a0a0f 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,77,109,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 109, 0.1);
  border: 1px solid rgba(255, 77, 109, 0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--accent);
  position: relative;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 36px;
}
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-primary-custom:hover {
  background: var(--accent2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,77,109,0.4);
  text-decoration: none;
}
.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
  margin-left: 12px;
}
.btn-secondary-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== RATING BOX ===== */
.rating-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  position: sticky;
  top: 90px;
}
.rating-score {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 1.3rem; margin: 8px 0; }
.rating-label { color: var(--text-secondary); font-size: 0.85rem; }
.rating-bar-wrap { margin: 16px 0 8px; }
.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.82rem;
}
.rating-bar-item span:first-child { width: 100px; color: var(--text-secondary); text-align: left; }
.rating-bar-item span:last-child { width: 30px; color: var(--text-primary); font-weight: 700; text-align: right; }
.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 10px;
  transition: width 1s ease;
}

/* ===== SECTION STYLES ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-desc { color: var(--text-secondary); max-width: 600px; }

/* ===== SCREENSHOT SECTION ===== */
.screenshot-section { padding: 60px 0; background: var(--bg-secondary); }
.screenshot-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  background: var(--bg-card);
}
.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255,77,109,0.15);
  border-color: rgba(255,77,109,0.4);
}
.screenshot-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.screenshot-card-body {
  padding: 16px 20px;
}
.screenshot-card-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.screenshot-card-body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== FEATURES ===== */
.features-section { padding: 80px 0; }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: rgba(255,77,109,0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255,77,109,0.1);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,77,109,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  border: 1px solid rgba(255,77,109,0.2);
}
.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc { font-size: 0.88rem; color: var(--text-secondary); }

/* ===== HOW IT WORKS ===== */
.steps-section { padding: 80px 0; background: var(--bg-secondary); }
.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all 0.25s;
}
.step-card:hover {
  border-color: rgba(255,77,109,0.4);
  box-shadow: 0 6px 30px rgba(255,77,109,0.08);
}
.step-number {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
}
.step-content h5 { font-weight: 700; margin-bottom: 6px; }
.step-content p { color: var(--text-secondary); font-size: 0.88rem; margin: 0; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; }
.accordion-item {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  font-weight: 700 !important;
  font-size: 0.95rem;
  border: none !important;
  box-shadow: none !important;
  padding: 20px 24px;
}
.accordion-button::after {
  filter: invert(1);
}
.accordion-button:not(.collapsed) { color: var(--accent) !important; }
.accordion-body {
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 24px 20px;
  border-top: 1px solid var(--border);
}

/* ===== PROS/CONS ===== */
.proscons-section { padding: 80px 0; background: var(--bg-secondary); }
.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
}
.pros-box {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.cons-box {
  background: rgba(255, 77, 109, 0.05);
  border: 1px solid rgba(255, 77, 109, 0.2);
}
.pros-title, .cons-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pros-title { color: #22c55e; }
.cons-title { color: var(--accent); }
.pros-list, .cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pros-list li, .cons-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pros-list li:last-child, .cons-list li:last-child { border: none; }
.pros-list li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.cons-list li::before {
  content: '✗';
  color: var(--accent);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== VERDICT BANNER ===== */
.verdict-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0a12 0%, #0a0a0f 50%, #12081a 100%);
  position: relative;
  overflow: hidden;
}
.verdict-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,77,109,0.1) 0%, transparent 70%);
}
.verdict-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.verdict-text { font-size: 1rem; color: var(--text-secondary); margin-bottom: 32px; }

/* ===== FOOTER ===== */
footer {
  background: #070709;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-brand {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-decoration: none;
  display: inline-block;
}
.footer-brand span { color: var(--accent); }
.footer-desc { color: var(--text-secondary); font-size: 0.87rem; max-width: 280px; }
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-secondary); font-size: 0.8rem; margin: 0; }
.footer-bottom a { color: var(--text-secondary); text-decoration: none; font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--accent); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: all 0.2s;
  z-index: 999;
  text-decoration: none;
}
.scroll-top:hover { background: var(--accent2); transform: translateY(-2px); }
.scroll-top.show { display: flex; }

/* ===== AGE WARNING OVERLAY ===== */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  max-width: 480px;
  text-align: center;
}
.age-icon { font-size: 3rem; margin-bottom: 16px; }
.age-box h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 10px; }
.age-box p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 28px; }
.age-btns { display: flex; gap: 12px; justify-content: center; }
.age-yes {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.age-yes:hover { background: var(--accent2); }
.age-no {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.age-no:hover { border-color: var(--accent); color: var(--accent); }

/* ===== INNER PAGES ===== */
.inner-page-header {
  background: linear-gradient(135deg, #1a0a12 0%, #0a0a0f 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}
.inner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}
.inner-content h1, .inner-content h2, .inner-content h3 {
  font-weight: 800;
  margin: 32px 0 14px;
  line-height: 1.3;
}
.inner-content h1 { font-size: 2rem; color: var(--text-primary); }
.inner-content h2 { font-size: 1.4rem; color: var(--text-primary); }
.inner-content h3 { font-size: 1.1rem; color: var(--accent); }
.inner-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.inner-content ul {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-left: 20px;
  margin-bottom: 16px;
}
.inner-content ul li { margin-bottom: 8px; }
.inner-content a { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section { padding: 50px 0 40px; }
  .rating-box { position: relative; top: 0; margin-top: 32px; }
  .btn-secondary-custom { margin-left: 0; margin-top: 12px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.4rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .age-box { padding: 32px 24px; }
  .age-btns { flex-direction: column; }
}
