/* ================================================================
   SexWorld3D Affiliate Theme – assets/css/theme.css
   Dark Cinematic · Neon Accents · High-Converting
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;700;900&display=swap');

:root {
  --red:      #e8002d;
  --red-glow: #ff0040;
  --gold:     #c9a84c;
  --dark:     #050508;
  --dark2:    #0a0a12;
  --dark3:    #111120;
  --text:     #e8e0d0;
  --muted:    #7a7090;
  --max-w:    1140px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .25s; }
a:hover { color: var(--red-glow); }

/* ── BODY STATES ── */
body.age-locked { overflow: hidden; }
body.age-locked #sw-main { display: none; }

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--red); color: #fff;
  padding: 8px 16px; z-index: 99999;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ================================================================
   AGE GATE
   ================================================================ */
#age-gate {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3, 3, 8, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.gate-wrap {
  text-align: center;
  padding: 64px 48px;
  max-width: 540px; width: 90%;
  position: relative;
  border: 1px solid rgba(232,0,45,.35);
  background: linear-gradient(145deg, rgba(10,10,20,.96), rgba(5,5,12,.99));
  box-shadow: 0 0 100px rgba(232,0,45,.12), inset 0 0 60px rgba(0,0,0,.5);
  animation: gateIn .7s cubic-bezier(.16,1,.3,1) both;
}
.gate-wrap::before {
  content: '';
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--red), transparent 50%, var(--gold));
  border-radius: inherit; z-index: -1;
}
@keyframes gateIn {
  from { opacity: 0; transform: scale(.88) translateY(40px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.gate-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; font-size: 1.5rem;
  letter-spacing: .18em; color: #fff; margin-bottom: 6px;
}
.gate-logo span { color: var(--red); }
.gate-divider { width: 56px; height: 2px; background: var(--red); margin: 0 auto 28px; box-shadow: 0 0 12px var(--red); }
.gate-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px;
  border: 2px solid var(--red); border-radius: 50%;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.6rem; font-weight: 900; color: var(--red);
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(232,0,45,.4);
  animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 20px rgba(232,0,45,.4); }
  50%      { box-shadow: 0 0 60px rgba(232,0,45,.85); }
}
.gate-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: .1em; color: #fff; margin-bottom: 14px;
}
.gate-text { color: var(--muted); font-size: .95rem; line-height: 1.65; margin-bottom: 36px; }
.gate-text strong { color: rgba(232,224,208,.8); }
.gate-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.gate-btn-yes, .gate-btn-no {
  padding: 15px 38px;
  font-family: 'Orbitron', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border: none;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: all .25s;
}
.gate-btn-yes {
  background: var(--red); color: #fff;
}
.gate-btn-yes:hover {
  background: var(--red-glow);
  box-shadow: 0 0 40px rgba(255,0,64,.6);
  transform: translateY(-2px);
}
.gate-btn-no {
  background: transparent; color: var(--muted);
  border: 1px solid rgba(122,112,144,.3);
}
.gate-btn-no:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.gate-legal {
  font-size: .7rem; color: rgba(122,112,144,.55); line-height: 1.6;
}
.gate-legal a { color: rgba(122,112,144,.55); text-decoration: underline; }

/* ================================================================
   NAVIGATION
   ================================================================ */
