:root{
  --bg:#070a0f;
  --bg2:#0b1018;
  --surface:rgba(255,255,255,.05);
  --surface2:rgba(255,255,255,.07);
  --border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --faint:rgba(255,255,255,.52);
  --primary:#d4af37;
  --accent:#ff3b3b;
  --good:#2bd576;
  --warn:#ffcc00;
  --shadowSoft:0 14px 44px rgba(0,0,0,.38);
  --r-lg:0px;
  --r-md:0px;
  --container:1120px;
  --gutter:22px;
  --ease:cubic-bezier(0.2,0.9,0.2,1);
  --font:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  --mono:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  --grain:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  line-height:1.5;
  overflow-x:hidden;
  background:
    radial-gradient(1100px 700px at 18% -10%, rgba(212,175,55,0.22), transparent 60%),
    radial-gradient(900px 620px at 110% 10%, rgba(255,59,59,0.10), transparent 55%),
    radial-gradient(900px 620px at 55% 120%, rgba(212,175,55,0.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
code{font-family:var(--mono);font-size:.95em}

.container{
  width:min(var(--container), calc(100% - 2*var(--gutter)));
  margin:0 auto;
}

.section{padding:86px 0}

.kicker{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--faint);
}

.h1{
  font-size:clamp(30px,3.5vw,54px);
  line-height:1.06;
  letter-spacing:-.03em;
  margin:12px 0 10px;
}

.h2{
  font-size:clamp(22px,2.2vw,34px);
  line-height:1.12;
  letter-spacing:-.02em;
  margin:0;
}

.lead{
  margin:0;
  color:var(--muted);
  font-size:clamp(15px,1.3vw,18px);
  max-width:78ch;
}

.card{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,var(--surface),rgba(255,255,255,0.03));
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  box-shadow:var(--shadowSoft);
  isolation:isolate;
}

.card::before{
  content:"";
  position:absolute;
  inset:-60px;
  pointer-events:none;
  opacity:0;
  transition:opacity 280ms var(--ease);
  background-image:
    radial-gradient(520px 260px at var(--mx, 20%) var(--my, 10%), rgba(212,175,55,0.16), transparent 55%),
    linear-gradient(120deg, transparent 0%, rgba(180,210,235,0.00) 40%, rgba(180,210,235,0.14) 50%, rgba(180,210,235,0.00) 60%, transparent 100%);
  background-repeat:no-repeat,no-repeat;
  background-size:auto,240% 240%;
  background-position:center,-140% 0%;
  mix-blend-mode:soft-light;
}

.card:hover::before{
  opacity:1;
  animation:sheenMove 1.25s var(--ease) 1;
}

@keyframes sheenMove{
  0%{background-position:center,-140% 0%}
  100%{background-position:center,140% 0%}
}

.card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:var(--grain);
  mix-blend-mode:overlay;
  opacity:.06;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  box-shadow:0 0 0 6px rgba(212,175,55,0.12);
}

.btn{
  appearance:none;
  border:0;
  cursor:pointer;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:-.01em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:transform 180ms var(--ease),box-shadow 180ms var(--ease),background 180ms var(--ease),opacity 180ms var(--ease);
  white-space:nowrap;
}

.btn:hover{transform:translateY(-1px)}

.btnPrimary{
  background:linear-gradient(135deg,var(--primary),rgba(255,255,255,0.12));
  color:#081022;
  box-shadow:0 18px 52px rgba(212,175,55,0.20);
}

.btnGhost{
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--text);
}

.btnSmall{
  padding:9px 12px;
  font-size:13px;
}

.input,.textarea,select{
  width:100%;
  border-radius:var(--r-md);
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
  color:var(--text);
  padding:12px 14px;
  outline:none;
}

.textarea{
  min-height:130px;
  resize:vertical;
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  background:rgba(7,10,15,0.72);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.navInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:950;
  letter-spacing:-.02em;
}

.brandLogoSimple,.footerLogoSimple{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.brandLogoImg{
  height:44px;
  width:auto;
}

.footerLogoImg{
  height:38px;
  width:auto;
}

.links{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  justify-content:center;
}

.links a{
  color:var(--muted);
  font-weight:900;
  font-size:13px;
  padding:8px 10px;
  border-radius:12px;
}

.links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.04);
}

.actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.hamburger{
  display:none;
}

.mobilePanel{
  display:none;
  border-top:1px solid rgba(255,255,255,0.08);
}

.mobilePanel.open{
  display:block;
}

