/* =========================================================
   RESET
   ========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* =========================================================
   ROOT
   ========================================================= */
:root{
  --black: #0b0b0b;
  --gold: #c9a24d;
  --white: #f5f5f5;
}

/* =========================================================
   BASE
   ========================================================= */
body{
  font-family: 'Georgia', serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  padding-top: 66px; /* fixed header space */
}

img{ max-width: 100%; height: auto; display: block; }

/* =========================================================
   HEADER + NAV (premium)
   ========================================================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 66px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;

  background: rgba(11,11,11,0.65);
  border-bottom: 1px solid rgba(201, 162, 77, 0.18);
  backdrop-filter: blur(10px);
}

.brand{
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}

.brand-mark{
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 0.95rem;
}

.brand-sub{
  color: rgba(245,245,245,0.75);
  font-size: 0.8rem;
  letter-spacing: 1.2px;
}

/* Desktop nav hidden on mobile */
.nav-desktop{ display: none; gap: 22px; }
.nav-desktop a{
  color: rgba(245,245,245,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: color 0.25s ease;
}
.nav-desktop a:hover{ color: var(--gold); }

/* Hamburger */
.nav-toggle{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;

  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(201, 162, 77, 0.35);
  cursor: pointer;
}
.nav-toggle .bar{
  width: 18px;
  height: 2px;
  background: var(--gold);
  opacity: 0.9;
}

/* Overlay + Drawer */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1001;
}

.nav-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(88vw, 360px);
  background: var(--black);
  border-left: 1px solid rgba(201, 162, 77, 0.22);

  transform: translateX(102%);
  transition: transform 0.28s ease;
  z-index: 1002;

  padding: 18px 16px;
  display: flex;
  flex-direction: column;
}

.nav-drawer-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 162, 77, 0.15);
  margin-bottom: 14px;
}

