@font-face {
  font-family: 'Yeezy';
  src: url('/img/yeezy.ttf') format('truetype');
  font-display: swap;
}

:root {
  --red: #ff0004;
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.6);
  --text-dim: rgba(255,255,255,0.4);
  --gold: #ffd700;
  --border: rgba(255,255,255,0.15);
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;
}

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

body {
  font-family: 'Yeezy', sans-serif;
  background: #ff0004;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =============================================
   PRELOADER
   ============================================= */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ff0004;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-logo {
  height: 50px;
  width: auto;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: preloaderFadeIn 0.6s ease 0.1s forwards;
}

.preloader-bar-container {
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1px;
  overflow: hidden;
  opacity: 0;
  animation: preloaderFadeIn 0.6s ease 0.3s forwards;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 1px;
  transition: width 0.2s ease-out;
}

@keyframes preloaderFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide content during preload */
body.preloading header,
body.preloading main,
body.preloading footer,
body.preloading .navbar,
body.preloading #header,
body.preloading #footer {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Smooth fade in after preload */
header,
footer,
.navbar,
#header,
#footer,
main {
  transition: opacity 0.4s ease 0.1s, visibility 0.4s ease 0.1s;
}

/* =============================================
   AGE GATE
   ============================================= */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 1;
  visibility: visible;
}

