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

:root {
  --bg: #080808;
  --bg2: #111111;
  --bg3: #181818;
  --red: #e8192c;
  --red-dark: #b5101e;
  --red-glow: rgba(232,25,44,0.25);
  --white: #f5f5f5;
  --grey: #aaaaaa;
  --border: rgba(255,255,255,0.08);
  --card: #121212;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ====== HEADER ====== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img { height: 36px; }

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-nav a:hover, .header-nav a.active { color: var(--white); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  background: var(--red);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* Mobile menu */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.sidebar {
  position: fixed;
  top: 0; left: -280px;
  width: 280px; height: 100%;
  background: var(--bg2);
  z-index: 2000;
  padding: 80px 24px 24px;
  transition: left 0.3s ease;
  border-right: 1px solid var(--border);
}

.sidebar.open { left: 0; }

.sidebar a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--grey);
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.sidebar a:hover { color: var(--red); }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1500;
  display: none;
}

.overlay.show { display: block; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,25,44,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,25,44,0.12);
  border: 1px solid rgba(232,25,44,0.3);
  color: var(--red);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  animation: pulse-badge 3s ease infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,25,44,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(232,25,44,0); }
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 span { color: var(--red); }

.hero p {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-btns .btn-primary { padding: 14px 32px; font-size: 1rem; }
.hero-btns .btn-outline { padding: 14px 32px; font-size: 1rem; }

/* ====== STATS BAR ====== */
.stats-bar {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: var(--bg2);
  padding: 20px 16px;
  text-align: center;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ====== SECTION TITLES ====== */
.section {
  padding: 80px 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.section-title span { color: var(--red); }

.see-all {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}

.see-all:hover { opacity: 0.7; }

/* ====== VIDEO CARDS ====== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.video-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,25,44,0.3);
}

.card-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg3);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .card-thumb img { transform: scale(1.05); }

.card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.25s;
}

.video-card:hover .card-play { opacity: 1; }

.card-play svg {
  width: 48px; height: 48px;
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-badge.new { background: #16a34a; }

.card-views {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
}

.card-body { padding: 14px 16px; }

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
  line-height: 1.3;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--grey);
}

.card-cat {
  background: rgba(232,25,44,0.12);
  color: var(--red);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ====== CATEGORY TABS ====== */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--grey);
}

.tab:hover { border-color: var(--red); color: var(--white); }
.tab.active { background: var(--red); border-color: var(--red); color: white; }

/* ====== VIP BANNER ====== */
.vip-banner {
  background: linear-gradient(135deg, #1a0508 0%, #2d0a10 50%, #1a0508 100%);
  border: 1px solid rgba(232,25,44,0.3);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.vip-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(circle, rgba(232,25,44,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.vip-banner h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.vip-banner h2 span { color: var(--red); }

.vip-banner p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.vip-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.vip-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.vip-feature svg { color: var(--red); flex-shrink: 0; }

.vip-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vip-btns .btn-primary { padding: 16px 40px; font-size: 1rem; }

/* ====== OFFER CARDS ====== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}

.offer-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.offer-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, #1a0508, #121212);
}

.offer-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.offer-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offer-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.offer-subtitle {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.offer-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.offer-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ====== DISCLAIMER / AGE GATE ====== */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-gate-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.age-gate-box h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.age-gate-box p {
  color: var(--grey);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.age-gate-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-gate-btns .btn-primary { flex: 1; padding: 13px; }
.age-gate-btns .btn-outline { flex: 1; padding: 13px; }

/* ====== FOOTER ====== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 2rem 24px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo img { height: 28px; opacity: 0.7; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--grey);
  font-size: 0.85rem;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links a:hover { color: var(--red); }

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

.footer-copy {
  color: #444;
  font-size: 0.78rem;
}

/* ====== SCROLL TO TOP ====== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  transition: transform 0.2s;
  box-shadow: 0 4px 16px var(--red-glow);
}

.scroll-top:hover { transform: scale(1.1); }
.scroll-top.visible { display: flex; }

/* ====== ARTICLE PAGE ====== */
.article-hero {
  margin-top: 64px;
  position: relative;
}

.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, transparent 60%);
}

.article-hero-content {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  padding: 0 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.article-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 2rem 80px;
}

.cta-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 24px 0;
  transition: all 0.2s;
  color: white;
  border: none;
  cursor: pointer;
}

.cta-btn.primary { background: linear-gradient(135deg, #e8192c, #b5101e); }
.cta-btn.primary:hover { box-shadow: 0 4px 24px var(--red-glow); transform: translateY(-2px); }

.cta-btn.gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.cta-btn.gold:hover { box-shadow: 0 4px 24px rgba(245,158,11,0.3); transform: translateY(-2px); }

.cta-btn.purple { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.cta-btn.purple:hover { box-shadow: 0 4px 24px rgba(124,58,237,0.3); transform: translateY(-2px); }

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.media-grid img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 8px;
}

.post-description {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  color: var(--grey);
  line-height: 1.7;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  header { padding: 0 1rem; }
  .header-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .menu-btn { display: block; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 48px 1rem; }

  .hero { padding: 90px 1rem 48px; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 5rem); }

  .vip-banner { padding: 40px 24px; }

  .age-gate-box { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ====== SOUS-MENU APERÇU VIP ====== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: .7rem;
  opacity: .6;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 200px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 2000;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: flex;
}
.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 7px;
  font-size: .85rem;
  color: var(--grey) !important;
  transition: background .15s, color .15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-menu a:hover {
  background: rgba(232,25,44,.1);
  color: var(--white) !important;
}

/* Sidebar dropdown mobile */
.sidebar-sub {
  padding-left: 16px;
  border-left: 2px solid var(--red);
  margin: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-sub a {
  font-size: .9rem !important;
  padding: 8px 0 !important;
  border-bottom: none !important;
  color: #888 !important;
}
.sidebar-sub a:hover { color: var(--red) !important; }
