@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #c1001a;
  --primary-dark: #8b0012;
  --secondary: #1a1a2e;
  --accent: #ff4d6d;
  --bg-dark: #0d0d0d;
  --bg-card: #1a1a1a;
  --bg-card2: #222222;
  --text-light: #f0f0f0;
  --text-muted: #aaaaaa;
  --border: #333333;
  --green: #00c853;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
}

body.no-scroll { overflow: hidden; }

/* ========== AGE POPUP ========== */
.age-popup {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.92);
  display: flex; justify-content: center; align-items: center;
  z-index: 99999;
  backdrop-filter: blur(8px);
}

.age-popup-content {
  background: linear-gradient(135deg, #1a0a0a, #2a0d0d);
  border: 2px solid var(--primary);
  padding: 48px 44px;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(193,0,26,0.5);
  text-align: center;
  max-width: 420px;
  width: 92%;
}

.age-popup-content .popup-icon { font-size: 3rem; margin-bottom: 12px; }
.age-popup-content h2 {
  font-size: 1.9rem; color: #fff;
  font-weight: 800; margin-bottom: 12px;
}
.age-popup-content p {
  color: #ccc; font-size: 1rem;
  margin-bottom: 32px; line-height: 1.6;
}
.age-popup-content .btn-confirm {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--primary), #ff1f3d);
  color: #fff; border: none;
  font-size: 1.1rem; font-weight: 700;
  padding: 16px 24px;
  border-radius: 10px; cursor: pointer;
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.age-popup-content .btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(193,0,26,0.5);
}
.age-popup-content .btn-deny {
  background: transparent; border: 1px solid #555;
  color: #999; font-size: 0.9rem; padding: 10px 24px;
  border-radius: 8px; cursor: pointer; transition: all 0.2s;
}
.age-popup-content .btn-deny:hover { border-color: #888; color: #ccc; }

/* ========== NAVBAR ========== */
.sticky-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #2a2a2a;
}

.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { width: 34px; height: 34px; border-radius: 6px; }
.nav-brand span {
  font-size: 1.25rem; font-weight: 800;
  color: #fff; letter-spacing: -0.5px;
}
.nav-brand span em { color: var(--primary); font-style: normal; }

.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  color: #ccc; text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  display: flex; gap: 10px; align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff2244);
  color: #fff; border: none;
  font-size: 0.9rem; font-weight: 700;
  padding: 11px 22px; border-radius: 8px;
  cursor: pointer; text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(193,0,26,0.45);
}

.btn-outline {
  background: transparent;
  border: 1px solid #555; color: #ccc;
  font-size: 0.9rem; font-weight: 500;
  padding: 10px 20px; border-radius: 8px;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { border-color: #fff; color: #fff; }

.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column;
  gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s;
}

/* ========== LAYOUT ========== */
.site-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  max-width: 1400px; margin: 0 auto;
  min-height: calc(100vh - 65px);
}

/* ========== SIDEBAR ========== */
.sidebar {
  background: #111111;
  border-right: 1px solid var(--border);
  padding: 24px 16px;
  position: sticky; top: 65px;
  height: calc(100vh - 65px);
  overflow-y: auto;
}

.sidebar-cta { margin-bottom: 24px; }
.sidebar-cta .btn-primary,
.sidebar-cta .btn-outline {
  display: block; width: 100%;
  text-align: center; margin-bottom: 8px;
  padding: 11px 16px;
}

.sidebar-section { margin-bottom: 20px; }
.sidebar-section h4 {
  color: #777; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 10px; padding: 0 8px;
}

.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 8px;
  color: #ccc; text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: all 0.2s;
}
.sidebar-nav li a:hover {
  background: rgba(193,0,26,0.12);
  color: #fff;
}
.sidebar-nav li a i {
  width: 18px; text-align: center;
  color: var(--primary); font-size: 0.85rem;
}

.sidebar-tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 4px; }
.sidebar-tag {
  background: #222; color: #aaa;
  border: 1px solid #333;
  font-size: 0.75rem; padding: 4px 10px;
  border-radius: 20px; text-decoration: none;
  transition: all 0.2s;
}
.sidebar-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ========== MAIN CONTENT ========== */
.main-content { padding: 0; overflow: hidden; }

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #1a0000 0%, #0d0d0d 60%, #1a0a0a 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 36px 40px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193,0,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(193,0,26,0.15); border: 1px solid rgba(193,0,26,0.3);
  color: #ff6b6b; font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 2.4rem; font-weight: 800;
  line-height: 1.2; margin-bottom: 18px;
  max-width: 680px;
}

.hero h1 .highlight { color: var(--primary); }

