* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #111;
  color: #fff;
  min-height: 100vh;
}

/* HEADER */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-header .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  gap: 8px;
}

.lp-header .logo-link img {
  height: 32px;
  width: auto;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lp-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .2s;
}

.lp-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lp-nav .nav-cta {
  background: #e60000;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
}

.lp-nav .nav-cta:hover {
  background: #ff1a1a;
}

/* BURGER MENU */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
  position: relative;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s ease;
}

.burger-btn:hover span {
  background: #e60000;
}

.burger-btn.active:hover span {
  background: #e60000;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.burger-btn.active span {
  background: #fff;
}

@media(max-width:768px) {
  .burger-btn {
    display: flex;
  }

  .lp-nav {
    display: none;
    position: fixed;
    top: var(--header-h, 56px);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    width: 100vw;
    height: calc(100vh - var(--header-h, 56px));
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-top: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 998;
  }

  .lp-nav.open {
    display: flex;
  }

  .lp-nav a {
    font-size: 16px;
    padding: 18px 20px;
    background: transparent;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0;
    min-width: 0;
    width: 100%;
    text-align: left;
    color: #111;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  .lp-nav a:hover {
    color: #e60000;
    background: #f5f5f5;
  }

  .lp-nav .nav-cta {
    font-size: 16px;
    padding: 18px 20px;
    margin-top: 0;
    background: transparent;
    color: #e60000;
    box-shadow: none;
    border-radius: 0;
  }

  .lp-nav .nav-cta:hover {
    color: #111;
    background: #f5f5f5;
  }

  .lp-nav a:last-child {
    border-bottom: 0;
  }
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 50px;
  background: linear-gradient(135deg, #1a0000 0%, #330000 40%, #111 100%);
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 span {
  color: #e60000;
}

.hero p.subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: #ccc;
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* 18+ badge */
.age-badge {
  display: inline-block;
  border: 2px solid #e60000;
  color: #e60000;
  font-weight: 800;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 22px;
}

/* FEATURES */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 22px;
  width: 190px;
  text-align: center;
  transition: transform .2s, border-color .2s;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 0, 0, 0.3);
}

.feature .icon {
  font-size: 34px;
  margin-bottom: 8px;
}

.feature h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.4;
}

/* CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #e60000;
  color: #fff;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  text-decoration: none;
  padding: 20px 56px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(230, 0, 0, 0.5);
  transition: all .25s ease;
  animation: pulse 2s infinite;
}

.cta-btn:hover {
  background: #ff1a1a;
  box-shadow: 0 0 30px rgba(255, 26, 26, 0.7);
  transform: scale(1.05);
}

.cta-small {
  font-size: clamp(14px, 2vw, 18px);
  padding: 14px 36px;
  animation: none;
}

.cta-btn::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.cta-btn:hover::after {
  transform: translateX(5px);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 35px rgba(230, 0, 0, 0.7);
  }
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.section-dark {
  background: rgba(0, 0, 0, 0.3);
  max-width: 100%;
}

.section-dark .section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.section h2 span {
  color: #e60000;
}

.section .section-sub {
  text-align: center;
  color: #aaa;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* HOW IT WORKS */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  counter-reset: step;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  width: 250px;
  text-align: center;
  counter-increment: step;
  position: relative;
}

.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e60000;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
}

/* BENEFITS LIST */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit .b-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.benefit h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.benefit p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

/* TRUST FEATURES */
.trust-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.trust-feat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  width: 280px;
  text-align: center;
}

.trust-feat .tf-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.trust-feat h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.trust-feat p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: #e60000;
  font-weight: 700;
  transition: transform .2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding-top: 12px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #111 0%, #1a0000 50%, #330000 100%);
}

.cta-section h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* BOTTOM BAR (sticky) */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.bottom-bar .bb-cta {
  animation: bbShake 3.2s ease-in-out infinite;
}

@keyframes bbShake {

  0%,
  70%,
  100% {
    transform: translateX(0);
  }

  74% {
    transform: translateX(-6px);
  }

  78% {
    transform: translateX(6px);
  }

  82% {
    transform: translateX(-4px);
  }

  86% {
    transform: translateX(4px);
  }

  90% {
    transform: translateX(0);
  }
}

.bottom-bar .bb-text {
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
  display: none;
}

@media(min-width:600px) {
  .bottom-bar .bb-text {
    display: block;
  }
}

/* FOOTER */
.lp-footer {
  text-align: center;
  padding: 20px 20px 80px;
  font-size: 12px;
  color: #555;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-footer a {
  color: #888;
  text-decoration: none;
  margin: 0 8px;
}

.lp-footer a:hover {
  color: #ccc;
}

/* LIVE COUNTER */
.live-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(90deg, rgba(230, 0, 0, 0.15), rgba(230, 0, 0, 0.05));
  border-bottom: 1px solid rgba(230, 0, 0, 0.2);
  font-size: 14px;
  color: #ccc;
}

.live-bar .live-dot {
  width: 10px;
  height: 10px;
  background: #00cc44;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 4px #00cc44;
  }

  50% {
    opacity: 0.4;
    box-shadow: 0 0 8px #00cc44;
  }
}

.live-bar strong {
  color: #fff;
  font-weight: 800;
}

/* TRUST BADGES */
.trust-section {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.2);
}

.trust-section h3 {
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 14px;
  font-weight: 600;
}

.trust-badge .tb-icon {
  font-size: 22px;
}


/* RESPONSIVE */
@media(max-width:600px) {
  .lp-header {
    padding: 8px 14px;
  }

  .hero {
    padding: 40px 16px 40px;
  }

  .section {
    padding: 40px 16px;
  }

  .step {
    width: 100%;
  }
}

/* RANDOM ADS GRID */
.random-ads-section {
  padding-bottom: 40px;
}

.random-ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.random-ad-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.random-ad-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 0, 0, 0.4);
  box-shadow: 0 8px 20px rgba(230, 0, 0, 0.12);
}

.rad-img {
  position: relative;
  width: 100%;
  background-color: #1a1a1a;
  overflow: hidden;
}

.rad-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.rad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
}

.rad-body {
  padding: 14px 16px 18px;
}

.rad-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rad-loc {
  font-size: 12px;
  color: #e60000;
  font-weight: 600;
  margin-bottom: 8px;
}

.rad-body p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media(max-width:768px) {
  .random-ads-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .rad-img img {
    max-height: 160px;
  }

  .rad-body {
    padding: 10px 10px 12px;
  }

  .rad-body h3 {
    font-size: 13px;
  }

  .rad-loc {
    font-size: 11px;
  }

  .rad-body p {
    font-size: 11px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

@media(max-width:480px) {
  .random-ads-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .rad-img img {
    max-height: 120px;
  }

  .rad-body {
    padding: 8px 8px 10px;
  }

  .rad-body h3 {
    font-size: 12px;
  }

  .rad-body p {
    display: none;
  }
}