/* bolt-landing v2 — 1:1 blue hero look, fully scoped (.bolt-*) */
:root{
  --bolt-bg1:#6a11cb;  /* purple */
  --bolt-bg2:#2575fc;  /* blue  */
  --bolt-text:#eaf0ff;
  --bolt-muted:#c9d4f5;
  --bolt-card:#141824;
  --bolt-card-2:#101420;
  --bolt-border:rgba(255,255,255,.15);
  --bolt-chip:#1e2230;
  --bolt-chip-on:#2b3246;
  --bolt-btn:#ffffff;
  --bolt-btn-text:#17203a;
  --bolt-focus:0 0 0 3px rgba(255,255,255,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body.bolt-body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Helvetica Neue",Arial;
  color:var(--bolt-text);
  background: linear-gradient(135deg, var(--bolt-bg1) 0%, var(--bolt-bg2) 100%);
  -webkit-font-smoothing:antialiased;
  text-rendering: optimizeLegibility;
  overflow-x:hidden;
}

.bolt-skip-link{
  position:absolute;
  top:16px;
  left:50%;
  transform:translate(-50%,-150%);
  padding:12px 24px;
  background:var(--bolt-btn);
  color:var(--bolt-btn-text);
  font-weight:700;
  text-decoration:none;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(3,11,30,.35);
  opacity:0;
  pointer-events:none;
  transition:transform .2s ease,opacity .2s ease;
  z-index:1000;
}

.bolt-skip-link:focus,
.bolt-skip-link:focus-visible{
  outline:none;
  opacity:1;
  transform:translate(-50%,0);
  pointer-events:auto;
  box-shadow:var(--bolt-focus),0 12px 30px rgba(3,11,30,.35);
}

.bolt-main{display:block}

.bolt-container{max-width:1200px;margin:0 auto;padding:0 22px}

/* NAV */
.bolt-nav{background:transparent}
.bolt-nav-inner{display:flex;align-items:center;justify-content:space-between;height:74px;gap:24px}
.bolt-nav-actions{display:flex;align-items:center;gap:24px}
.bolt-brand{text-decoration:none;color:var(--bolt-text);display:flex;align-items:center;gap:10px}
.bolt-logo{display:block;width:32px;height:auto;filter:drop-shadow(0 8px 20px rgba(0,0,0,.2))}
.bolt-brand-text{font-weight:800;letter-spacing:.3px;text-shadow:0 2px 18px rgba(0,0,0,.28)}
.bolt-links{display:flex;align-items:stretch;gap:12px}
.bolt-link{color:var(--bolt-text);text-decoration:none}
.bolt-mega{position:relative}
.bolt-mega summary{
  list-style:none;
}
.bolt-mega-trigger{
  cursor:pointer;
  color:var(--bolt-text);
  text-decoration:none;
  opacity:.9;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
  background:rgba(9,18,47,.26);
  transition:opacity .2s ease,color .2s ease,background .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.bolt-mega summary::-webkit-details-marker{display:none}
.bolt-mega summary::marker{display:none}
.bolt-link:hover,.bolt-mega[open]>.bolt-mega-trigger{opacity:1;background:rgba(0,0,0,.28);border-color:rgba(255,255,255,.22)}
.bolt-mega-trigger:focus-visible{outline:none;box-shadow:var(--bolt-focus)}
.bolt-mega-caret{font-size:12px;opacity:.8;transition:transform .2s ease}
.bolt-mega[open] .bolt-mega-caret{transform:rotate(180deg)}
.bolt-mega-panel{
  position:absolute;
  left:0;
  top:calc(100% + 14px);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  min-width:620px;
  padding:26px;
  background:rgba(7,14,33,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  box-shadow:0 28px 50px rgba(6,10,24,.65);
  backdrop-filter:blur(14px);
  z-index:10;
}
.bolt-mega-column h3{margin:0 0 12px;font-size:16px}
.bolt-mega-column ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.bolt-mega-column a{
  color:var(--bolt-text);
  text-decoration:none;
  font-weight:500;
  opacity:.85;
  padding:6px 0;
  border-radius:8px;
  transition:opacity .2s ease,color .2s ease,background .2s ease;
}
.bolt-mega-column a:hover{opacity:1;color:#fff;background:rgba(142,200,255,.12)}
.bolt-mega-column a:focus-visible{outline:none;box-shadow:var(--bolt-focus)}
.bolt-mega-highlight{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(96,165,250,.24),rgba(192,132,252,.24));
  border:1px solid rgba(255,255,255,.14);
}
.bolt-mega-eyebrow{margin:0;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:rgba(234,240,255,.75)}
.bolt-mega-lead{margin:0;font-size:14px;line-height:1.5;color:var(--bolt-text)}
.bolt-quick-actions{display:flex;align-items:center;gap:12px}
.bolt-quick-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  background:rgba(255,255,255,.14);
  color:var(--bolt-text);
  border:1px solid rgba(255,255,255,.18);
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease;
}
.bolt-quick-action:hover{transform:translateY(-1px);background:rgba(255,255,255,.22)}
.bolt-quick-action:focus-visible{outline:none;box-shadow:var(--bolt-focus)}
.bolt-quick-action--primary{background:var(--bolt-btn);color:var(--bolt-btn-text);border-color:transparent}
.bolt-quick-action--primary:hover{background:#f4f7ff;color:#0e1836}

@media (max-width:960px){
  .bolt-mega-panel{min-width:520px}
}

@media (max-width:860px){
  .bolt-nav-inner{flex-wrap:wrap;height:auto;padding:16px 0 10px;gap:16px}
  .bolt-nav-actions{flex-wrap:wrap;justify-content:flex-end;width:100%}
  .bolt-links{order:2;width:100%;justify-content:flex-start;flex-wrap:wrap;gap:10px}
  .bolt-mega{flex:1 1 160px}
  .bolt-mega-panel{position:static;min-width:0;margin-top:10px;grid-template-columns:1fr;gap:18px;padding:20px}
  .bolt-quick-actions{order:1;width:100%;justify-content:flex-end}
}

@media (max-width:580px){
  .bolt-nav-actions{flex-direction:column;align-items:stretch}
  .bolt-quick-actions{justify-content:flex-start;flex-wrap:wrap}
  .bolt-quick-action{flex:1 1 160px;text-align:center}
  .bolt-links{flex-direction:column}
  .bolt-mega{width:100%}
  .bolt-mega-trigger{width:100%;justify-content:space-between}
}

/* HERO */
.bolt-hero{position:relative;padding:80px 0 60px;overflow:hidden}
.bolt-hero-bg{position:absolute;inset:0;pointer-events:none}
.bolt-gradient{
  position:absolute;inset:-20% -10%;
  background: radial-gradient(circle at 25% 30%, rgba(255,255,255,.10), transparent 40%),
              radial-gradient(circle at 70% 30%, rgba(255,255,255,.08), transparent 45%);
  mix-blend-mode: screen;
}
.bolt-bubble{position:absolute;border-radius:999px;filter:blur(10px);opacity:.7}
.bolt-b1{width:220px;height:220px;left:6%;top:18%;background:radial-gradient(#ffd082, rgba(255,208,130,.0) 70%)}
.bolt-b2{width:260px;height:260px;right:15%;top:16%;background:radial-gradient(#7dd3fc, rgba(125,211,252,.0) 70%)}
.bolt-b3{width:200px;height:200px;right:8%;bottom:8%;background:radial-gradient(#f472b6, rgba(244,114,182,.0) 70%)}
.bolt-stars{
  position:absolute;inset:0;background-image:
    radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 4px 4px;opacity:.18;mask-image:linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}

.bolt-hero-content{text-align:center;position:relative}
.bolt-hero-title{font-size:clamp(36px,7vw,72px);line-height:.98;margin:0 0 12px;font-weight:800;text-shadow:0 10px 30px rgba(0,0,0,.25)}
.bolt-hero-sub{max-width:900px;margin:0 auto 12px;color:var(--bolt-muted);font-size:clamp(16px,2.6vw,20px)}
.bolt-cta-line{font-weight:700;margin:10px 0 18px}
.bolt-metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;max-width:840px;margin:14px auto 22px}
@media (max-width: 860px){.bolt-metrics{grid-template-columns:repeat(2,1fr)}}
.bolt-metric{display:flex;gap:12px;align-items:center;justify-content:center;background:rgba(0,0,0,.18);border:1px solid var(--bolt-border);border-radius:16px;padding:14px 16px;backdrop-filter:blur(4px)}
.bolt-ic{
  width:32px;
  height:32px;
  display:block;
  flex-shrink:0;
}
.bolt-met-n{font-weight:800;font-size:20px}
.bolt-met-l{font-size:12px;opacity:.9}
.bolt-cta{
  display:inline-flex;align-items:center;gap:10px;margin-top:8px;
  background:var(--bolt-btn);color:var(--bolt-btn-text);
  text-decoration:none;padding:14px 20px;border-radius:999px;font-weight:800;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}
.bolt-cta:hover{transform:translateY(-1px)}
.bolt-cta:focus-visible{outline:none;box-shadow:var(--bolt-focus)}

/* SOCIAL PROOF */
.bolt-social-proof{
  position:relative;
  padding:56px 0 64px;
  border-top:1px solid var(--bolt-border);
  background:
    radial-gradient(1000px 800px at 15% -10%, rgba(255,255,255,.14), transparent 40%),
    radial-gradient(1100px 900px at 100% 0%, rgba(255,255,255,.1), transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.2));
}

.bolt-social-proof::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 60%);
  opacity:.55;
  pointer-events:none;
}

.bolt-social-proof .bolt-container{position:relative;display:flex;flex-direction:column;gap:38px}

.bolt-social-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}

.bolt-proof-badges{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  padding:10px;
  border-radius:18px;
  background:rgba(0,0,0,.22);
  border:1px solid var(--bolt-border);
  min-width:260px;
}

.bolt-proof-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  font-weight:600;
  color:var(--bolt-text);
  box-shadow:0 10px 24px rgba(8,14,35,.18);
}

.bolt-proof-badge-icon{font-size:20px;line-height:1}

.bolt-proof-logos{
  display:flex;
  flex-wrap:wrap;
  gap:18px 24px;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,.22);
  border:1px solid var(--bolt-border);
  border-radius:18px;
  padding:18px 24px;
}

.bolt-proof-logo{
  font-size:16px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(234,240,255,.78);
  opacity:.86;
}

.bolt-proof-logo::before{
  content:"";
  display:block;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,#60a5fa,#c084fc);
  margin-bottom:8px;
  opacity:.7;
}

.bolt-testimonials{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.bolt-testimonial{
  margin:0;
  padding:24px;
  border-radius:18px;
  background:rgba(0,0,0,.24);
  border:1px solid var(--bolt-border);
  box-shadow:0 16px 36px rgba(8,14,35,.2);
  display:flex;
  flex-direction:column;
  gap:18px;
}

.bolt-testimonial blockquote{
  margin:0;
  font-size:17px;
  line-height:1.7;
  color:var(--bolt-text);
  font-weight:600;
}

.bolt-testimonial figcaption{
  display:flex;
  flex-direction:column;
  gap:2px;
  color:var(--bolt-muted);
  font-size:14px;
}

.bolt-testimonial-name{font-weight:700;color:#fff}

.bolt-testimonial-role{letter-spacing:.02em}

@media (max-width:960px){
  .bolt-testimonials{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (max-width:680px){
  .bolt-social-head{flex-direction:column}
  .bolt-proof-badges{width:100%;justify-content:space-between}
}

@media (max-width:580px){
  .bolt-proof-logos{justify-content:center;text-align:center}
  .bolt-testimonials{grid-template-columns:1fr}
}

@media (max-width:460px){
  .bolt-proof-badges{flex-direction:column;align-items:stretch}
  .bolt-proof-badge{justify-content:center}
}

/* GAMES SECTION */
.bolt-games{background:
  radial-gradient(1000px 800px at -10% -10%, rgba(255,255,255,.18), transparent 35%),
  radial-gradient(1000px 800px at 120% 0%, rgba(255,255,255,.12), transparent 35%),
  linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.22));
  padding:40px 0 70px;
  border-top:1px solid var(--bolt-border);
}
.bolt-section-head{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;gap:24px;margin-bottom:26px}
.bolt-section-title-group{flex:1 1 260px;min-width:240px;display:flex;flex-direction:column;gap:8px}
.bolt-section-title{margin:0 0 10px;font-size:28px}
.bolt-section-sub{margin:0;color:var(--bolt-muted);font-size:16px;line-height:1.6;max-width:560px}
.bolt-filter-bar{display:flex;flex:1 1 320px;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:16px}
.bolt-filter-group{display:flex;flex-direction:column;gap:8px;flex:1 1 240px;min-width:220px}
.bolt-filter-label{font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--bolt-muted)}
.bolt-search{display:flex;align-items:center;gap:10px;background:rgba(0,0,0,.25);padding:8px 10px;border-radius:14px;border:1px solid var(--bolt-border);max-width:560px;transition:background .2s ease,border-color .2s ease,box-shadow .2s ease}
.bolt-filter-bar .bolt-search{flex:1 1 260px;width:100%}
.bolt-search:focus-visible{outline:none;box-shadow:var(--bolt-focus)}
.bolt-search input{flex:1;background:transparent;border:0;outline:0;color:#fff;font-size:16px;padding:8px}
.bolt-search input::placeholder{color:rgba(234,240,255,.65)}
.bolt-search input:focus-visible{outline:none;box-shadow:var(--bolt-focus)}
.bolt-search:focus-within{background:rgba(0,0,0,.18);border-color:rgba(255,255,255,.35);box-shadow:var(--bolt-focus)}
.bolt-search:focus-within #bolt-clear{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.35)}
.bolt-search button{appearance:none;background:rgba(255,255,255,.12);border:1px solid var(--bolt-border);color:#fff;border-radius:10px;padding:8px 10px;cursor:pointer;transition:background .2s ease,border-color .2s ease,box-shadow .2s ease,transform .2s ease}
.bolt-search button:hover{background:rgba(255,255,255,.2);transform:translateY(-1px)}
.bolt-search button:focus-visible{outline:none;box-shadow:var(--bolt-focus)}

.bolt-filters{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.bolt-filter-bar .bolt-filters{margin-top:0}
.bolt-chip{border:1px solid var(--bolt-border);padding:8px 12px;border-radius:999px;background:var(--bolt-chip);color:#e8ecff;font-weight:600;cursor:pointer;user-select:none;transition:background .2s ease,color .2s ease,box-shadow .2s ease,transform .2s ease}
.bolt-chip:hover{background:var(--bolt-chip-on);transform:translateY(-1px)}
.bolt-chip[aria-selected="true"]{background:linear-gradient(135deg,#c084fc,#60a5fa);color:#0b0b12;border-color:transparent}
.bolt-chip:focus-visible{outline:none;box-shadow:var(--bolt-focus)}

.bolt-status{color:var(--bolt-muted);margin:10px 0 14px}
.bolt-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
@media (max-width: 1279px){.bolt-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width: 767px){.bolt-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}

.bolt-section-lead{margin:10px 0 26px;max-width:720px;color:var(--bolt-muted);font-size:18px}

.bolt-about,
.bolt-contact{
  position:relative;
  padding:60px 0 70px;
  border-top:1px solid var(--bolt-border);
  background:
    radial-gradient(1000px 800px at 10% 0%, rgba(255,255,255,.12), transparent 40%),
    radial-gradient(1200px 900px at 90% 10%, rgba(255,255,255,.08), transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.16));
}

.bolt-about::before,
.bolt-contact::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 55%);
  opacity:.6;
}

.bolt-about .bolt-container,
.bolt-contact .bolt-container{position:relative}

.bolt-about-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:30px;max-width:920px}
@media (max-width:820px){.bolt-about-grid{grid-template-columns:1fr}}
.bolt-about-grid h3{margin:0 0 10px;font-size:20px}
.bolt-about-grid p{margin:0;color:var(--bolt-muted);line-height:1.6}

.bolt-contact-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;max-width:960px}
@media (max-width:960px){.bolt-contact-cards{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:640px){.bolt-contact-cards{grid-template-columns:1fr}}
.bolt-contact-card{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:18px 20px;
  border-radius:16px;
  text-decoration:none;
  color:var(--bolt-text);
  background:rgba(0,0,0,.22);
  border:1px solid var(--bolt-border);
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.bolt-contact-card:hover{transform:translateY(-2px);border-color:rgba(255,255,255,.3);background:rgba(0,0,0,.28)}
.bolt-contact-card:focus-visible{outline:none;box-shadow:var(--bolt-focus)}
.bolt-contact-label{font-size:14px;color:var(--bolt-muted);text-transform:uppercase;letter-spacing:.08em}
.bolt-contact-value{font-weight:700;font-size:18px}

.bolt-history{margin:30px 0 34px;padding:22px 22px 26px;border:1px solid var(--bolt-border);border-radius:22px;background:rgba(0,0,0,.22);backdrop-filter:blur(6px)}
.bolt-history[hidden]{display:none}
.bolt-history-title{margin:0 0 18px;font-size:24px}
.bolt-history-grid{margin:0}

.bolt-card{background:linear-gradient(180deg, var(--bolt-card) 0%, var(--bolt-card-2) 100%);border:1px solid var(--bolt-border);border-radius:18px;overflow:hidden;display:flex;flex-direction:column;height:100%;min-height:100%;position:relative;box-shadow:0 14px 34px rgba(5,10,38,.18);transition:transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease}
.bolt-card:hover,
.bolt-card:focus-within{transform:translateY(-4px);border-color:rgba(255,255,255,.25);box-shadow:0 22px 50px rgba(3,11,30,.28)}
.bolt-shot{aspect-ratio: 16/9; display:grid; place-items:center; position:relative; background:#0f1020}
.bolt-shot img{width:100%;height:100%;object-fit:cover;display:block}
.bolt-shot svg{width:56%;height:auto;opacity:.9}
.bolt-badge{position:absolute;top:10px;left:10px;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:800;background:rgba(0,0,0,.55);border:1px solid var(--bolt-border)}
.bolt-card-body{padding:14px 14px 16px;display:flex;flex-direction:column;gap:10px;flex:1}
.bolt-card-title{font-weight:800;font-size:16px}
.bolt-card-meta{
  display:flex;
  flex-wrap:wrap;
  column-gap:10px;
  row-gap:4px;
  color:rgba(184,194,230,.88);
  font-size:12px;
}
.bolt-card-desc{margin:0;color:var(--bolt-muted);font-size:14px;line-height:1.6;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}
.bolt-card-insight{display:flex;flex-direction:column;gap:10px;padding:10px 12px;border-radius:14px;border:1px solid rgba(108,132,255,.18);background:rgba(9,16,36,.72);box-shadow:inset 0 1px 0 rgba(255,255,255,.04);font-size:12px}
.bolt-card-ach{display:flex;flex-direction:column;gap:6px}
.bolt-card-progress-head{display:flex;align-items:center;justify-content:space-between;gap:8px}
.bolt-card-progress-label{font-weight:600;color:var(--bolt-muted);letter-spacing:.02em}
.bolt-card-progress-count{font-weight:700;color:rgba(226,232,255,.92);font-variant-numeric:tabular-nums}
.bolt-card-progress-bar{height:6px;border-radius:999px;background:rgba(255,255,255,.08);position:relative;overflow:hidden}
.bolt-card-progress-fill{position:absolute;inset:0;background:linear-gradient(90deg,#60a5fa 0%,#a855f7 100%);transition:width .25s ease}
.bolt-card-missions{display:flex;flex-wrap:wrap;gap:6px}
.bolt-card-mission{display:inline-flex;align-items:center;gap:6px;padding:4px 9px;border-radius:999px;background:rgba(13,23,48,.72);border:1px solid rgba(113,144,255,.22);color:rgba(222,231,255,.9);font-weight:600;line-height:1}
.bolt-card-mission-kind{text-transform:uppercase;letter-spacing:.08em;font-size:10px;color:rgba(148,163,255,.85)}
.bolt-card-mission-count{font-variant-numeric:tabular-nums}
.bolt-card-mission-clock{display:inline-flex;align-items:center;gap:4px;color:rgba(191,219,254,.85);font-size:11px}
.bolt-card-mission-clock .bolt-icon-clock{width:12px;height:12px;opacity:.85}
.bolt-card-mission.is-complete{border-color:rgba(96,191,255,.6);background:rgba(45,123,255,.24);color:rgba(234,245,255,.95)}
.bolt-card-mission.is-empty{padding:6px 10px;border-style:dashed;border-color:rgba(148,163,255,.32);color:var(--bolt-muted);background:rgba(11,18,38,.6);font-weight:500}
.bolt-icon-clock{display:inline-block;width:12px;height:12px}

.bolt-card-actions{margin-top:auto;display:flex;gap:10px;padding-top:10px}
.bolt-btn{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 14px;border-radius:12px;border:1px solid var(--bolt-border);background:rgba(255,255,255,.08);color:#eef2ff;text-decoration:none;font-weight:800;transition:background .2s ease,box-shadow .2s ease,transform .2s ease,color .2s ease}
.bolt-btn:hover{background:rgba(255,255,255,.14);box-shadow:0 12px 24px rgba(8,14,35,.25);transform:translateY(-1px)}
.bolt-btn:focus-visible{outline:none;box-shadow:var(--bolt-focus)}
.bolt-primary{background:linear-gradient(135deg,#c084fc,#60a5fa);color:#0b0b12;border-color:transparent}
.bolt-primary:hover{filter:brightness(1.02)}

.bolt-missions-panel{padding:60px 0 48px;background:linear-gradient(160deg,rgba(67,97,238,.18) 0%,rgba(21,34,73,.7) 55%,rgba(6,12,28,.95) 100%);border-top:1px solid rgba(82,109,255,.18);border-bottom:1px solid rgba(15,23,42,.45)}
.bolt-missions-inner{display:grid;gap:24px}
.bolt-missions-header{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.bolt-missions-eyebrow{margin:0 0 6px;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--bolt-muted)}
.bolt-missions-title{margin:0;font-size:30px;font-weight:800;letter-spacing:-.01em}
.bolt-mission-filters{display:flex;align-items:center;gap:10px}
.bolt-mission-filter{appearance:none;border:1px solid rgba(148,163,255,.35);background:rgba(11,18,38,.65);color:#dbeafe;border-radius:999px;padding:8px 16px;font-weight:600;cursor:pointer;transition:background .2s ease,border-color .2s ease,box-shadow .2s ease,transform .2s ease}
.bolt-mission-filter:hover{border-color:rgba(148,163,255,.55);background:rgba(23,37,84,.75);transform:translateY(-1px)}
.bolt-mission-filter:focus-visible{outline:none;box-shadow:var(--bolt-focus)}
.bolt-mission-filter.is-active{background:linear-gradient(135deg,#4cc9f0,#4895ef);color:#0b1024;border-color:rgba(98,179,255,.85);box-shadow:0 16px 40px rgba(72,149,239,.32)}
.bolt-missions-list{display:grid;gap:18px;grid-template-columns:repeat(auto-fill,minmax(260px,1fr))}
.bolt-mission-card{position:relative;display:grid;gap:10px;padding:18px 20px;border-radius:18px;border:1px solid rgba(82,109,255,.22);background:rgba(8,14,35,.82);box-shadow:0 18px 42px rgba(4,12,28,.36);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;color:#e8efff}
.bolt-mission-card:hover{transform:translateY(-4px);border-color:rgba(99,179,237,.55);box-shadow:0 24px 50px rgba(40,74,140,.4)}
.bolt-mission-card.is-complete{border-color:rgba(76,201,240,.65);box-shadow:0 24px 52px rgba(76,201,240,.28)}
.bolt-mission-card__header{display:flex;justify-content:space-between;align-items:center;gap:8px;font-size:12px;color:rgba(186,198,244,.9)}
.bolt-mission-card__kind{text-transform:uppercase;letter-spacing:.12em;color:rgba(148,163,255,.78);font-weight:700}
.bolt-mission-card__game{font-weight:600;color:rgba(226,232,255,.78)}
.bolt-mission-card__title{margin:0;font-size:18px;font-weight:700;letter-spacing:-.01em}
.bolt-mission-card__desc{margin:0;font-size:14px;color:var(--bolt-muted);line-height:1.6}
.bolt-mission-card__progress{height:8px;border-radius:999px;overflow:hidden;background:rgba(255,255,255,.12);position:relative}
.bolt-mission-card__progress-fill{height:100%;background:linear-gradient(90deg,#4cc9f0 0%,#4895ef 100%);transition:width .25s ease}
.bolt-mission-card__status{display:flex;flex-wrap:wrap;gap:8px;font-size:13px;color:rgba(219,234,254,.85);align-items:center}
.bolt-mission-card__badge{display:inline-flex;align-items:center;gap:6px;padding:4px 10px;border-radius:999px;background:rgba(76,201,240,.2);color:#7ae0ff;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.08em}
.bolt-mission-card__requirements{font-size:13px;color:rgba(210,224,255,.78)}
.bolt-mission-empty{padding:28px;border-radius:16px;border:1px dashed rgba(148,163,255,.28);background:rgba(8,14,35,.6);font-size:14px;color:var(--bolt-muted);text-align:center}
.bolt-missions-note{margin:0;font-size:13px;color:var(--bolt-muted)}

@media (max-width:840px){
  .bolt-missions-list{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}
}

@media (max-width:600px){
  .bolt-missions-panel{padding:48px 0 40px}
  .bolt-missions-title{font-size:24px}
  .bolt-mission-filters{width:100%;justify-content:flex-start;flex-wrap:wrap}
  .bolt-mission-filter{flex:1 1 auto;text-align:center}
}

@media (max-width:840px){
  .bolt-filter-bar{justify-content:flex-start}
}

@media (max-width:680px){
  .bolt-section-head{gap:20px}
  .bolt-filter-bar{flex-direction:column;align-items:stretch}
  .bolt-filter-group{width:100%}
  .bolt-filter-bar .bolt-search{min-width:0}
  .bolt-filters{justify-content:flex-start}
}

/* FOOTER */
.bolt-footer{border-top:1px solid var(--bolt-border);padding:24px 0;background:rgba(0,0,0,.18)}
.bolt-footer-inner{display:flex;align-items:center;justify-content:space-between;gap:12px;color:var(--bolt-muted);font-size:14px}
.bolt-footer-inner a{color:var(--bolt-muted);text-decoration:none}
.bolt-footer-inner a:hover{color:#fff}