.mobilePanel .container{
  padding:10px 0 16px;
}

.mobilePanel a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:900;
}

.mobilePanel a:hover{
  color:var(--text);
  background:rgba(255,255,255,.04);
}

.facebookIcon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  background:var(--surface);
}

.facebookIcon svg{
  width:18px;
  height:18px;
  fill:white;
}

.hero{
  padding:64px 0 24px;
}

.heroGrid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:18px;
  align-items:stretch;
}

.heroMain{
  padding:26px;
}

.heroSide{
  padding:22px;
}

.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.heroQuote{
  margin-top:18px;
  font-size:18px;
  font-weight:900;
  color:var(--accent);
}

.stats{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.stat{
  padding:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
}

.stat b{
  display:block;
  font-size:16px;
}

.stat span{
  display:block;
  font-size:12px;
  color:var(--muted);
}

.range{
  margin-top:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  overflow:hidden;
}

.rangeTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid var(--border);
  color:var(--muted);
  font-size:12px;
}

.dots{
  display:flex;
  gap:8px;
}

.dots span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,0.16);
}

.rangeBody{
  padding:14px;
}

.miniGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.mini{
  padding:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.035);
}

.mini strong{
  display:block;
  font-size:12px;
}

.mini em{
  display:block;
  font-style:normal;
  margin-top:4px;
  font-size:12px;
  color:var(--muted);
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  font-size:12px;
  color:var(--muted);
  gap:8px;
  align-items:center;
}

.tag .p,.tag .a,.tag .g,.tag .w{
  width:8px;
  height:8px;
  border-radius:999px;
}

.tag .p{background:var(--primary)}
.tag .a{background:var(--accent)}
.tag .g{background:var(--good)}
.tag .w{background:var(--warn)}

.twoCol,.contactGrid{
  display:grid;
  gap:18px;
  align-items:start;
}

.twoCol{grid-template-columns:1fr 1fr}
.contactGrid{grid-template-columns:1.1fr 0.9fr}

.counterGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:22px;
}

.counterCard{
  position:relative;
  padding:26px;
  overflow:hidden;
}

.counterNumber{
  font-size:44px;
  font-weight:950;
  letter-spacing:-.03em;
  line-height:1;
  color:var(--primary);
}

.counterSub{
  margin-top:6px;
  font-size:12px;
  color:var(--faint);
  font-family:var(--mono);
  letter-spacing:.08em;
  text-transform:uppercase;
}

.counterLabel{
  margin-top:10px;
  color:var(--muted);
  font-weight:800;
}

.hole{
  position:absolute;
  right:14px;
  top:14px;
  width:22px;
  height:22px;
  border-radius:999px;
  background:#111;
}

.casing{
  position:absolute;
  right:-22px;
  bottom:-18px;
  width:74px;
  height:28px;
  border-radius:999px;
  transform:rotate(-18deg);
  background:linear-gradient(90deg, rgba(212,175,55,0.15), rgba(212,175,55,0.65));
  border:1px solid rgba(212,175,55,0.35);
}

.nextEventBanner{
  padding:0;
  overflow:hidden;
}

.nextEventInner{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:18px;
  padding:26px;
  background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.nextEventTitle{
  font-size:clamp(22px,2.2vw,36px);
  line-height:1.1;
  letter-spacing:-.02em;
  margin:10px 0 0;
}

.nextEventMeta{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.nextEventRight{
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.18);
  padding:18px;
}

.bigDate{
  font-size:44px;
  font-weight:950;
  letter-spacing:-.03em;
  color:var(--primary);
  line-height:1;
}

.nextEventCtas{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.nextCountdown{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:18px;
}

.countBox{
  border:1px solid var(--border);
  background:rgba(255,255,255,0.04);
  padding:16px 12px;
  text-align:center;
}

.countBox b{
  display:block;
  font-size:32px;
  line-height:1;
  color:var(--primary);
  font-weight:950;
  letter-spacing:-.03em;
}

.countBox span{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.weaponsGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:22px;
}

.weaponCard{
  padding:26px;
}

.weaponIcon{
  font-size:40px;
  margin-bottom:12px;
}

.weaponCard h3{
  margin:0 0 10px;
  font-size:20px;
}

.weaponCard p{
  margin:0;
  color:var(--muted);
}

.gallery{
  padding:18px;
}

.slider{
  display:grid;
  gap:12px;
}

.slideFrame{
  position:relative;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  overflow:hidden;
  min-height:260px;
}

.slideImg{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  background:rgba(255,255,255,0.03);
}

.slideOverlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:12px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,0.62));
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

