* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: #f4f6fb;
  color: #222;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.logo-img{
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  color: #4a6cf7;
  flex: 1;
}

.site-header nav a {
  margin-left: 15px;
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(90deg, #4a6cf7, #6a11cb);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-secondary {
  border: 2px solid #4a6cf7;
  padding: 9px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #4a6cf7;
  font-weight: 600;
}

.large {
  padding: 14px 28px;
  font-size: 16px;
}
.age-gate{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
backdrop-filter: blur(8px);
}

.age-container{
background:#fff;
color:#111;
padding:40px;
border-radius:12px;
text-align:center;
max-width:420px;
width:90%;
box-shadow:0 0 20px rgba(0,0,0,0.5);
}

.age-logo{
width:90px;
margin-bottom:20px;
}

.age-container h2{
margin-bottom:10px;
}

.age-container p{
font-size:15px;
opacity:0.9;
}

.age-check{
display:block;
margin:20px 0;
font-size:14px;
}

.age-buttons{
display:flex;
gap:10px;
justify-content:center;
}

.age-buttons button{
padding:12px 20px;
border:none;
border-radius:6px;
font-size:15px;
cursor:pointer;
}

#enterBtn{
background:#28a745;
color:white;
}

#exitBtn{
background:#ff3b3b;
color:white;
}
/* HERO */
.hero {
  padding: 65px 22px;
  text-align: center;
  background: linear-gradient(135deg, #4a6cf7, #6a11cb);
  color: #fff;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 14px;
}

.hero p {
  font-size: 15px;
  max-width: 520px;
  margin: auto;
  opacity: 0.95;
}

.hero-actions {
  margin-top: 26px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
}

.hero-stats strong {
  font-size: 18px;
  display: block;
}

/* FEATURES */
.features {
  padding: 60px 22px;
  text-align: center;
}

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

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-card h3 {
  color: #4a6cf7;
  margin-bottom: 8px;
}

/* LEVELS */
.levels {
  padding: 60px 22px;
  background: #fff;
  text-align: center;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.level-card {
  background: #f4f6fb;
  padding: 25px;
  border-radius: 16px;
}

.level-card h3 {
  margin-bottom: 10px;
  color: #4a6cf7;
}

.level-card ul {
  list-style: none;
  font-size: 14px;
}

.level-card li {
  margin-bottom: 8px;
}

.highlight {
  background: linear-gradient(135deg, #4a6cf7, #6a11cb);
  color: #fff;
}

.highlight h3 {
  color: #fff;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 60px 22px;
  text-align: center;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  width: 200px;
}

.step span {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #4a6cf7;
  color: #fff;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* CTA */
.cta {
  padding: 60px 22px;
  text-align: center;
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  color: #fff;
}

/* FOOTER */
.site-footer {
  padding: 18px;
  text-align: center;
  font-size: 13px;
  color: #777;
}
/* RATING */
.rating-box {
  margin-top: 10px;
  font-weight: 600;
}

.live-users {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

/* PAYMENT PROOF */
.proofs {
  padding: 60px 22px;
  text-align: center;
}

/* PROOF CARD */
.proof-card {
  position: relative;
}

.proof-card img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

/* OVERLAY */
.proof-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: 12px;
  border-radius: 0 0 10px 10px;
}

.proof-overlay strong {
  display: block;
  font-size: 13px;
}

.proof-overlay span {
  color: #28a745;
  font-weight: 600;
}

/* SLIDER (reuse if not already added) */
.proof-slider {
  overflow: hidden;
  margin-top: 30px;
}

.proof-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollProofs 20s linear infinite;
}

@keyframes scrollProofs {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* OPTIONAL HOVER PAUSE */
.proof-slider:hover .proof-track {
  animation-play-state: paused;
}

/* FAQ INTERACTIVE */
.faq-q {
  font-weight: 600;
  cursor: pointer;
}

.faq-a {
  display: none;
  margin-top: 5px;
  font-size: 14px;
}

.faq-item.active .faq-a {
  display: block;
}

/* REVIEWS */
.reviews {
  padding: 60px 22px;
  text-align: center;
}

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

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.review-fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.review-fade-in {
  opacity: 1;
  transform: translateY(0);
}
.review-card img {
  width: 50px;
  border-radius: 50%;
}

.stars {
  color: gold;
}

/* TRUST */
.trust-badges span {
  display: inline-block;
  margin: 8px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
}
/* MID CTA */
.mid-cta {
  padding: 60px 22px;
  text-align: center;
  background: linear-gradient(135deg, #4a6cf7, #6a11cb);
  color: #fff;
}

.mid-cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.mid-sub {
  font-size: 15px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.mid-btn {
  display: inline-block;
  margin-top: 10px;
}

.mid-trust {
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.9;
}
.mid-btn:hover {
  transform: scale(1.05);
  transition: 0.2s ease;
}
/* ===============================
   VIDEO SECTION (Porn-style Grid)
   =============================== */

.video-section {
  padding: 60px 22px;
  max-width: 1200px;
  margin: auto;
}

.video-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.video-section .sub {
  text-align: center;
  margin-bottom: 35px;
  font-size: 15px;
  color: #555;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.25s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.video-thumb {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.video-thumb::after {
  content: "▶";
  font-size: 32px;
  color: rgba(255,255,255,0.85);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}

.video-info {
  padding: 12px;
}

.video-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-views {
  font-size: 12px;
  color: #777;
}

/* REVIEWS */
.reviews {
  padding: 60px 22px;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.review-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.review-card h4 {
  margin-top: 10px;
}

.stars {
  color: #ffc107;
  margin: 5px 0;
}

/* FAQ */
.faq {
  padding: 60px 22px;
  background: #fff;
}

.faq-item {
  max-width: 700px;
  margin: 15px auto;
  background: #f4f6fb;
  padding: 15px;
  border-radius: 10px;
}

.faq-item h4 {
  margin-bottom: 6px;
}

/* PRIVACY */
.privacy {
  padding: 60px 22px;
  text-align: center;
}

.privacy p {
  max-width: 600px;
  margin: auto;
}

.trust-badges {
  margin-top: 20px;
}

.trust-badges span {
  display: inline-block;
  margin: 8px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
