:root {
  --bg-image: url("/images/oops-fix-nip-slip.png");
  --card-bg: rgba(7, 7, 12, 0.377);
  --card-border: rgba(255, 255, 255, 0.06);
  --accent: #ff99cc;
  --text-main: #f9f9ff;
  --text-muted: #c4c4d8;
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.75);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --max-width: 960px;
  --nav-height: 64px;
  --gap-sm: 0.75rem;
  --gap-md: 1.25rem;
  --gap-lg: 1.75rem;
  --blur-bg: 18px;
  /* NEW: spacing + header var used below */
  --header-height: 64px;
  --space-3: 0.75rem;
  --space-4: 1.25rem;
}


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

html,

body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: #050509;
  overflow-x: hidden;
  overflow-y: auto; /* allow scrolling if content is taller than screen */
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Logo */

.logo-image {
  height: 35px;        /* tweak this to taste (20–32px) */
  max-height: 35px;
  width: auto;
  display: block;
  object-fit: contain;
}



.logo-text {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--text-main);
}

/* blurred photo background */
.bg-layer {
  position: fixed;
  inset: 0;
  background-image: var(--bg-image);
  background-size: contain;  /* prevent zoom-in */
  background-position: center;
  background-repeat: no-repeat;
    filter: blur(12px) brightness(0.5) contrast(0.85) saturate(1.2);
  z-index: -2;
}


/* soft gradient overlay so cards pop */
.bg-gradient {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, #ff99cc44, transparent 60%),
              radial-gradient(circle at bottom right, #8dd9ff3b, transparent 60%),
              linear-gradient(180deg, #050509aa, #050509ef);
  mix-blend-mode: normal;
  z-index: -1;
}

/* main centered shell */
.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  /* simple, consistent padding */
  padding: 1.5rem 1.5rem 2.5rem;
}


/* header */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0.65rem 1.1rem;
  backdrop-filter: blur(5px) saturate(140%);
  -webkit-backdrop-filter: blur(5px) saturate(140%);

  background: rgba(10, 10, 14, 0.30);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0 0 18px 18px;
}


/* keeps nav buttons aligned */
.nav-links {
  display: flex;
  gap: 0.8rem;
}

.branding {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, #ffe2f3, #ff99cc);
  box-shadow: 0 0 18px #ff99cc;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #fdf2ff;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
}

.nav-link {
  font-size: 0.55rem;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-muted);
  background: rgba(7, 7, 12, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: all 150ms ease-out;
}

.nav-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(13, 13, 22, 0.9);
}

/* cards container */
.cards {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);

  /* space below fixed header */
  margin-top: calc(var(--nav-height) + 1rem);
}


/* generic translucent card */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-strong);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(var(--blur-bg));
  -webkit-backdrop-filter: blur(var(--blur-bg));
}

.btn2 {
  background-color: #fc90e1b7;
  align-items: center;
  width: fit-content;
  animation: rainbow 8s ease infinite;
  border-radius: 4px;
  margin-left: 1px;
  font-size: large;
  margin-right: 1px;
  padding: 4px 4px;
  color: inherit;
  text-shadow: 3px 2px 2px #000000;
}

.box:hover {
  -webkit-filter: drop-shadow(0 0 0 #ff99cc);
  filter: drop-shadow(0 0 0 #ff99cc);
  background-color: var(--pink);
}

.btn2:hover {
  -webkit-filter: drop-shadow(0 0 0 #000000);
  filter: drop-shadow(0 0 0 #000000);
  background-color: var(--pink);
}
/* hero card */
.hero-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.75rem;
  align-items: center;
}

/* hero image + content */
.hero-media {
  flex-shrink: 0;
}

.hero-image {
  width: 200px;           /* slightly larger for portrait */
  height: auto;           /* no forced crop */
  border-radius: 24px;    /* keeps the rounded style */
  object-fit: contain;    /* show the FULL image */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-title {
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
}

.hero-subtitle {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-weight: 500;
  text-size-adjust: 10px;
}

.hero-text {
  margin: 0;
  color: var(--text-muted);
}

/* 2-column card */
/* 2-column info card on desktop */
.grid-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap-lg);
  align-items: flex-start;
}

/* Headings + text inside the columns */
.grid-col h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.grid-col p,
.grid-col ul {
  margin: 0;
  color: var(--text-muted);
}


/* footer-ish card */
.foot-card {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* list styles */
.simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.simple-list li + li {
  margin-top: 0.35rem;
}

.simple-list a {
  color: var(--accent);
  text-decoration: none;
}

.hero-content br {
  display: none;
}

.simple-list a:hover {
  text-decoration: underline;
}

/* --- Age gate modal --- */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #000000f0, #000000e0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.age-gate--hidden {
  display: none;
}

.age-gate__card {
  max-width: 480px;
  width: 100%;
  padding: 1.8rem 2rem;
  border-radius: 24px;
  background: rgba(7, 7, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);
}

.age-gate__title {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.age-gate__text {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.age-gate__buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.age-gate__btn {
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.age-gate__btn--primary {
  background: linear-gradient(135deg, #ff99cc, #ff7ab0);
  color: #050509;
  font-weight: 600;
}

.age-gate__btn--primary:hover {
  filter: brightness(1.05);
}

.age-gate__btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.18);
}

.age-gate__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- Rainbow text (opt-in) ---------- */
/* Use: <span class="rainbow">text</span> wherever you want */
.rainbow {
  background-size: 800% 800%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: rainbow 8s ease infinite;
  font-family: 'Comic Neue', system-ui, sans-serif;
  overflow: hidden;
  padding: 2px;
}
@media (max-width: 750px) {

  body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  /* Keep cards full width and nicely spaced under the fixed header */
  .cards {
    padding: 1.50rem;
    max-width: 100%;
    margin: 0 auto;
    margin-top: calc(var(--nav-height) + 2rem);
    gap: 1.1rem;
  }

  /* Clean, consistent spacing for every card */
  .card {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 1rem;
    padding: 1rem !important;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 0.9rem;          /* was 1.1rem */
  }

  .hero-content {
    gap: 0.0rem;         /* slightly smaller vertical gap */
    text-align: left;
  }


      .hero-title,
  h1 {
    font-size: 1.0rem;        /* smaller so it fits comfortably */
    line-height: 1.9rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  p,
  li,
  .hero-text {
    font-size: 0.95rem;
    line-height: 1.4rem;
  }

  .logo-image {
    max-width: 180px;
  }

  .nav-links {
    gap: 0px;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

/* On mobile: stack columns vertically */
@media (max-width: 800px) {
  .grid-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Prevent ALL horizontal scroll */
* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}
@keyframes rainbow {
  0%   { color: #e87d7d; text-shadow: 0 0 5px #e87d7d; }
  10%  { color: #e8bd7d; text-shadow: 0 0 5px #e8bd7d; }
  20%  { color: #d3e87d; text-shadow: 0 0 5px #d3e87d; }
  30%  { color: #92e87d; text-shadow: 0 0 5px #92e87d; }
  40%  { color: #7de8a8; text-shadow: 0 0 5px #7de8a8; }
  50%  { color: #7de8e8; text-shadow: 0 0 5px #7de8e8; }
  60%  { color: #7da8e8; text-shadow: 0 0 5px #7da8e8; }
  70%  { color: #7d81e8; text-shadow: 0 0 5px #7d81e8; }
  80%  { color: #b97de8; text-shadow: 0 0 5px #b97de8; }
  90%  { color: #e87dd7; text-shadow: 0 0 5px #e87dd7; }
  100% { color: #e87d7d; text-shadow: 0 0 5px #e87d7d; }
}