#sw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, box-shadow .4s;
}
#sw-nav.scrolled {
  background: rgba(5,5,8,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(232,0,45,.15);
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; font-size: 1rem;
  letter-spacing: .18em; color: #fff;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: .85rem;
  letter-spacing: .12em; color: rgba(232,224,208,.6);
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 10px 26px;
  background: var(--red); color: #fff !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: .72rem !important;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  transition: all .25s !important;
}
.nav-cta:hover {
  background: var(--red-glow) !important;
  box-shadow: 0 0 24px rgba(255,0,64,.5);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span {
  width: 26px; height: 2px; background: #fff;
  transition: all .3s; display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================================================
   HERO
   ================================================================ */
#sw-hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.42) saturate(1.3);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(5,5,8,.9) 0%,rgba(5,5,8,.25) 50%,rgba(5,5,8,.9) 100%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 20px;
  max-width: 900px;
  animation: heroReveal 1.3s cubic-bezier(.16,1,.3,1) .4s both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Orbitron', sans-serif; font-size: .65rem;
  letter-spacing: .3em; color: var(--red); text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 36px; height: 1px; background: var(--red);
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: .9; letter-spacing: .04em; color: #fff;
  text-shadow: 0 0 100px rgba(232,0,45,.25);
  margin-bottom: 8px;
}
.hero-h1 .accent { color: var(--red); }
.hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: .22em; color: var(--gold);
  margin-bottom: 30px;
}
.hero-desc {
  font-size: 1.1rem; color: rgba(232,224,208,.7);
  max-width: 580px; margin: 0 auto 44px; line-height: 1.65; font-weight: 500;
}
.hero-cta-group { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 54px;
  background: var(--red); color: #fff;
  font-family: 'Orbitron', sans-serif; font-size: .9rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  clip-path: polygon(14px 0%,100% 0%,calc(100% - 14px) 100%,0% 100%);
  transition: all .3s;
  animation: ctaGlow 3s ease-in-out infinite 2s;
}
.btn-primary:hover {
  background: var(--red-glow); color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 60px rgba(255,0,64,.7);
}
@keyframes ctaGlow {
  0%,100% { box-shadow: 0 6px 40px rgba(232,0,45,.4); }
  50%      { box-shadow: 0 6px 80px rgba(232,0,45,.85); }
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px;
  background: transparent; color: rgba(232,224,208,.7);
  font-family: 'Rajdhani', sans-serif; font-size: .95rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(232,224,208,.2);
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: all .3s;
}
.btn-secondary:hover {
  color: #fff; border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: scrollHint 2.5s ease-in-out infinite;
}
.hero-scroll-hint .line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent); }
.hero-scroll-hint span { font-family: 'Orbitron', sans-serif; font-size: .55rem; letter-spacing: .25em; color: rgba(255,255,255,.25); text-transform: uppercase; }
@keyframes scrollHint {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(232,0,45,.18);
  border-bottom: 1px solid rgba(232,0,45,.18);
  display: flex; flex-wrap: wrap;
}
.stat-cell {
  flex: 1; min-width: 140px;
  text-align: center; padding: 28px 20px;
  border-right: 1px solid rgba(232,0,45,.1);
  transition: background .3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(232,0,45,.04); }
.stat-num {
  display: block;
  font-family: 'Orbitron', sans-serif; font-size: 2rem;
  font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 6px;
}
.stat-lbl {
  font-size: .72rem; letter-spacing: .16em;
  color: var(--muted); text-transform: uppercase; font-weight: 600;
}

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.sw-section { padding: 110px 40px; }
.sw-section--alt { background: var(--dark2); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Orbitron', sans-serif; font-size: .62rem;
  letter-spacing: .28em; color: var(--red); text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow::after { content: ''; width: 48px; height: 1px; background: var(--red); }
.section-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: .06em; line-height: .95; margin-bottom: 22px;
}
.section-h2 .accent { color: var(--red); }
.section-lead { color: var(--muted); max-width: 580px; line-height: 1.7; margin-bottom: 60px; }

/* ================================================================
   FEATURES GRID
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px; margin-top: 16px;
}
.feat-card {
  background: var(--dark3); padding: 50px 42px;
  position: relative; overflow: hidden;
  transition: transform .35s;
}
.feat-card:hover { transform: translateY(-8px); }
.feat-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s;
}
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon { font-size: 2.6rem; margin-bottom: 22px; display: block; filter: drop-shadow(0 0 14px rgba(232,0,45,.5)); }
.feat-title {
  font-family: 'Orbitron', sans-serif; font-size: .88rem;
  font-weight: 700; letter-spacing: .1em;
  color: #fff; text-transform: uppercase; margin-bottom: 14px;
}
.feat-body { color: var(--muted); font-size: .95rem; line-height: 1.65; font-weight: 500; }

/* ================================================================
   VIDEO PREVIEW
   ================================================================ */