.age-gate.verified {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-gate-content {
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.age-gate-logo {
  height: 60px;
  width: auto;
  margin-bottom: 2rem;
}

.age-gate-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.age-gate-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.age-gate-inputs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.age-select {
  font-family: 'Yeezy', 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  min-width: 80px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}

.age-select:focus {
  outline: none;
  border-color: #fff;
}

.age-select option {
  background: #1a1a1a;
  color: #fff;
}

.age-submit {
  font-family: 'Yeezy', 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.85rem 3rem;
  background: #fff;
  color: var(--red);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
}

.age-submit:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.age-submit:active {
  transform: translateY(0);
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.nav-logo-link:hover,
.nav-logo-link.active {
  background: rgba(255,255,255,0.12);
}

.nav-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
}

.nav-btn {
  font-family: 'Yeezy', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}

.nav-btn.active {
  background: rgba(255,255,255,0.12);
  color: var(--text);
}

.nav-btn.join-gradient {
  background: linear-gradient(90deg, #ff0004, #ff4444, #ff0004, #cc0000);
  background-size: 300% 100%;
  animation: joinShimmer 3s ease infinite;
  color: #fff;
}

.nav-btn.join-gradient:hover {
  box-shadow: 0 0 20px rgba(255,0,4,0.5);
}

@keyframes joinShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* =============================================
   PAGE LAYOUT
   ============================================= */

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 2rem 40px;
}

/* HOME EYE */
.cult-eye {
  width: 40vw;
  max-width: 350px;
  min-width: 200px;
  height: auto;
  object-fit: contain;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-text {
  font-family: 'Yeezy', sans-serif;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
  max-width: 750px;
}

.highlight-gold {
  background: linear-gradient(90deg, var(--gold), #ffa500, var(--gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.highlight-silver {
  background: linear-gradient(90deg, #c0c0c0, #fff, #c0c0c0);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.highlight-pride {
  background: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #24408e, #732982);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.highlight-trans {
  background: linear-gradient(90deg, #5bcefa, #f5a9b8, #fff, #f5a9b8, #5bcefa);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer { to { background-position: 200% center; } }

/* =============================================
   HELP PAGE
   ============================================= */

.help-container { max-width: 550px; width: 100%; text-align: left; }

.help-title {
  font-family: 'Yeezy', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  margin-bottom: 0.75rem;
}

.help-intro {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
}

.help-step {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #fff;
  color: #ff0004;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  margin-right: 0.6rem;
}

.step-title {
  font-family: 'Yeezy', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.step-text {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.copy-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.6rem 0.8rem;
  margin-top: 0.6rem;
  color: var(--gold);
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  transition: all 0.2s ease;
  font-family: 'IBM Plex Mono', monospace;
}

.copy-box:hover { background: var(--gold); color: #000; }

/* =============================================
   FAQ PAGE
   ============================================= */

.page-faq {
  padding: 100px 2rem 40px;
  justify-content: flex-start;
}

.faq-container {
  max-width: 700px;
  width: 100%;
  text-align: left;
}

.faq-title {
  font-family: 'Yeezy', sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.faq-item:hover {
  background: rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.2);
}

.faq-question {
  font-family: 'Yeezy', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #fff;
  color: var(--red);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  padding-left: 0.25rem;
}

.faq-a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 600;
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.faq-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.faq-link:hover {
  border-bottom-color: var(--gold);
}

/* =============================================
   ANIMATED HIGHLIGHTER MARKERS
   ============================================= */

.highlight-marker {
  position: relative;
  padding: 0.1em 0.3em;
  margin: 0 0.1em;
  border-radius: 3px;
  background-size: 200% 100%;
  animation: highlighterDraw 0.6s ease-out forwards, highlighterShimmer 4s ease-in-out infinite 0.6s;
}

/* Draw animation - marker being drawn */
@keyframes highlighterDraw {
  0% {
    background-size: 0% 100%;
    background-position: left center;
  }
  100% {
    background-size: 200% 100%;
    background-position: left center;
  }
}

/* Shimmer animation - gentle movement after drawn */
@keyframes highlighterShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Stagger animation delays for items in view */
.faq-item:nth-child(1) .highlight-marker { animation-delay: 0.2s, 0.8s; }
.faq-item:nth-child(2) .highlight-marker { animation-delay: 0.3s, 0.9s; }
.faq-item:nth-child(3) .highlight-marker { animation-delay: 0.4s, 1s; }
.faq-item:nth-child(4) .highlight-marker { animation-delay: 0.5s, 1.1s; }
.faq-item:nth-child(5) .highlight-marker { animation-delay: 0.6s, 1.2s; }

/* Red marker */
.marker-red {
  background: linear-gradient(90deg, 
    rgba(255,0,4,0.4) 0%, 
    rgba(255,60,60,0.5) 50%, 
    rgba(255,0,4,0.4) 100%);
  color: #fff;
}

/* Gold marker */
.marker-gold {
  background: linear-gradient(90deg, 
    rgba(255,215,0,0.35) 0%, 
    rgba(255,180,0,0.45) 50%, 
    rgba(255,215,0,0.35) 100%);
  color: #fff;
}

/* Silver marker */
.marker-silver {
  background: linear-gradient(90deg, 
    rgba(192,192,192,0.35) 0%, 
    rgba(255,255,255,0.45) 50%, 
    rgba(192,192,192,0.35) 100%);
  color: #fff;
}

/* Pride marker */
.marker-pride {
  background: linear-gradient(90deg, 
    rgba(228,3,3,0.4) 0%, 
    rgba(255,140,0,0.4) 17%, 
    rgba(255,237,0,0.4) 33%, 
    rgba(0,128,38,0.4) 50%, 
    rgba(36,64,142,0.4) 67%, 
    rgba(115,41,130,0.4) 83%, 
    rgba(228,3,3,0.4) 100%);
  color: #fff;
}

/* Trans marker */
.marker-trans {
  background: linear-gradient(90deg, 
    rgba(91,206,250,0.4) 0%, 
    rgba(245,169,184,0.45) 33%, 
    rgba(255,255,255,0.4) 50%, 
    rgba(245,169,184,0.45) 67%, 
    rgba(91,206,250,0.4) 100%);
  color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: #ff0004;
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-left { max-width: 250px; }
.footer-logo { height: 24px; margin-bottom: 0.5rem; }
.footer-blurb { font-size: 0.65rem; color: #000; line-height: 1.5; }

.footer-right { display: flex; gap: 2.5rem; }
.footer-col h4 { font-family: 'Yeezy', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: #000; margin-bottom: 0.5rem; }
.footer-col a { display: block; font-size: 0.7rem; color: #000; text-decoration: none; margin-bottom: 0.3rem; transition: opacity 0.15s; }
.footer-col a:hover { opacity: 0.6; }

.footer-pride {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: 0.5rem;
}

.pride-btn {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.2);
}

.pride-rainbow { background: linear-gradient(180deg, #e40303 0%, #ff8c00 20%, #ffed00 40%, #008026 60%, #24408e 80%, #732982 100%); }
.pride-trans { background: linear-gradient(180deg, #5bcefa 0%, #5bcefa 20%, #f5a9b8 20%, #f5a9b8 40%, #fff 40%, #fff 60%, #f5a9b8 60%, #f5a9b8 80%, #5bcefa 80%); }
.pride-bi { background: linear-gradient(180deg, #d60270 0%, #d60270 40%, #9b4f96 40%, #9b4f96 60%, #0038a8 60%); }
.pride-pan { background: linear-gradient(180deg, #ff1b8d 0%, #ff1b8d 33%, #ffd800 33%, #ffd800 66%, #1bb3ff 66%); }
.pride-lesbian { background: linear-gradient(180deg, #d52d00 0%, #ff9a56 25%, #fff 50%, #d362a4 75%, #a30262 100%); }
.pride-gay { background: linear-gradient(180deg, #078d70 0%, #98e8c1 33%, #fff 50%, #7bade2 66%, #3d1a78 100%); }
.pride-nb { background: linear-gradient(180deg, #fcf434 0%, #fcf434 25%, #fff 25%, #fff 50%, #9c59d1 50%, #9c59d1 75%, #2c2c2c 75%); }
.pride-ace { background: linear-gradient(180deg, #000 0%, #000 25%, #a3a3a3 25%, #a3a3a3 50%, #fff 50%, #fff 75%, #800080 75%); }
.pride-aro { background: linear-gradient(180deg, #3da542 0%, #a7d379 25%, #fff 50%, #a9a9a9 75%, #000 100%); }
.pride-genderfluid { background: linear-gradient(180deg, #ff75a2 0%, #ff75a2 20%, #fff 20%, #fff 40%, #be18d6 40%, #be18d6 60%, #000 60%, #000 80%, #333ebd 80%); }
.pride-intersex { background: #ffda00; }
.pride-queer { background: linear-gradient(180deg, #b57edc, #4b0082); }

.footer-bottom {
  max-width: 900px;
  margin: 1rem auto 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.15);
  font-size: 0.6rem;
  color: #000;
  text-align: center;
}

/* =============================================
   JOIN MODAL
   ============================================= */

.join-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.join-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.join-box {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 92%;
  text-align: center;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  animation: slideUp 0.4s ease 0.1s forwards;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}

@keyframes slideUp {
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.join-eye {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(255,0,4,0.3));
}

.join-heading {
  font-family: 'Yeezy', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  color: #fff;
}

.join-question {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.join-legal {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.join-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  margin-bottom: 1.75rem;
  user-select: none;
  transition: color 0.2s ease;
}

.join-checkbox:hover {
  color: #fff;
}

.join-checkbox input {
  display: none;
}

.checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.join-checkbox:hover .checkmark {
  border-color: rgba(255,255,255,0.4);
}

.join-checkbox input:checked + .checkmark {
  background: #ff0004;
  border-color: #ff0004;
  box-shadow: 0 0 15px rgba(255,0,4,0.4);
}

.checkmark::after {
  content: '✔';
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.join-checkbox input:checked + .checkmark::after {
  opacity: 1;
  transform: scale(1);
}

.join-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.join-btn {
  font-family: 'Yeezy', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.join-btn.no {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}

.join-btn.no:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.join-btn.yes {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
}

.join-btn.yes:not(:disabled) {
  background: #ff0004;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,0,4,0.3);
}

.join-btn.yes:not(:disabled):hover {
  box-shadow: 0 6px 30px rgba(255,0,4,0.5);
  transform: translateY(-2px);
}

.join-btn:disabled {
  cursor: not-allowed;
}

.rules-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.75rem;
  max-height: 280px;
  overflow-y: auto;
  text-align: left;
}

.rules-box::-webkit-scrollbar { width: 5px; }
.rules-box::-webkit-scrollbar-track { background: transparent; }
.rules-box::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
.rules-box::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

.rule {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.45;
}

.rule:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rule:first-child {
  padding-top: 0;
}

.rule-emoji {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}

.rule strong {
  color: #fff;
}

.join-btn.enter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(90deg, #ff0004, #ff3333, #ff0004, #cc0000);
  background-size: 300% 100%;
  animation: enterShimmer 3s ease infinite;
  color: #fff;
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 1.1rem;
  box-shadow: 0 4px 25px rgba(255,0,4,0.35);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.25s ease;
}

.join-btn.enter.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.join-btn.enter:hover {
  box-shadow: 0 6px 35px rgba(255,0,4,0.55);
  transform: translateY(-2px);
}

.unlock-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.join-btn.enter:hover .unlock-icon {
  transform: rotate(-12deg);
}

@keyframes enterShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.join-step {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.join-step.hidden {
  display: none;
}

.join-step.fade-out {
  opacity: 0;
  transform: translateX(-20px);
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  .navbar { gap: 0.25rem; padding: 0.3rem 0.5rem; }
  .nav-btn { font-size: 0.65rem; padding: 0.3rem 0.5rem; }
  .nav-logo { width: 18px; height: 18px; }
  
  .page { padding: 70px 1.5rem 30px; }
  .cult-eye { width: clamp(150px, 50vw, 250px); }
  .about-text { font-size: clamp(1rem, 5vw, 1.5rem); }
  
  .page-faq { padding: 80px 1rem 30px; }
  .faq-title { font-size: 2rem; margin-bottom: 1.5rem; }
  .faq-item { padding: 1rem; }
  .faq-question { font-size: 0.95rem; }
  .faq-answer { font-size: 0.85rem; }
  
  .footer { padding: 1rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
  .footer-left { max-width: 100%; text-align: center; }
  .footer-right { justify-content: center; gap: 1.5rem; width: 100%; }
  .footer-col { text-align: center; }
  .footer-col h4 { font-size: 0.8rem; }
  .footer-col a { font-size: 0.65rem; }
  .footer-bottom { font-size: 0.5rem; }
  .pride-btn { width: 14px; height: 10px; }
  
  .join-box { padding: 2rem 1.5rem; }
  .join-heading { font-size: 1.2rem; }
  .join-question { font-size: 1.1rem; }
  .join-eye { width: 60px; height: 60px; }
  .rules-box { max-height: 240px; }
  .rule { font-size: 0.85rem; }
  .join-checkbox { font-size: 0.95rem; }
}
