/* Lucky Massage — Style Sheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg: #0a0a0a;
  --bg-card: #151515;
  --bg-card-hover: #1c1c1c;
  --text: #e8e8e8;
  --text-muted: #888;
  --red: #c41e3a;
  --red-dark: #9a1830;
  --gold: #d4a017;
  --gold-dark: #b8880f;
  --border: #222;
  --radius: 8px;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; min-height: 100vh; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }

/* Age Gate */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.95);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(20px);
}
.age-gate__box {
  text-align: center; max-width: 480px; padding: 3rem 2rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
}
.age-gate__box h1 { font-size: 2rem; margin-bottom: .5rem; }
.age-gate__box .brand { color: var(--red); }
.age-gate__box p { color: var(--text-muted); margin: 1rem 0 2rem; font-size: .95rem; }
.age-gate__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block; padding: .75rem 2rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; border: none; cursor: pointer;
  transition: all .2s; text-align: center;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); color: #fff; }
.btn--gold { background: var(--gold); color: #000; }
.btn--gold:hover { background: var(--gold-dark); color: #000; }
.btn--outline { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn--outline:hover { border-color: var(--text-muted); color: var(--text); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.5rem;
}
.header__brand { font-size: 1.4rem; font-weight: 700; color: var(--text); }
.header__brand span { color: var(--red); }
.nav { display: flex; gap: 1.5rem; align-items: center; }
.nav a { color: var(--text-muted); font-size: .9rem; font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
  text-align: center; padding: 5rem 1.5rem 3rem;
  background: linear-gradient(180deg, rgba(196,30,58,.08) 0%, transparent 100%);
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: .5rem; }
.hero h1 span { color: var(--red); }
.hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto 2rem; }

/* Container */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* Section */
.section { padding: 3rem 0; }
.section__title { font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; }
.section__title span { color: var(--gold); }

/* Card Grid */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }

/* Content Card */
.card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); border-color: #333; }
.card__thumb {
  aspect-ratio: 16/9; position: relative;
}
.card__thumb--vintage { background: linear-gradient(135deg, #2a1a0e, #1a0e06, #3d2817); }
.card__thumb--modern { background: linear-gradient(135deg, #1a0e1e, #0e0618, #2a1030); }
.card__thumb--massage { background: linear-gradient(135deg, #0e1a1a, #061218, #0e2a20); }
.card__thumb--cam { background: linear-gradient(135deg, #1a0a0e, #180610, #2a1018); }
.card__thumb--dating { background: linear-gradient(135deg, #1a1008, #181006, #2a1a10); }
.card__thumb-label {
  position: absolute; bottom: .5rem; right: .5rem;
  background: rgba(0,0,0,.7); padding: .25rem .5rem;
  border-radius: 4px; font-size: .75rem; color: var(--text-muted);
}
.card__body { padding: 1rem; }
.card__body h3 { font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.card__body p { font-size: .85rem; color: var(--text-muted); }
.card__tag {
  display: inline-block; font-size: .7rem; padding: .2rem .5rem;
  background: var(--red); color: #fff; border-radius: 3px; margin-top: .5rem;
}

/* Category Cards (homepage) */
.cat-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center; transition: all .2s;
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.cat-card__icon { font-size: 2.5rem; margin-bottom: .75rem; }
.cat-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.cat-card p { font-size: .85rem; color: var(--text-muted); }

/* Affiliate Banner */
.banner {
  background: linear-gradient(135deg, var(--bg-card), #1a1018);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center; margin: 2rem 0;
}
.banner h3 { color: var(--gold); margin-bottom: .5rem; }
.banner p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }

/* Sidebar layout */
.layout-sidebar {
  display: grid; grid-template-columns: 1fr 300px; gap: 2rem;
}
.sidebar .banner { margin: 0 0 1.5rem; }

/* Cam grid */
.cam-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center;
}
.cam-card__logo { font-size: 3rem; margin-bottom: 1rem; }
.cam-card h3 { margin-bottom: .5rem; }
.cam-card p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.cam-card .badge { display: inline-block; background: var(--red); color: #fff; padding: .2rem .6rem; border-radius: 3px; font-size: .75rem; font-weight: 600; margin-bottom: 1rem; }

/* Dating card */
.dating-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
}
.dating-card h3 { font-size: 1.3rem; }
.dating-card .features { list-style: none; }
.dating-card .features li { padding: .3rem 0; font-size: .9rem; color: var(--text-muted); }
.dating-card .features li::before { content: '✓ '; color: var(--gold); font-weight: 700; }

/* Legal pages */
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.legal-content h1 { font-size: 2rem; margin-bottom: .5rem; }
.legal-content .updated { color: var(--text-muted); font-size: .9rem; margin-bottom: 2rem; }
.legal-content h2 { font-size: 1.2rem; color: var(--gold); margin: 2rem 0 .75rem; }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: .75rem; font-size: .95rem; line-height: 1.7; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content strong { color: var(--text); }

/* Footer */
.footer {
  border-top: 1px solid var(--border); margin-top: 3rem; padding: 2rem 1.5rem;
}
.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem;
}
.footer__col h4 { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.footer__col a { display: block; color: var(--text-muted); font-size: .85rem; margin-bottom: .4rem; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--max-w); margin: 1.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--border); text-align: center;
  font-size: .8rem; color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { display: none; position: fixed; inset: 0; background: rgba(10,10,10,.98); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 200; }
  .nav.open { display: flex; }
  .nav.open a { font-size: 1.2rem; }
  .nav-toggle { display: block; z-index: 201; }
  .layout-sidebar { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
}