.video-section { background: var(--dark); }
.video-section .section-inner { text-align: center; }
.video-section .section-eyebrow { justify-content: center; }
.video-section .section-eyebrow::before { content: ''; width: 48px; height: 1px; background: var(--red); }
.video-section .section-eyebrow::after { display: none; }
.video-outer {
  margin-top: 52px; position: relative;
  padding-bottom: 56.25%;
  background: #000;
  border: 1px solid rgba(232,0,45,.3);
  box-shadow: 0 0 100px rgba(232,0,45,.15);
  overflow: hidden;
}
.video-outer video, .video-outer iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.video-corner {
  position: absolute; width: 26px; height: 26px;
  border-color: var(--red); border-style: solid; z-index: 2;
}
.vc-tl { top:-1px; left:-1px; border-width:2px 0 0 2px; }
.vc-tr { top:-1px; right:-1px; border-width:2px 2px 0 0; }
.vc-bl { bottom:-1px; left:-1px; border-width:0 0 2px 2px; }
.vc-br { bottom:-1px; right:-1px; border-width:0 2px 2px 0; }

/* ================================================================
   WHY JOIN / TRUST SPLIT
   ================================================================ */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center; margin-top: 60px;
}
.trust-list { list-style: none; }
.trust-list li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.trust-list li:last-child { border-bottom: none; }
.trust-check {
  flex-shrink: 0; width: 30px; height: 30px;
  border: 1px solid var(--red); color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
  margin-top: 2px; font-family: 'Orbitron', sans-serif;
}
.trust-text strong {
  display: block; font-family: 'Orbitron', sans-serif;
  font-size: .78rem; letter-spacing: .08em; color: #fff; margin-bottom: 5px;
}
.trust-text span { color: var(--muted); font-size: .92rem; line-height: 1.55; }
.cta-card {
  background: var(--dark3);
  border: 1px solid rgba(232,0,45,.22);
  padding: 52px 44px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,0,45,.08), transparent 65%);
  pointer-events: none;
}
.cta-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; letter-spacing: .08em; margin-bottom: 10px;
}
.cta-card-title span { color: var(--red); }
.cta-card-sub { color: var(--muted); margin-bottom: 38px; line-height: 1.65; }
.btn-primary-full {
  display: block; width: 100%; padding: 20px;
  background: var(--red); color: #fff;
  font-family: 'Orbitron', sans-serif; font-size: .92rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-align: center; margin-bottom: 14px;
  clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%);
  transition: all .3s;
  animation: ctaGlow 3s ease-in-out infinite;
}
.btn-primary-full:hover {
  background: var(--red-glow); color: #fff;
  box-shadow: 0 10px 60px rgba(255,0,64,.65);
  transform: translateY(-2px);
}
.cta-link-small {
  font-family: 'Orbitron', sans-serif; font-size: .72rem;
  letter-spacing: .1em; color: var(--muted); text-transform: uppercase;
}
.cta-link-small:hover { color: #fff; }
.trust-badges {
  display: flex; justify-content: center; gap: 22px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.tbadge {
  display: flex; align-items: center; gap: 6px;
  font-size: .7rem; letter-spacing: .08em;
  color: rgba(122,112,144,.65); text-transform: uppercase; font-weight: 600;
}
.tbadge-icon { font-size: 1rem; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: 60px;
}
.testi-card {
  background: var(--dark3); padding: 38px 36px;
  border-top: 2px solid rgba(232,0,45,.25);
  transition: transform .3s;
}
.testi-card:hover { transform: translateY(-5px); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.testi-body { color: rgba(232,224,208,.75); font-size: .95rem; line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-author { font-family: 'Orbitron', sans-serif; font-size: .72rem; letter-spacing: .1em; color: var(--red); text-transform: uppercase; }

/* ================================================================
   FINAL CTA BANNER
   ================================================================ */
.cta-banner {
  padding: 120px 40px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,0,45,.14), transparent 68%);
  pointer-events: none;
}
.cta-banner-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  letter-spacing: .06em; line-height: .92;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.cta-banner-title .line2 { color: var(--red); }
.cta-banner-sub {
  color: var(--muted); font-size: 1.1rem;
  max-width: 520px; margin: 0 auto 52px; line-height: 1.65;
  position: relative; z-index: 1;
}
.cta-banner .btn-primary { position: relative; z-index: 1; }

/* ================================================================
   WORDPRESS BLOG / POSTS
   ================================================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-top: 50px;
}
.post-card {
  background: var(--dark3); overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .3s, border-color .3s;
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(232,0,45,.3); }
.post-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: brightness(.9); transition: filter .3s; }
.post-card:hover .post-thumb img { filter: brightness(1.05) saturate(1.1); }
.post-body { padding: 28px; }
.post-cat {
  font-family: 'Orbitron', sans-serif; font-size: .6rem;
  letter-spacing: .2em; color: var(--red); text-transform: uppercase;
  margin-bottom: 10px; display: block;
}
.post-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  letter-spacing: .06em; margin-bottom: 12px;
  color: #fff; line-height: 1.1;
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--red); }
.post-excerpt { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 20px; }
.post-read-more {
  font-family: 'Orbitron', sans-serif; font-size: .68rem;
  letter-spacing: .12em; color: var(--red); text-transform: uppercase;
}
.post-read-more:hover { color: var(--red-glow); }

/* ================================================================
   SINGLE POST / PAGE
   ================================================================ */
.sw-content-wrap { max-width: 800px; margin: 0 auto; padding: 120px 40px 80px; }
.entry-header { margin-bottom: 48px; }
.entry-cats { margin-bottom: 14px; }
.entry-cats a { font-family: 'Orbitron', sans-serif; font-size: .6rem; letter-spacing: .2em; color: var(--red); text-transform: uppercase; margin-right: 12px; }
.entry-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: .06em; line-height: 1; color: #fff; }
.entry-meta { margin-top: 16px; font-size: .82rem; color: var(--muted); font-family: 'Orbitron', sans-serif; letter-spacing: .06em; }
.entry-meta a { color: var(--muted); }
.entry-thumb { margin-bottom: 48px; }
.entry-thumb img { width: 100%; border: 1px solid rgba(232,0,45,.2); }
.entry-content { color: rgba(232,224,208,.8); line-height: 1.8; }
.entry-content h2, .entry-content h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: .06em; color: #fff; margin: 36px 0 16px; }
.entry-content h2 { font-size: 2rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--red); border-bottom: 1px solid rgba(232,0,45,.3); }
.entry-content a:hover { color: var(--red-glow); }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
  border-left: 3px solid var(--red); margin: 32px 0;
  padding: 16px 28px; background: var(--dark2);
  font-style: italic; color: rgba(232,224,208,.7);
}
.entry-cta-inline {
  margin: 44px 0; padding: 44px; background: var(--dark3);
  border: 1px solid rgba(232,0,45,.25); text-align: center;
}
.entry-cta-inline .btn-primary { display: inline-flex; }