.drawer-title{
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-close{
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(201, 162, 77, 0.35);
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.drawer-link{
  padding: 14px 10px;
  text-decoration: none;
  color: rgba(245,245,245,0.85);
  border: 1px solid rgba(201, 162, 77, 0.14);
  background: rgba(255,255,255,0.02);
  margin-bottom: 10px;
  letter-spacing: 1px;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.drawer-link:hover{
  border-color: rgba(201, 162, 77, 0.55);
  color: var(--gold);
  background: rgba(201, 162, 77, 0.08);
  transform: translateY(-1px);
}
.drawer-link.subtle{ opacity: 0.75; }

.drawer-divider{
  height: 1px;
  background: rgba(201, 162, 77, 0.15);
  margin: 10px 0 14px;
}

/* Open state */
body.nav-open .nav-overlay{ opacity: 1; pointer-events: auto; }
body.nav-open .nav-drawer{ transform: translateX(0); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1{
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.hero-overlay p{
  font-size: 1rem;
  opacity: 0.85;
}

/* bottom fade for overlap */
.hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.92));
  pointer-events:none;
}

/* =========================================================
   VERIFIED OVERLAP BADGE (only one system)
   ========================================================= */
.verified-overlap{
  position: relative;
  z-index: 20;
  margin-top: -44px;     /* overlaps hero bottom */
  padding: 0 16px 26px;
  display: flex;
  justify-content: center;
}

.verified-card{
  width: 100%;
  max-width: 580px;      /* mobile: readable but not huge */
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(201, 162, 77, 0.30);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
  padding: 14px 14px;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transform: translateY(10px);
  animation: verifiedFadeIn 0.9s ease forwards;
  animation-delay: 0.25s;
}

.verified-card img{
  width: 100%;
  max-width: 500px;      /* mobile badge size */
}

/* Animation */
@keyframes verifiedFadeIn{
  to{ opacity: 1; transform: translateY(0); }
}

/* =========================================================
   FEATURE SECTIONS
   ========================================================= */
.feature{
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  gap: 30px;
}

.feature-image img{
  width: 100%;
  border-radius: 2px;
}

.feature-text h2{
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.feature-text p{
  font-size: 1rem;
  opacity: 0.9;
}

/* =========================================================
   FEATURE REVERSE (layout helper)
   ========================================================= */
.feature.reverse{
  flex-direction: column-reverse;
}

@media (min-width: 900px){
  .feature{
    flex-direction: row;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .feature.reverse{
    flex-direction: row-reverse;
  }
  .feature-image,
  .feature-text{
    flex: 1;
  }
}

/* =========================================================
   FILTERBAR (search/filter UI)
   ========================================================= */
.filterbar{
  position: sticky;
  top: 66px;
  z-index: 900;
  padding: 12px 12px 10px;
  background: rgba(11,11,11,0.72);
  border-bottom: 1px solid rgba(201, 162, 77, 0.14);
  backdrop-filter: blur(10px);
}

.filterbar-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.filter-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.f-label{
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(245,245,245,0.7);
  margin-bottom: 6px;
}

.f-select{
  width: 100%;
  height: 44px;
  padding: 0 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(201, 162, 77, 0.22);
  color: var(--white);
  outline: none;
  letter-spacing: 0.6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, rgba(201, 162, 77, 0.9) 50%),
    linear-gradient(135deg, rgba(201, 162, 77, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 18px,
    calc(100% - 12px) 18px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.f-select:focus{ border-color: rgba(201, 162, 77, 0.65); }

.filter-chips{
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.filter-chips::-webkit-scrollbar{ display: none; }

.f-chip{
  flex: 0 0 auto;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(201, 162, 77, 0.28);
  background: rgba(255,255,255,0.02);
  color: rgba(245,245,245,0.82);
  letter-spacing: 0.8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.f-chip:hover{ transform: translateY(-1px); }
.f-chip.is-active{
  border-color: rgba(201, 162, 77, 0.95);
  background: rgba(201, 162, 77, 0.14);
  color: var(--gold);
}

.active-filters{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(201, 162, 77, 0.28);
  background: rgba(255,255,255,0.02);
  color: rgba(245,245,245,0.85);
  letter-spacing: 0.7px;
  font-size: 0.82rem;
}
.pill strong{ color: var(--gold); font-weight: 600; }

.pill button{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 77, 0.35);
  background: rgba(0,0,0,0.25);
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
  font-size: 1rem;
}
.pill button:hover{ background: rgba(201, 162, 77, 0.12); }

.filter-actions{
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.f-reset{
  color: rgba(201, 162, 77, 0.85);
  text-decoration: none;
  letter-spacing: 0.8px;
  font-size: 0.85rem;
  opacity: 0.85;
}
.f-reset:hover{ opacity: 1; }

.f-count{
  font-size: 0.85rem;
  opacity: 0.7;
}
.f-count strong{ color: var(--gold); font-weight: 600; }

/* =========================================================
   PROFILES SECTION
   ========================================================= */
.profiles{
  padding: 70px 20px 80px;
  background-color: var(--black);
  padding-top: 50px;
}

.section-title{
  text-align: center;
  color: var(--gold);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.profiles-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Cards */
.profile-card{
  background-color: #111;
  border: 1px solid rgba(201, 162, 77, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.25s ease;
}
.profile-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.profile-link{
  display: block;
  color: inherit;
  text-decoration: none;
}

.profile-image img{
  width: 100%;
  height: 380px; /* mobile crop */
  object-fit: cover;
}

.profile-info{
  padding: 25px;
  text-align: center;
}

.profile-info h3{
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.profile-meta{
  display: block;
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 20px;
}

.profile-btn{
  display: inline-block;
  padding: 10px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.profile-card:hover .profile-btn{
  background-color: var(--gold);
  color: var(--black);
}

.profile-card.is-hidden{ display: none; }

/* =========================================================
   NO RESULTS (premium)
   ========================================================= */
.no-results{
  margin-top: 26px;
  padding: 22px;
  background: rgba(15,15,15,0.6);
  border: 1px solid rgba(201, 162, 77, 0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.no-results-inner{
  text-align: center;
  padding: 24px 14px;
  max-width: 520px;
  margin: 0 auto;
}

.no-results-tag{
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(201, 162, 77, 0.35);
  color: var(--gold);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 0.75rem;
  background: rgba(0,0,0,0.25);
}

.no-results h3{
  margin-top: 14px;
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 1.35rem;
}

.no-results p{
  margin-top: 8px;
  opacity: 0.75;
}

/* =========================================================
   BUTTONS (shared)
   ========================================================= */
.btn-gold, .btn-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-gold{
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover{ transform: translateY(-1px); }
.btn-ghost{
  background: rgba(0,0,0,0.20);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 77, 0.55);
}
.btn-ghost:hover{
  background: rgba(201, 162, 77, 0.12);
  transform: translateY(-1px);
}
.btn-gold.full{ width: 100%; }

/* =========================================================
   RULES MODAL (premium)
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none; /* hidden by default */
}

.modal.is-open { display: block; }

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: modalFade 220ms ease forwards;
}

.modal-dialog{
  position: relative;
  width: min(92vw, 560px);
  margin: 10vh auto 0;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(201, 162, 77, 0.28);
  box-shadow: 0 30px 70px rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  overflow: hidden;

  opacity: 0;
  transform: translateY(10px);
  animation: modalIn 260ms ease forwards;
}

.modal-head{
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(201, 162, 77, 0.14);
  position: relative;
}

.modal-kicker{
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(201, 162, 77, 0.35);
  color: var(--gold);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 0.72rem;
  background: rgba(0,0,0,0.25);
}

.modal-title{
  margin-top: 12px;
  color: var(--gold);
  letter-spacing: 2.4px;
  font-size: 1.7rem;
}

.modal-x{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 77, 0.28);
  background: rgba(0,0,0,0.25);
  color: var(--gold);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.modal-x:hover{ background: rgba(201, 162, 77, 0.10); }

.modal-body{
  padding: 16px 18px 10px;
}

.modal-lead{
  opacity: 0.85;
}

.rules-list{
  margin-top: 14px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.rules-list li{
  opacity: 0.82;
}

.rules-list li span{
  color: var(--gold);
  letter-spacing: 0.6px;
  opacity: 0.95;
}

.modal-note{
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: 0.65;
}

.modal-actions{
  padding: 14px 18px 18px;
  display: grid;
  gap: 10px;
}

.modal-primary{
  height: 46px;
  width: 100%;
}

.modal-secondary{
  height: 46px;
  width: 100%;
}

@keyframes modalFade{
  to{ opacity: 1; }
}

@keyframes modalIn{
  to{ opacity: 1; transform: translateY(0); }
}

/* Desktop */
@media (min-width: 768px){
  .modal-dialog{
    margin-top: 12vh;
    width: min(92vw, 640px);
  }

  .modal-title{ font-size: 2rem; }
  .modal-actions{ grid-template-columns: 1fr 1fr; }
}
body.no-scroll { overflow: hidden; }
.modal.is-hard .modal-backdrop { cursor: not-allowed; }






/* =========================================================
   PROFILE PAGE (premium)  — KEEP AS IS
   (same as your working block)
   ========================================================= */
.p-hero{ position: relative; height: 88vh; min-height: 520px; overflow: hidden; background: #000; }
.p-hero-media img{ width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); }
.p-hero-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 35%, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.95) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.92));
}
.p-hero-content{ position: absolute; left: 20px; right: 20px; bottom: 34px; max-width: 1100px; margin: 0 auto; }
.p-tag{ display: inline-block; padding: 8px 12px; border: 1px solid rgba(201, 162, 77, 0.55); color: var(--gold); letter-spacing: 1.5px; font-size: 0.75rem; text-transform: uppercase; background: rgba(0,0,0,0.25); backdrop-filter: blur(6px); }
.p-name{ margin-top: 12px; color: var(--gold); font-size: 2.4rem; letter-spacing: 2px; }
.p-sub{ margin-top: 8px; opacity: 0.85; max-width: 52ch; }
.p-cta-row{ margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }
.p-wrap{ padding: 26px 16px 90px; max-width: 1100px; margin: 0 auto; }
.p-card{ background: #0f0f0f; border: 1px solid rgba(201, 162, 77, 0.22); padding: 22px; margin-top: 16px; box-shadow: 0 18px 40px rgba(0,0,0,0.55); }
.p-facts{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fact{ padding: 14px; background: rgba(255,255,255,0.02); border: 1px solid rgba(201, 162, 77, 0.15); }
.fact-label{ display: block; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.65; }
.fact-value{ display: block; margin-top: 6px; color: var(--gold); letter-spacing: 1px; font-size: 1.05rem; }
.p-h2{ color: var(--gold); letter-spacing: 1.5px; font-size: 1.35rem; margin-bottom: 10px; }
.p-h3{ color: var(--gold); letter-spacing: 1.2px; font-size: 1.05rem; margin-bottom: 10px; }
.p-text{ opacity: 0.9; } .p-text.subtle{ opacity: 0.75; }
.p-divider{ height: 1px; background: rgba(201, 162, 77, 0.18); margin: 18px 0; }
.p-chips{ display: flex; flex-wrap: wrap; gap: 10px; }
.chip{ padding: 9px 12px; border: 1px solid rgba(201, 162, 77, 0.35); color: var(--gold); font-size: 0.82rem; background: rgba(0,0,0,0.25); }
.p-gallery-head{ display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.p-note{ font-size: 0.85rem; opacity: 0.65; }
.p-gallery-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}




/* ===== Rules confirmations (21+) ===== */
.rules-checks{
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.chk{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 12px;
  border: 1px solid rgba(201, 162, 77, 0.18);
  background: rgba(255,255,255,0.02);
}

.chk input{
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.chk span{
  opacity: 0.88;
  letter-spacing: 0.2px;
}

.chk strong{ color: var(--gold); }

.modal-primary[disabled]{
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}
.manifesto {
  background:#000;
  color:#fff;
  padding:80px 20px;
  text-align:center;
}

.manifesto-block {
  max-width:800px;
  margin:0 auto 80px auto;
}

.manifesto h2 {
  font-size:32px;
  margin-bottom:20px;
  text-transform:uppercase;
}

.manifesto p {
  opacity:0.8;
  line-height:1.7;
  margin-bottom:15px;
}

.join-btn {
  display:inline-block;
  margin-top:30px;
  padding:15px 40px;
  border:1px solid gold;
  color:gold;
  text-decoration:none;
  transition:0.3s;
}

.join-btn:hover {
  background:gold;
  color:#000;
}

.join-wrap{
  padding:80px 20px;
  background:#000;
}

.join-box{
  max-width:700px;
  margin:0 auto;
  background:#111;
  padding:40px 25px;
  border:1px solid rgba(201,162,77,0.3);
}

.join-box h2{
  color:gold;
  margin-bottom:20px;
  letter-spacing:2px;
}

.join-box p{
  margin-bottom:15px;
  opacity:0.85;
}

.join-box ul{
  margin:15px 0 20px 20px;
}

.join-actions{
  margin-top:30px;
  display:grid;
  gap:10px;
}
/* =========================================================
   JOIN PAGE: Tabs (Join / Login)
   ========================================================= */

.auth-tabs{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.auth-tab{
  height: 46px;
  border: 1px solid rgba(201,162,77,0.35);
  background: rgba(0,0,0,0.25);
  color: rgba(245,245,245,0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.auth-tab:hover{
  transform: translateY(-1px);
  border-color: rgba(201,162,77,0.65);
}

.auth-tab.is-active{
  background: rgba(201,162,77,0.14);
  border-color: rgba(201,162,77,0.95);
  color: var(--gold);
}

.auth-panels{
  margin-top: 14px;
  padding: 16px 14px;
  border: 1px solid rgba(201,162,77,0.18);
  background: rgba(255,255,255,0.02);
}

.auth-panel .btn-gold.full{
  margin-top: 10px;
}

.auth-hint{
  opacity: 0.82;
  margin-bottom: 8px;
}

.auth-foot{
  margin-top: 12px;
  font-size: 0.9rem;
  opacity: 0.65;
}

/* =========================================================
   JOIN PAGE: Protection Visuals
   ========================================================= */

.protection-row{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-bottom:40px;
}

.protection-card{
  background:#111;
  border:1px solid rgba(201,162,77,0.25);
  padding:20px;
  text-align:center;
}

.protection-card img{
  width:100%;
  max-height:200px;
  object-fit:cover;
  margin-bottom:15px;
  border:1px solid rgba(201,162,77,0.2);
}

.protection-card h3{
  color:gold;
  margin-bottom:10px;
  letter-spacing:1px;
}

.protection-card p{
  opacity:0.8;
  font-size:0.95rem;
}

/* DESKTOP INLINE */
@media(min-width:768px){

.protection-row{
  flex-direction:row;
}

.protection-card{
  flex:1;
}

}

/* =========================================================
   JOIN: Clickable protection images
   ========================================================= */
.protection-link{
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
}

/* =========================================================
   INFO MODALS: Mobile safe scrolling (not the hard gate)
   ========================================================= */
@media (max-width: 768px){
  .modal.modal-info .modal-dialog{
    margin: 0 auto;
    height: 92vh;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
  }
  .modal.modal-info .modal-body{
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
  }
  .modal.modal-info .modal-actions{
    position: sticky;
    bottom: 0;
    background: rgba(10,10,10,0.95);
  }
}


/* =========================================================
   JOIN: Image hint overlay (no HTML change)
   ========================================================= */
.protection-card{
  position: relative;
}

.protection-link{
  position: relative;
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
}

/* subtle overlay gradient */
.protection-link::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.55));
  opacity: 0.9;
  pointer-events:none;
}

/* “Tap to read policy” label */
.protection-link::after{
  content:"Tap to read policy";
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  padding:10px 12px;

  border:1px solid rgba(201,162,77,0.35);
  background: rgba(0,0,0,0.45);
  color: rgba(245,245,245,0.9);

  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.72rem;
  text-align: center;

  opacity: 0.95;
  pointer-events:none;
  backdrop-filter: blur(8px);
}

/* Desktop hover polish */
@media (hover:hover){
  .protection-link::before{ opacity: 0.55; transition: opacity .2s ease; }
  .protection-link::after{ opacity: 0.0; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease; }
  .protection-link:hover::before{ opacity: 0.9; }
  .protection-link:hover::after{ opacity: 0.95; transform: translateY(0); }
}



/* =========================================================
   MOBILE RULES MODAL FIX
   ========================================================= */

@media (max-width: 768px){

.modal-dialog{
  margin: 0 auto;
  height: 92vh;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

.modal-body{
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.modal-actions{
  position: sticky;
  bottom: 0;
  background: rgba(10,10,10,0.95);
  padding-bottom: 14px;
}

}