.cap{
  color:rgba(255,255,255,0.92);
  font-weight:900;
}

.cap small{
  display:block;
  color:rgba(255,255,255,0.75);
  margin-top:2px;
}

.sliderBtns{
  display:flex;
  gap:10px;
}

.thumbs{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:8px;
}

.thumb{
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  overflow:hidden;
  cursor:pointer;
  padding:0;
}

.thumb img{
  width:100%;
  height:70px;
  object-fit:cover;
  display:block;
  opacity:.85;
}

.thumb[aria-current="true"]{
  outline:2px solid rgba(212,175,55,0.70);
  outline-offset:2px;
}

.mapWrap{
  margin-top:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.03);
  overflow:hidden;
}

.mapWrap iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

.contactCard{
  padding:18px;
}

.form{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.row2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.note{
  margin-top:10px;
  color:var(--faint);
  font-size:12px;
}

.infoList{
  display:grid;
  gap:10px;
  margin-top:10px;
}

.infoLine{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  font-size:14px;
}

.ico{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(212,175,55,0.10);
  border:1px solid rgba(212,175,55,0.20);
  flex:0 0 auto;
  color:var(--text);
}

.downloadsPageGrid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
  margin-top:22px;
}

.downloadCard{
  padding:22px;
}

.downloadCardHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.downloadIcon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  font-size:24px;
  background:rgba(212,175,55,0.10);
  border:1px solid rgba(212,175,55,0.22);
}

.downloadActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.pageHeroCompact{
  padding:56px 0 10px;
}

.breadcrumbs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--faint);
  font-size:13px;
  margin-top:8px;
}

.noticeBox{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#2b2416;
  border:1px solid #6a5421;
  border-left:6px solid #d4af37;
  padding:18px;
  border-radius:10px;
  margin-bottom:28px;
}

.noticeIcon{
  font-size:28px;
  line-height:1;
  flex:0 0 auto;
}

.noticeText h3{
  margin:0 0 6px 0;
  color:#d4af37;
  font-size:18px;
}

.noticeText p{
  margin:0;
  opacity:.92;
  line-height:1.6;
}

.faqList{
  max-width:800px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.faqItem{
  border:1px solid var(--border);
  border-radius:10px;
  overflow:hidden;
  background:rgba(255,255,255,.02);
}

.faqQuestion{
  width:100%;
  text-align:left;
  padding:16px 18px;
  font-weight:600;
  font-size:16px;
  cursor:pointer;
  background:none;
  border:none;
  color:var(--text);
}

.faqQuestion:hover{
  background:rgba(255,255,255,.04);
}

.faqAnswer{
  padding:0 18px 16px 18px;
  display:none;
  color:var(--muted);
  line-height:1.6;
}

.faqItem.open .faqAnswer{
  display:block;
}

.eventActions{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.eventActions .btn{
  font-size:13px;
  padding:8px 12px;
}

.eventCard .signupBtn,
.eventCard .protocolBtn{
  display:none;
}

.footer{
  padding:26px 0 40px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:var(--muted);
}

.footerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.footerLinks{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:10px;
}

.footerLinks a{
  opacity:.7;
}

.footerLinks a:hover{
  opacity:1;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  display:none;
  background:rgba(0,0,0,0.82);
}

.lightbox.open{
  display:block;
}

.lightboxTop{
  position:absolute;
  top:12px;
  left:12px;
  right:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(7,10,15,0.55);
}

.lightboxBody{
  position:absolute;
  inset:70px 12px 12px 12px;
  display:grid;
  place-items:center;
}

.lightboxImg{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.reveal{
  opacity:0;
  transform:translateY(12px);
  transition:opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:980px){
  .heroGrid,.twoCol,.contactGrid,.nextEventInner{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .weaponsGrid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:820px){
  .downloadsPageGrid{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .links{display:none}
  .hamburger{display:inline-flex}
  .stats,.miniGrid,.row2{grid-template-columns:1fr}
  .thumbs{grid-template-columns:repeat(3,1fr)}
  .slideImg{height:280px}
  .nextCountdown{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:560px){
  .counterGrid,.weaponsGrid{
    grid-template-columns:1fr;
  }
}
function initFAQ(){

const items=document.querySelectorAll(".faqItem")

items.forEach(item=>{

const btn=item.querySelector(".faqQuestion")

btn.addEventListener("click",()=>{

item.classList.toggle("open")

})

})

}

initFAQ()