/* ================================================================
   SIDEBAR
   ================================================================ */
.sw-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 48px; max-width: var(--max-w); margin: 0 auto; padding: 120px 40px 80px; }
.sw-sidebar {}
.widget { margin-bottom: 40px; }
.widget-title { font-family: 'Orbitron', sans-serif; font-size: .78rem; letter-spacing: .15em; color: var(--red); text-transform: uppercase; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(232,0,45,.2); }
.widget ul { list-style: none; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .9rem; color: var(--muted); }
.widget ul li a { color: var(--muted); }
.widget ul li a:hover { color: #fff; }

/* ================================================================
   AFFILIATE WIDGET (sidebar)
   ================================================================ */
.affiliate-widget {
  background: var(--dark3); border: 1px solid rgba(232,0,45,.3);
  padding: 28px; text-align: center; margin-bottom: 40px;
}
.affiliate-widget img { margin: 0 auto 18px; border: 1px solid rgba(232,0,45,.2); }
.affiliate-widget p { color: var(--muted); font-size: .85rem; line-height: 1.6; margin-bottom: 18px; }
.affiliate-widget .btn-primary { display: block; font-size: .72rem; padding: 14px 20px; }

/* ================================================================
   404 PAGE
   ================================================================ */
.page-404 { text-align: center; padding: 180px 40px; }
.page-404 .big-num { font-family: 'Bebas Neue', sans-serif; font-size: 14rem; line-height: 1; color: rgba(232,0,45,.15); display: block; }
.page-404 h1 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: .1em; margin-bottom: 16px; }
.page-404 p { color: var(--muted); margin-bottom: 36px; }