.hero p {
  color: #bbb; font-size: 1.05rem;
  max-width: 620px; margin-bottom: 28px;
  line-height: 1.7;
}

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 1.6rem; font-weight: 800;
  color: #fff; display: block;
}
.stat-label { color: #888; font-size: 0.8rem; }

/* ========== SECTION LABELS ========== */
.section-label {
  padding: 18px 36px 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.section-label h2 {
  font-size: 1.1rem; font-weight: 700;
  color: #fff;
}
.section-label a {
  color: var(--primary); text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  transition: color 0.2s;
}
.section-label a:hover { color: #ff4466; }

/* ========== GRID IMAGES ========== */
.model-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0 36px 24px;
}

.model-card {
  border-radius: 10px; overflow: hidden;
  background: var(--bg-card);
  position: relative; cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform 0.2s, box-shadow 0.2s;
}
.model-card:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.6); }
.model-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.model-card:hover img { transform: scale(1.06); }

.model-card .live-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--primary);
  color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 4px;
}
.model-card .live-badge::before {
  content: ''; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ========== DIVIDER ========== */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 8px 36px; }

/* ========== INFO SECTIONS ========== */
.info-section {
  padding: 40px 36px;
  border-bottom: 1px solid var(--border);
}

.info-section .section-title {
  font-size: 1.6rem; font-weight: 800;
  margin-bottom: 20px; color: #fff;
  position: relative; padding-left: 16px;
}
.info-section .section-title::before {
  content: ''; position: absolute; left: 0; top: 8%;
  width: 4px; height: 84%; border-radius: 2px;
  background: var(--primary);
}

.info-section p {
  color: #bbb; margin-bottom: 18px;
  font-size: 0.97rem; line-height: 1.8;
}

.feature-list { list-style: none; margin-top: 8px; }
.feature-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid #222;
}
.feature-item:last-child { border-bottom: none; }

.feature-icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: rgba(193,0,26,0.15);
  border: 1px solid rgba(193,0,26,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon i { color: var(--primary); font-size: 1rem; }

.feature-text h4 {
  color: #fff; font-size: 0.97rem;
  font-weight: 700; margin-bottom: 4px;
}
.feature-text p { color: #999; font-size: 0.88rem; margin: 0; }

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 36px 32px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.review-stars { color: #ffd700; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }

.review-text {
  color: #ccc; font-size: 0.9rem;
  line-height: 1.7; margin-bottom: 16px;
  font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), #ff4466);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: #fff;
}
.review-name { color: #fff; font-size: 0.88rem; font-weight: 600; }
.review-location { color: #777; font-size: 0.78rem; }

/* ========== FAQS ========== */
.faq-section { padding: 40px 36px; border-bottom: 1px solid var(--border); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary); }

.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer;
}
.faq-question h3 { color: #fff; font-size: 0.97rem; font-weight: 600; }
.faq-question i { color: #888; transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--primary); }

.faq-answer { display: none; padding: 0 20px 18px; }
.faq-answer.show { display: block; }
.faq-answer p { color: #bbb; font-size: 0.9rem; line-height: 1.7; }

/* ========== FOOTER ========== */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 40px 36px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px; margin-bottom: 32px;
}

.footer-brand .brand-name {
  font-size: 1.4rem; font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.footer-brand .brand-name em { color: var(--primary); font-style: normal; }

.footer-brand p { color: #777; font-size: 0.88rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  color: #fff; font-size: 0.88rem;
  font-weight: 700; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: #777; text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #222; padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

.footer-disclaimer { color: #555; font-size: 0.78rem; line-height: 1.5; max-width: 600px; }

.footer-links-row { display: flex; gap: 20px; }
.footer-links-row a {
  color: #555; text-decoration: none;
  font-size: 0.8rem; transition: color 0.2s;
}
.footer-links-row a:hover { color: #fff; }

/* ========== MOBILE NAV OVERLAY ========== */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9998; flex-direction: column;
  padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; color: #fff;
  font-size: 1.6rem; cursor: pointer;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin-bottom: 20px; }
.mobile-menu ul li a {
  color: #fff; text-decoration: none;
  font-size: 1.3rem; font-weight: 600;
}
.mobile-menu .mobile-cta { margin-top: 32px; }
.mobile-menu .btn-primary { display: block; text-align: center; margin-bottom: 12px; padding: 16px; font-size: 1rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .model-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-wrapper { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 32px 20px 28px; }
  .hero h1 { font-size: 1.75rem; }
  .section-label { padding: 16px 20px 10px; }
  .model-grid { grid-template-columns: repeat(3, 1fr); padding: 0 20px 20px; }
  .info-section { padding: 28px 20px; }
  .faq-section { padding: 28px 20px; }
  .reviews-grid { grid-template-columns: 1fr; padding: 0 20px 20px; }
  .section-divider { margin: 6px 20px; }
  .site-footer { padding: 32px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 600px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero h1 { font-size: 1.4rem; }
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 1.3rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-cta .btn-outline { display: none; }
}