/* ================================================================
   FOOTER
   ================================================================ */
#sw-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(232,0,45,.15);
  padding: 60px 40px 36px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: 14px; display: block; }
.footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.65; }
.footer-col-title { font-family: 'Orbitron', sans-serif; font-size: .7rem; letter-spacing: .18em; color: var(--red); text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px; text-align: center;
}
.footer-disclaimer {
  font-size: .72rem; color: rgba(122,112,144,.45);
  line-height: 1.75; max-width: 760px; margin: 0 auto 16px;
  text-transform: uppercase; letter-spacing: .04em;
}
.footer-copy { font-size: .68rem; color: rgba(122,112,144,.3); letter-spacing: .1em; text-transform: uppercase; }

/* ================================================================
   FLOATING CTA BUTTON
   ================================================================ */
#float-cta {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
#float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#float-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--red); color: #fff;
  font-family: 'Orbitron', sans-serif; font-size: .72rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  box-shadow: 0 8px 40px rgba(232,0,45,.55);
  transition: all .3s;
  animation: ctaGlow 3s ease-in-out infinite;
}
#float-cta a:hover {
  background: var(--red-glow); color: #fff;
  box-shadow: 0 12px 70px rgba(255,0,64,.75);
  transform: translateY(-2px);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.sw-reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.sw-reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   SEARCH / FORM
   ================================================================ */
.search-form { display: flex; gap: 8px; }
.search-field {
  flex: 1; padding: 12px 18px;
  background: var(--dark); color: var(--text);
  border: 1px solid rgba(232,0,45,.25); outline: none;
  font-family: 'Rajdhani', sans-serif; font-size: .95rem;
}
.search-field:focus { border-color: var(--red); }
.search-submit {
  padding: 12px 20px; background: var(--red); color: #fff;
  border: none; cursor: pointer; font-family: 'Orbitron', sans-serif;
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  transition: background .25s;
}
.search-submit:hover { background: var(--red-glow); }

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 60px; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--dark3); color: var(--muted);
  font-family: 'Orbitron', sans-serif; font-size: .75rem;
  border: 1px solid rgba(255,255,255,.06); transition: all .25s;
}
.pagination a:hover, .pagination .current {
  background: var(--red); color: #fff; border-color: var(--red);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split-grid { gap: 44px; }
  .sw-with-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sw-section { padding: 70px 24px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 72px; background: rgba(5,5,8,.98); padding: 40px; gap: 24px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  #sw-nav { padding: 0 24px; }
  #float-cta { bottom: 18px; right: 18px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 80px 24px; }
  .sw-content-wrap { padding: 100px 24px 60px; }
  .sw-with-sidebar { padding: 100px 24px 60px; }
  .gate-wrap { padding: 44px 28px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   WP CORE CLASSES
   ================================================================ */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--muted); text-align: center; margin-top: 8px; }
.sticky {}
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
