:root {
  --bg-dark: #2f3740;
  --lime: #b8ff1f;
  --text: #eef5ff;
  --muted: rgba(238,245,255,.7);
  --panel: rgba(8,18,30,.32);
  --line: rgba(255,255,255,.12);
  --chip: rgba(255,255,255,.06);
  --accent: #6d5cff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, Arial, sans-serif; background: #09111b; color: var(--text); }
button, input, select { font: inherit; }
body {
  min-height: 100vh;
  background: linear-gradient(180deg, #2f3841 0 78px, #4f3b75 78px 280px, #255573 100%);
}
.site-shell { min-height: 100vh; }
.topbar {
  height: 78px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; background: #303842; border-bottom: 1px solid rgba(255,255,255,.05);
}
.brand { font-size: 17px; letter-spacing: .34em; font-weight: 700; }
.brand span { color: var(--lime); margin-left: 2px; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { color: #eff7ff; text-decoration: none; font-size: 14px; letter-spacing: .20em; }
.main-nav a.active, .main-nav a:hover { color: var(--lime); }
.account-btn {
  border: 1px solid rgba(255,255,255,.35); color: #fff; background: transparent; padding: 14px 22px;
  letter-spacing: .28em; font-size: 13px;
}
.configurator-shell {
  min-height: calc(100vh - 78px); display: grid; grid-template-columns: 96px 1fr 330px; gap: 0;
}
.left-menu {
  border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; gap: 14px; padding-top: 120px;
  background: linear-gradient(180deg, rgba(9,17,27,.08), rgba(9,17,27,.18));
}
.menu-btn {
  width: 64px; min-height: 64px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05);
  color: #fff; display: grid; place-items: center; gap: 6px; padding: 8px 6px; transition: .2s ease;
}
.menu-btn.active, .menu-btn:hover { border-color: var(--lime); background: rgba(184,255,31,.08); }
.menu-icon { font-size: 18px; line-height: 1; }
.menu-text { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; text-align: center; }
.center-stage { position: relative; padding: 26px 24px 22px; }
.hero-copy { text-align: center; margin-top: 18px; }
.eyebrow { color: rgba(255,255,255,.72); letter-spacing: .38em; font-size: 12px; text-transform: uppercase; }
.hero-copy h1 { margin: 16px 0 0; font-size: 24px; letter-spacing: .28em; color: var(--lime); }
.showcase-stage {
  position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center;
}
.word-backdrop {
  position: absolute; inset: 44px 0 auto; text-align: center; font-size: clamp(90px, 14vw, 170px); letter-spacing: .04em;
  color: rgba(255,255,255,.72); font-weight: 300; user-select: none; pointer-events: none;
}
.pc-holder { position: relative; z-index: 2; width: min(480px, 42vw); }
.pc-holder img { display: block; width: 100%; height: auto; max-height: 500px; object-fit: contain; filter: drop-shadow(0 35px 40px rgba(0,0,0,.32)); transition: opacity .22s ease, transform .22s ease; }
.pc-holder img.is-switching { opacity: .18; transform: scale(.985); }
.hotspots { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.spot {
  position: absolute; min-width: 170px; max-width: 220px; background: rgba(7,12,20,.72); border: 1px solid rgba(184,255,31,.18);
  backdrop-filter: blur(8px); padding: 10px 14px;
}
.spot span { display: block; font-size: 10px; letter-spacing: .24em; color: rgba(255,255,255,.58); text-transform: uppercase; margin-bottom: 4px; }
.spot strong { display: block; font-size: 17px; line-height: 1.15; }
.spot::before {
  content: ''; position: absolute; width: 12px; height: 12px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 12px rgba(184,255,31,.7);
}
.spot-cpu { right: 16%; top: 24%; }
.spot-cpu::before { left: -28px; top: 14px; }
.spot-gpu { left: 18%; top: 50%; }
.spot-gpu::before { right: -28px; top: 18px; }
.spot-ram { left: 21%; top: 33%; }
.spot-ram::before { right: -28px; top: 18px; }
.spot-ssd { right: 14%; bottom: 22%; }
.spot-ssd::before { left: -28px; top: 18px; }
.spot-case { left: 22%; bottom: 20%; }
.spot-case::before { right: -28px; top: 18px; }
.slider-panel {
  margin-top: 8px; border: 1px solid var(--line); background: rgba(8,18,30,.22); backdrop-filter: blur(4px); padding: 20px;
}
.slider-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 16px; }
.small-label { display: block; font-size: 11px; letter-spacing: .34em; color: rgba(255,255,255,.58); margin-bottom: 8px; }
.slider-head h2 { margin: 0; font-size: 34px; font-weight: 600; }
.slider-nav { display: flex; gap: 10px; }
.slider-nav button {
  width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; font-size: 20px;
}
.cards-window { overflow: hidden; }
.cards-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.option-card {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  min-height: 248px;
  padding: 12px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
  display:flex;
  flex-direction:column;
}
.option-card.active, .option-card:hover { border-color: var(--lime); background: rgba(255,255,255,.07); transform: translateY(-2px); }
.option-media {
  height: 116px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.08);
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.12), rgba(255,255,255,0) 36%), linear-gradient(180deg, rgba(9,13,21,.95), rgba(37,45,65,.82));
  margin-bottom: 12px;
  overflow:hidden;
}
.option-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.28));
}
.option-body { display:flex; flex-direction:column; flex:1; }
.tier-row { display: flex; justify-content: space-between; gap: 10px; font-size: 10px; letter-spacing: .24em; color: rgba(255,255,255,.64); text-transform: uppercase; }
.option-card h3 { margin: 10px 0 6px; font-size: 16px; line-height: 1.18; }
.option-card p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.option-footer { margin-top:auto; padding-top: 14px; }
.option-price { font-size: 19px; color: #fff; font-weight: 700; }
.option-delta { margin-top: 4px; font-size: 12px; color: rgba(255,255,255,.72); }
.page-indicator { font-size: 11px; letter-spacing: .28em; color: rgba(255,255,255,.56); text-transform: uppercase; padding-right: 4px; }
.right-panel {
  border-left: 1px solid var(--line); padding: 28px 20px; background: linear-gradient(180deg, rgba(7,12,20,.14), rgba(7,12,20,.30));
}
.price-box, .panel-box {
  border: 1px solid var(--line); background: rgba(255,255,255,.05); padding: 18px; margin-bottom: 16px;
}
.price-box span, .range-head span, .field-box span, .summary-item span, .panel-box label span {
  display: block; font-size: 11px; letter-spacing: .24em; color: rgba(255,255,255,.58); text-transform: uppercase;
}
.price-box strong { display: block; font-size: 38px; margin: 12px 0 6px; }
.price-box small { color: rgba(255,255,255,.72); }
.panel-box label { display: block; margin-bottom: 14px; }
.panel-box label:last-child { margin-bottom: 0; }
.panel-box input, .panel-box select {
  width: 100%; margin-top: 8px; background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.14); padding: 13px 12px;
}
.range-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
input[type="range"] { width: 100%; accent-color: var(--lime); }
.range-scale { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.58); margin-top: 8px; }
.summary-box { display: grid; gap: 10px; }
.summary-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.summary-item:last-child { border-bottom: 0; }
.summary-item strong { display: block; font-size: 16px; margin-top: 6px; }
.cta-btn {
  width: 100%; padding: 17px 18px; border: 0; color: #10161d; background: linear-gradient(90deg, #c9ff41, #76f2b7); font-weight: 700; letter-spacing: .26em;
}
@media (max-width: 1300px) {
  .configurator-shell { grid-template-columns: 86px 1fr 300px; }
  .spot { transform: scale(.92); transform-origin: center; }
}
@media (max-width: 1050px) {
  .configurator-shell { grid-template-columns: 1fr; }
  .left-menu { flex-direction: row; justify-content: center; padding: 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .right-panel { border-left: 0; border-top: 1px solid var(--line); }
  .main-nav { display: none; }
}
@media (max-width: 780px) {
  .topbar { padding: 0 12px; }
  .brand { font-size: 14px; letter-spacing: .22em; }
  .account-btn { padding: 10px 12px; font-size: 11px; }
  .center-stage { padding: 18px 12px; }
  .hero-copy h1 { font-size: 18px; }
  .eyebrow { font-size: 10px; letter-spacing: .18em; }
  .showcase-stage { min-height: 380px; }
  .word-backdrop { top: 70px; font-size: 70px; }
  .pc-holder { width: 76vw; }
  .hotspots { display: none; }
  .slider-head { flex-direction: column; align-items: flex-start; }
  .slider-head h2 { font-size: 26px; }
  .cards-track { grid-template-columns: 1fr; }
}


@media (max-width: 1180px) {
  .cards-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .cards-track { grid-template-columns: 1fr; }
  .option-media { height: 148px; }
  .page-indicator { display:none; }
}

/* Wizard */

.wizard-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.wizard-box{
background:#111;
color:white;
padding:40px;
width:500px;
max-width:90%;
text-align:center;
border:1px solid #333;
}

.wizard-box h1{
margin-bottom:10px;
}

.budget-value{
font-size:28px;
margin:10px 0 20px 0;
}

.wizard-field{
margin-top:20px;
text-align:left;
}

.wizard-field input,
.wizard-field select{
width:100%;
padding:8px;
margin-top:5px;
background:#222;
color:white;
border:1px solid #444;
}

.wizard-box button{
margin-top:25px;
padding:12px 20px;
background:#9cff2e;
border:none;
cursor:pointer;
font-weight:bold;
}

/* Wizard V4 */
.wizard-premium{
  width:min(980px,94vw);
  background:linear-gradient(180deg,#141a22 0%,#0f141b 100%);
  border:1px solid rgba(255,255,255,.12);
  padding:0;
  text-align:left;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}
.wizard-tabs{display:flex;border-bottom:1px solid rgba(255,255,255,.08);}
.wizard-tab{
  flex:1;padding:18px 22px;background:transparent;color:rgba(255,255,255,.62);
  border:none;border-right:1px solid rgba(255,255,255,.08);text-transform:uppercase;letter-spacing:.18em;font-size:12px;cursor:pointer;
}
.wizard-tab:last-child{border-right:none;}
.wizard-tab.active{background:rgba(255,255,255,.05);color:#fff;}
.wizard-tab-panel{display:none;padding:34px 36px 36px;}
.wizard-tab-panel.active{display:block;}
.wizard-headline-row{display:flex;justify-content:space-between;gap:24px;align-items:flex-start;margin-bottom:24px;}
.wizard-kicker{font-size:11px;letter-spacing:.28em;text-transform:uppercase;color:rgba(255,255,255,.42);margin-bottom:12px;}
.wizard-premium h1{margin:0 0 12px;font-size:38px;letter-spacing:.04em;}
.wizard-premium p{margin:0;color:rgba(255,255,255,.68);line-height:1.7;}
.wizard-badge{min-width:110px;border:1px solid rgba(255,255,255,.1);padding:16px 18px;text-align:center;color:#c9ff4d;background:rgba(255,255,255,.04);text-transform:uppercase;letter-spacing:.18em;font-size:12px;line-height:1.6;}
.wizard-budget-card{border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.04);padding:22px;margin:26px 0 20px;}
.wizard-budget-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px;}
.wizard-budget-head span{font-size:12px;letter-spacing:.22em;text-transform:uppercase;color:rgba(255,255,255,.44);}
.wizard-budget-head strong{font-size:34px;font-weight:600;}
.wizard-budget-card input[type=range]{width:100%;accent-color:#b8ff1f;}
.wizard-budget-scale{display:flex;justify-content:space-between;font-size:12px;color:rgba(255,255,255,.4);margin-top:8px;}
.wizard-field-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
.wizard-field label{display:block;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.44);margin-bottom:10px;}
.wizard-field input,.wizard-field select{
  width:100%;padding:14px 16px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);color:#fff;outline:none;
}
.wizard-field select option{color:#111;}
.wizard-accordion{margin-top:20px;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.03);}
.accordion-toggle{
  width:100%;padding:18px 20px;display:flex;justify-content:space-between;align-items:center;background:transparent;border:none;color:#fff;
  text-transform:uppercase;letter-spacing:.16em;font-size:12px;cursor:pointer;
}
.accordion-icon{font-size:20px;color:#b8ff1f;line-height:1;}
.accordion-panel{display:none;padding:0 20px 20px;border-top:1px solid rgba(255,255,255,.08);}
.accordion-panel.open{display:block;}
.advanced-grid{padding-top:20px;}
.wizard-actions,.wizard-login-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px;}
.wizard-primary,.wizard-secondary{
  padding:14px 22px;border:none;cursor:pointer;text-transform:uppercase;letter-spacing:.18em;font-size:12px;
}
.wizard-primary{background:#b8ff1f;color:#09111b;font-weight:700;}
.wizard-secondary{background:rgba(255,255,255,.04);color:#fff;border:1px solid rgba(255,255,255,.1);}
.wizard-note{margin-top:18px;padding:16px 18px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03);color:rgba(255,255,255,.6);font-size:14px;line-height:1.6;}
.login-grid{margin-top:22px;}
@media (max-width: 900px){
  .wizard-headline-row{flex-direction:column;}
  .wizard-field-grid{grid-template-columns:1fr;}
}
@media (max-width: 640px){
  .wizard-tab-panel{padding:22px 18px 24px;}
  .wizard-premium h1{font-size:28px;}
  .wizard-budget-head strong{font-size:28px;}
  .wizard-tab{padding:14px 10px;font-size:11px;letter-spacing:.12em;}
}


.panel-title-row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px;}
.panel-title{font-size:11px;letter-spacing:.24em;color:rgba(255,255,255,.58);text-transform:uppercase;}
.text-btn{padding:0;border:0;background:none;color:var(--lime);letter-spacing:.12em;text-transform:uppercase;font-size:11px;cursor:pointer;}
.panel-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.panel-more{display:none;margin-top:12px;}
.panel-more.open{display:block;}
.ghost-btn{width:100%;margin-top:14px;padding:13px 14px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.03);color:#fff;letter-spacing:.18em;text-transform:uppercase;font-size:12px;cursor:pointer;}
.compact-box label{margin-bottom:12px;}

@media (max-width: 1050px) {
  .left-menu {padding:16px 12px;gap:10px;overflow-x:auto;justify-content:flex-end;}
  .menu-btn {min-width:78px;width:78px;}
  .right-panel {display:grid;grid-template-columns:1fr 1fr;gap:16px;padding:20px 16px;}
  .price-box,.panel-box,.cta-btn {margin-bottom:0;}
  .summary-box,.cta-btn {grid-column:1/-1;}
}
@media (max-width: 780px) {
  .left-menu {padding:12px 10px;}
  .menu-btn {min-width:72px;width:72px;min-height:58px;}
  .menu-text {font-size:8px;letter-spacing:.14em;}
  .right-panel {grid-template-columns:1fr;padding:16px 12px;}
  .panel-grid-2 {grid-template-columns:1fr;}
  .price-box strong {font-size:30px;}
}

/* V5.1 sidebar overlay + responsive overflow fix */
html,body{overflow-x:hidden;max-width:100%;}
.site-shell{overflow-x:hidden;}
.topbar{position:sticky;top:0;z-index:25;}
.configurator-shell{
  position:relative;
  grid-template-columns:92px minmax(0,1fr);
  width:100%;
  max-width:100%;
  overflow:hidden;
}
.center-stage{
  min-width:0;
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding-inline:clamp(14px,2vw,28px);
}
.showcase-stage{
  min-height:clamp(380px,42vw,520px);
  overflow:hidden;
}
.pc-holder{
  width:min(440px,42vw);
  max-width:100%;
}
.word-backdrop{
  inset:52px 0 auto;
  font-size:clamp(78px,12vw,170px);
}
.spot{
  min-width:clamp(150px,15vw,190px);
  max-width:min(210px,22vw);
}
.spot strong{font-size:clamp(14px,1.1vw,17px);}
.slider-panel{max-width:100%;overflow:hidden;}
.cards-window{overflow:hidden;width:100%;}
.panel-dock{
  position:fixed;
  top:96px;
  right:18px;
  z-index:24;
}
.panel-dock-btn{
  min-width:154px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(14,22,33,.82);
  color:#fff;
  backdrop-filter:blur(10px);
  padding:14px 14px 13px;
  display:grid;
  gap:5px;
  text-align:left;
  cursor:pointer;
}
.panel-dock-label{
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
}
#dockTotalPrice{font-size:26px;line-height:1;font-weight:700;}
.panel-dock-icon{
  position:absolute;
  top:14px;
  right:14px;
  font-size:18px;
  color:var(--lime);
}
.sidebar-backdrop{
  position:fixed;
  inset:0;
  background:rgba(3,8,14,.42);
  opacity:0;
  visibility:hidden;
  transition:opacity .22s ease, visibility .22s ease;
  z-index:27;
}
.sidebar-backdrop.open{opacity:1;visibility:visible;}
.right-panel{
  position:fixed;
  top:78px;
  right:0;
  bottom:0;
  width:min(360px,92vw);
  max-width:100%;
  border-left:1px solid var(--line);
  transform:translateX(100%);
  transition:transform .28s ease;
  z-index:28;
  overflow-y:auto;
  overflow-x:hidden;
  background:linear-gradient(180deg, rgba(32,27,58,.96), rgba(35,54,90,.94));
  box-shadow:-20px 0 40px rgba(0,0,0,.22);
}
.right-panel.open{transform:translateX(0);}
.panel-title-left{display:flex;align-items:center;gap:10px;}
.sidebar-close{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  padding:0;
}
.mobile-only-close{display:none;margin-top:14px;background:transparent;border:1px solid rgba(255,255,255,.16);color:#fff;}
@media (max-width: 1400px){
  .pc-holder{width:min(400px,40vw);}
  .spot-cpu{right:8%;top:26%;}
  .spot-gpu{left:10%;top:50%;}
  .spot-ram{left:14%;top:34%;}
  .spot-ssd{right:7%;bottom:21%;}
  .spot-case{left:14%;bottom:19%;}
}
@media (max-width: 1180px){
  .configurator-shell{grid-template-columns:84px minmax(0,1fr);}
  .pc-holder{width:min(360px,44vw);}
  .spot{transform:scale(.9);transform-origin:center;}
  .spot-cpu{right:4%;top:25%;}
  .spot-gpu{left:4%;top:49%;}
  .spot-ram{left:8%;top:33%;}
  .spot-ssd{right:4%;bottom:21%;}
  .spot-case{left:8%;bottom:19%;}
}
@media (max-width: 1050px){
  .configurator-shell{grid-template-columns:1fr;}
  .left-menu{flex-direction:row;justify-content:flex-end;align-items:stretch;padding:14px 12px;gap:10px;border-right:0;border-bottom:1px solid var(--line);overflow-x:auto;}
  .menu-btn{min-width:72px;width:72px;}
  .center-stage{padding-top:18px;}
  .panel-dock{top:92px;right:12px;}
}
@media (max-width: 900px){
  .showcase-stage{min-height:360px;}
  .pc-holder{width:min(320px,64vw);}
  .word-backdrop{top:76px;font-size:clamp(62px,15vw,100px);}
  .spot{display:none;}
  .slider-head{flex-direction:column;align-items:flex-start;}
  .slider-head h2{font-size:28px;}
}
@media (max-width: 780px){
  .panel-dock-btn{min-width:132px;padding:12px 12px 11px;}
  #dockTotalPrice{font-size:22px;}
  .right-panel{width:min(380px,100vw);padding:18px 14px 24px;}
  .mobile-only-close{display:block;}
  .panel-grid-2{grid-template-columns:1fr;}
}


/* ---- NextLevel responsive + single scroll fix ---- */
html, body{
    max-width:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

.main-wrapper,
.center-stage,
.slider-wrapper{
    min-width:0;
}

/* center pc responsive */
.pc-showcase img{
    max-width:650px;
    width:100%;
    height:auto;
}

/* sidebar overlay scroll fix */
.sidebar{
    overflow-y:auto;
    max-height:100vh;
}

/* nice scrollbar */
::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-track{
    background:#1f2633;
}
::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#b7ff2a,#7fbf00);
    border-radius:10px;
    border:2px solid #1f2633;
}

.components-section{max-width:1200px;margin:40px auto;padding:0 20px}
.components-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.component-card{background:#111;border:1px solid #2a2a2a;padding:12px;border-radius:6px;text-align:center}
.component-card img{width:100%;height:110px;object-fit:contain}
.c-name{font-weight:600;margin-top:6px}
.c-meta{font-size:12px;color:#aaa}
.c-price{color:#b7ff2a;margin-top:4px}
.pagination{text-align:center;margin-top:15px;color:#ccc}
@media(max-width:900px){
.components-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
.components-grid{grid-template-columns:1fr}
}


/* ===== NextLevel v14 system base additions ===== */
.showcase-badges{
  position:absolute;
  right:22px;
  top:20px;
  z-index:5;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  max-width:320px;
  justify-content:flex-end;
}
.show-badge{
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(9,16,24,.62);
  backdrop-filter:blur(8px);
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#fff;
}
.option-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  letter-spacing:.28em;
  color:rgba(255,255,255,.86);
  font-weight:700;
}
.showcase-stage.rgb-off .pc-holder img{
  filter: drop-shadow(0 35px 40px rgba(0,0,0,.32));
}
.showcase-stage.rgb-subtle .pc-holder img{
  filter:
    drop-shadow(0 0 10px rgba(180,255,31,.08))
    drop-shadow(0 35px 40px rgba(0,0,0,.32));
}
.showcase-stage.rgb-balanced .pc-holder img{
  filter:
    drop-shadow(0 0 18px rgba(140,221,255,.18))
    drop-shadow(0 0 12px rgba(184,255,31,.12))
    drop-shadow(0 35px 40px rgba(0,0,0,.32));
}
.showcase-stage.rgb-full .pc-holder img{
  filter:
    drop-shadow(0 0 24px rgba(140,221,255,.26))
    drop-shadow(0 0 18px rgba(184,255,31,.18))
    drop-shadow(0 35px 40px rgba(0,0,0,.32));
}
.summary-box{
  max-height:360px;
  overflow:auto;
}
.panel-more{
  display:none;
}
.panel-more.open{
  display:block;
}
#builderSidebar{
  transition:transform .25s ease;
}
@media (max-width:1050px){
  .showcase-badges{
    top:6px;
    right:10px;
    left:10px;
    max-width:none;
    justify-content:center;
  }
  .show-badge{
    font-size:10px;
    padding:8px 10px;
  }
}


/* Wizard fix */
.wizard-overlay.hidden{
  display:none !important;
  pointer-events:none !important;
  opacity:0 !important;
  visibility:hidden !important;
}


/* ===== NextLevel v15 refine ===== */
.showcase-info-toggle{
  position:absolute;
  right:22px;
  top:20px;
  z-index:6;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(9,16,24,.72);
  color:#fff;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  cursor:pointer;
}
.showcase-info-toggle.active{
  border-color:rgba(184,255,31,.5);
  color:#b8ff1f;
}
.showcase-badges.hidden{
  display:none;
}
.quick-summary-bar{
  margin:18px 0 10px;
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:12px;
}
.quick-chip{
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(9,16,24,.28);
}
.quick-chip span{
  display:block;
  margin-bottom:6px;
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.72;
}
.quick-chip strong{
  display:block;
  color:#fff;
  font-size:15px;
  line-height:1.2;
}
.quick-chip.price-chip strong{
  color:#b8ff1f;
}
.menu-btn{
  position:relative;
}
.menu-state{
  margin-left:auto;
  min-width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:#dfe7f3;
  font-size:11px;
  font-weight:700;
  letter-spacing:.04em;
}
.menu-state.is-build{
  color:#cfd7e3;
}
.menu-state.is-custom{
  color:#b8ff1f;
  border-color:rgba(184,255,31,.35);
  box-shadow:0 0 10px rgba(184,255,31,.12);
}
@media (max-width: 1050px){
  .quick-summary-bar{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
  .showcase-info-toggle{
    right:10px;
    top:8px;
  }
}
@media (max-width: 640px){
  .quick-summary-bar{
    grid-template-columns:1fr;
  }
}

/* v16 status colors */
.menu-state.is-generated{
 color:#7fa8ff;
 border-color:rgba(127,168,255,.35);
}

.quick-summary-title{
 margin-top:14px;
 margin-bottom:6px;
 font-size:11px;
 letter-spacing:.18em;
 text-transform:uppercase;
 color:#cfd7e3;
}


/* v17 admin foundation */
.account-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

/* v23 SQL frontend */
.badge-logo{
  width:18px;
  height:18px;
  object-fit:contain;
  display:inline-block;
  vertical-align:middle;
  margin-right:8px;
}
.show-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
}


/* v26 configuration grid */

.quick-summary-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
margin-bottom:25px;
}

.conf-chip{
background:#111827;
padding:14px;
border:1px solid #1f2937;
font-size:12px;
}

.conf-chip span{
display:block;
opacity:.7;
font-size:11px;
margin-bottom:3px;
}

.conf-chip strong{
font-size:14px;
}

.conf-price{
grid-column:span 4;
background:#0f172a;
border:1px solid #22c55e;
padding:20px;
text-align:center;
}

.conf-price span{
display:block;
font-size:12px;
opacity:.7;
margin-bottom:6px;
}

.conf-price strong{
font-size:36px;
font-weight:700;
}



/* v27 summary layout */
.quick-summary-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:14px;
  margin-bottom:25px;
}

.quick-summary-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:10px;
}

.conf-chip{
  background:rgba(9,16,24,.28);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
  padding:14px;
  min-height:76px;
}

.conf-chip span{
  display:block;
  opacity:.72;
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.conf-chip strong{
  display:block;
  color:#fff;
  font-size:15px;
  line-height:1.25;
}

.conf-price{
  background:rgba(9,16,24,.28);
  border:1px solid rgba(184,255,31,.35);
  backdrop-filter:blur(8px);
  padding:18px;
  min-height:162px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.conf-price span{
  display:block;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.72;
  margin-bottom:10px;
}

.conf-price strong{
  font-size:38px;
  line-height:1.1;
  color:#b8ff1f;
}

@media (max-width: 1200px){
  .quick-summary-layout{
    grid-template-columns:1fr;
  }
  .conf-price{
    min-height:110px;
  }
}

@media (max-width: 900px){
  .quick-summary-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 640px){
  .quick-summary-grid{
    grid-template-columns:1fr;
  }
}


/* v34 right config card */
.quick-summary-title,
.quick-summary-layout,
.conf-price{
  display:none !important;
}

.showcase-info-toggle{
  display:none !important;
}

.right-config-card{
  position:absolute;
  right:24px;
  top:150px;
  width:320px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(9,16,24,.28);
  backdrop-filter:blur(8px);
  z-index:7;
}

.right-config-toggle{
  width:100%;
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:0;
  background:rgba(9,16,24,.55);
  color:#fff;
  cursor:pointer;
  padding:0 14px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.right-config-toggle-icon{
  font-size:22px;
  line-height:1;
  color:#b8ff1f;
}

.right-config-body{
  padding:12px;
}

.right-config-body.collapsed{
  display:none;
}

.right-config-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.right-config-item{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  padding:10px 12px;
  min-height:72px;
}

.right-config-item span{
  display:block;
  margin-bottom:6px;
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.72;
}

.right-config-item strong{
  display:block;
  color:#fff;
  font-size:14px;
  line-height:1.25;
}

.cfg-with-logo{
  display:flex !important;
  align-items:center;
  gap:8px;
}

.cfg-logo{
  width:18px;
  height:18px;
  object-fit:contain;
  display:inline-block;
  flex:0 0 18px;
}

.spot-strong,
.spot strong{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
}

.spot-logo{
  width:22px !important;
  height:22px !important;
  object-fit:contain !important;
  display:inline-block;
  flex:0 0 22px;
}

@media (max-width: 1500px){
  .right-config-card{
    width:290px;
    right:14px;
  }
}

@media (max-width: 1200px){
  .right-config-card{
    position:static;
    width:100%;
    margin-top:16px;
  }
}


/* v35 hide old bottom config + bigger spot logos */
.quick-summary-title,
.quick-summary-grid,
.quick-summary-layout,
.conf-chip,
.conf-price{
  display:none !important;
}

.spot-strong,
.spot strong{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
}

.spot-logo{
  width:34px !important;
  height:34px !important;
  object-fit:contain !important;
  display:inline-block !important;
  flex:0 0 34px !important;
}


/* v36 simple wizard */
.wizard-simple-card{
  width:min(980px, calc(100vw - 56px));
  background:#f3f3f4;
  color:#0f172a;
  border-radius:28px;
  padding:34px 34px 28px;
  box-shadow:0 24px 80px rgba(0,0,0,.28);
  border:0;
}

.wizard-simple-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
}

.wizard-simple-label{
  font-size:14px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:10px;
}

.wizard-simple-price{
  font-size:64px;
  line-height:1;
  font-weight:700;
  color:#111827;
}

.wizard-simple-reco{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  margin-top:12px;
}

.wizard-simple-reco-label{
  font-size:14px;
  color:#6b7280;
}

.wizard-reco-row{
  display:flex;
  gap:10px;
}

.wizard-pill{
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#d9dbe1;
  color:#4b5563;
  font-size:16px;
  font-weight:600;
}

.wizard-pill.active{
  background:#0f172a;
  color:#fff;
}

.wizard-simple-game{
  margin-bottom:18px;
}

.wizard-simple-game label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  color:#6b7280;
}

.wizard-simple-game select{
  width:100%;
  min-height:54px;
  border-radius:16px;
  border:1px solid #d5d8de;
  background:#fff;
  color:#111827;
  padding:0 16px;
}

.wizard-simple-slider{
  margin:12px 0 28px;
}

.wizard-simple-slider input[type="range"]{
  width:100%;
}

.wizard-simple-scale{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  color:#6b7280;
  font-size:16px;
}

.wizard-simple-actions{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px 220px;
  gap:18px;
}

.wizard-simple-actions .wizard-primary{
  min-height:72px;
  border-radius:20px;
  font-size:20px;
  background:#0b1630;
  color:#fff;
  border:0;
  box-shadow:0 12px 24px rgba(11,22,48,.18);
}

.wizard-simple-actions .wizard-secondary{
  min-height:72px;
  border-radius:20px;
  font-size:20px;
  background:#f3f3f4;
  color:#111827;
  border:2px solid #cfd4dc;
}

.ghost-skip{
  color:#6b7280;
}

@media (max-width: 980px){
  .wizard-simple-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .wizard-simple-reco{
    align-items:flex-start;
  }
  .wizard-simple-actions{
    grid-template-columns:1fr;
  }
  .wizard-simple-price{
    font-size:48px;
  }
}


/* v37 left nav png icons */
.menu-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  margin:0 auto 8px;
  font-size:22px;
  line-height:1;
}

.menu-icon-img{
  width:26px;
  height:26px;
  object-fit:contain;
  display:block;
  filter: brightness(0) invert(1);
  opacity:.95;
}

.menu-btn.active .menu-icon-img{
  opacity:1;
}

.menu-icon.fallback-icon{
  font-size:22px;
}


/* v39 nav polish */
.left-menu{
  padding-top: 8px !important;
  gap: 8px;
}

.menu-btn{
  position: relative;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 8px 8px 10px !important;
  min-height: 92px;
  border-radius: 0 !important;
}

.menu-btn::before,
.menu-btn::after{
  display:none !important;
}

.menu-btn:hover,
.menu-btn.active{
  background: transparent !important;
}

.menu-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  margin:0 auto 8px;
  font-size:24px;
  line-height:1;
}

.menu-icon-img{
  width:34px;
  height:34px;
  object-fit:contain;
  display:block;
  filter: brightness(0) invert(1);
  opacity:.98;
}

.menu-text{
  font-size:13px !important;
  line-height:1.15;
  color:#ffffff !important;
  transition: color .18s ease;
}

.menu-btn:hover .menu-text,
.menu-btn.active .menu-text{
  color:#b8ff1f !important;
}

.menu-state{
  position:absolute !important;
  top:6px !important;
  right:8px !important;
  width:10px !important;
  height:10px !important;
  min-width:10px !important;
  min-height:10px !important;
  border-radius:50% !important;
  margin:0 !important;
  font-size:0 !important;
  line-height:0 !important;
  background:#7c869b !important;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:none !important;
}

.menu-state.ok{ background:#22c55e !important; }
.menu-state.selected{ background:#3b82f6 !important; }
.menu-state.error{ background:#ef4444 !important; }
.menu-state.empty{ background:#7c869b !important; }

.nav-legend{
  margin-top:12px;
  padding:10px 8px 0;
  color:#cbd5e1;
  font-size:11px;
}

.nav-legend-title{
  margin-bottom:8px;
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.75;
}

.nav-legend-row{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
  font-size:11px;
}

.legend-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  display:inline-block;
  flex:0 0 9px;
}
.legend-dot.selected{ background:#3b82f6; }
.legend-dot.ok{ background:#22c55e; }
.legend-dot.error{ background:#ef4444; }
.legend-dot.empty{ background:#7c869b; }


/* v40 wizard simplified + nav spacing */
.menu-icon{
  margin:0 auto 4px !important;
}

.menu-text{
  font-size: 9px !important;
  line-height: 1.15;
  color: #ffffff !important;
  transition: color .18s ease;
  font-weight: 600;
}

.wizard-simple-card{
  width:min(980px, calc(100vw - 56px));
  background:#f3f3f4;
  color:#0f172a;
  border-radius:28px;
  padding:34px 34px 28px;
  box-shadow:0 24px 80px rgba(0,0,0,.28);
  border:0;
  position:relative;
}

.wizard-close-x{
  position:absolute;
  top:14px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  color:#6b7280;
  font-size:34px;
  line-height:1;
  cursor:pointer;
}

.wizard-simple-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
}

.wizard-simple-label{
  font-size:14px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:10px;
}

.wizard-simple-price{
  font-size:64px;
  line-height:1;
  font-weight:700;
  color:#111827;
}

.wizard-simple-reco{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  margin-top:12px;
}

.wizard-simple-reco-label{
  font-size:14px;
  color:#6b7280;
}

.wizard-reco-row{
  display:flex;
  gap:10px;
}

.wizard-pill{
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#d9dbe1;
  color:#4b5563;
  font-size:16px;
  font-weight:600;
}

.wizard-pill.active{
  background:#0f172a;
  color:#fff;
}

.wizard-simple-game{
  margin-bottom:18px;
}

.wizard-simple-game label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  color:#6b7280;
}

.wizard-simple-game select{
  width:100%;
  min-height:56px;
  border-radius:16px;
  border:1px solid #d5d8de;
  background:#ffffff;
  color:#111827;
  padding:0 16px;
  font-size:17px;
  appearance:none;
}

.wizard-simple-game select option{
  background:#ffffff;
  color:#111827;
}

.wizard-simple-slider{
  margin:12px 0 28px;
}

.wizard-simple-slider input[type="range"]{
  width:100%;
}

.wizard-simple-scale{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  color:#6b7280;
  font-size:16px;
}

.wizard-simple-actions{
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px 220px;
  gap:18px;
}

.wizard-simple-actions .wizard-primary{
  min-height:72px;
  border-radius:20px;
  font-size:20px;
  background:#0b1630;
  color:#fff;
  border:0;
  box-shadow:0 12px 24px rgba(11,22,48,.18);
}

.wizard-simple-actions .wizard-secondary{
  min-height:72px;
  border-radius:20px;
  font-size:20px;
  background:#f3f3f4;
  color:#111827;
  border:2px solid #cfd4dc;
}

.ghost-skip{
  color:#6b7280;
}

.wizard-tabs,
.wizard-tab,
.wizard-badge,
.wizard-field-grid,
.wizard-accordion,
.advanced-grid,
.accordion-panel,
.accordion-toggle{
  display:none !important;
}

@media (max-width: 980px){
  .wizard-simple-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .wizard-simple-reco{
    align-items:flex-start;
  }
  .wizard-simple-actions{
    grid-template-columns:1fr;
  }
  .wizard-simple-price{
    font-size:48px;
  }
}


/* v41 wizard size/style fix */
.wizard-simple-card{
  width:min(840px, calc(100vw - 52px)) !important;
  padding:28px 28px 24px !important;
  border-radius:24px !important;
  box-shadow:0 18px 50px rgba(0,0,0,.24) !important;
}

.wizard-close-x{
  width:36px !important;
  height:36px !important;
  font-size:28px !important;
  top:10px !important;
  right:12px !important;
  color:#7b8494 !important;
}

.wizard-simple-top{
  margin-bottom:16px !important;
  gap:18px !important;
}

.wizard-simple-label{
  font-size:12px !important;
  margin-bottom:8px !important;
}

.wizard-simple-price{
  font-size:48px !important;
  font-weight:700 !important;
}

.wizard-simple-reco{
  margin-top:8px !important;
  gap:8px !important;
}

.wizard-simple-reco-label{
  font-size:12px !important;
}

.wizard-pill{
  min-height:42px !important;
  padding:0 18px !important;
  font-size:15px !important;
}

.wizard-simple-game{
  margin-bottom:14px !important;
}

.wizard-simple-game label{
  font-size:12px !important;
  margin-bottom:6px !important;
}

.wizard-simple-game select{
  min-height:50px !important;
  border-radius:14px !important;
  font-size:16px !important;
  background:#ffffff !important;
  color:#111827 !important;
  border:1px solid #cfd4dc !important;
}

.wizard-simple-game select option{
  background:#ffffff !important;
  color:#111827 !important;
}

.wizard-simple-slider{
  margin:10px 0 22px !important;
}

.wizard-simple-scale{
  margin-top:10px !important;
  font-size:14px !important;
}

.wizard-simple-actions{
  grid-template-columns:minmax(0,1fr) 190px 190px !important;
  gap:14px !important;
}

.wizard-simple-actions .wizard-primary,
.wizard-simple-actions .wizard-secondary{
  min-height:64px !important;
  border-radius:18px !important;
  font-size:15px !important;
  letter-spacing:.14em !important;
  text-transform:uppercase !important;
}

@media (max-width: 900px){
  .wizard-simple-card{
    width:min(92vw, 760px) !important;
  }
  .wizard-simple-actions{
    grid-template-columns:1fr !important;
  }
}


/* v42 dark wizard + dynamic nav dots */
.wizard-simple-card{
  width:min(820px, calc(100vw - 52px)) !important;
  padding:26px 26px 22px !important;
  border-radius:22px !important;
  background:linear-gradient(180deg, rgba(8,15,28,.96), rgba(10,18,34,.96)) !important;
  color:#eef2ff !important;
  border:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 22px 60px rgba(0,0,0,.34) !important;
}

.wizard-close-x{
  width:34px !important;
  height:34px !important;
  font-size:24px !important;
  top:12px !important;
  right:14px !important;
  color:#a7b0c1 !important;
  background:rgba(255,255,255,.04) !important;
  border-radius:10px !important;
}
.wizard-close-x:hover{
  color:#b8ff1f !important;
}

.wizard-simple-label,
.wizard-simple-reco-label,
.wizard-simple-game label{
  color:#95a0b5 !important;
}

.wizard-simple-price{
  color:#ffffff !important;
  font-size:44px !important;
}

.wizard-pill{
  background:rgba(255,255,255,.06) !important;
  color:#aeb8ca !important;
  border:1px solid rgba(255,255,255,.08) !important;
}
.wizard-pill.active{
  background:#0d1730 !important;
  color:#ffffff !important;
  border-color:rgba(184,255,31,.35) !important;
}

.wizard-simple-game select{
  background:rgba(255,255,255,.05) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.10) !important;
}
.wizard-simple-game select option{
  background:#0d1730 !important;
  color:#ffffff !important;
}

.wizard-simple-scale{
  color:#95a0b5 !important;
}

.wizard-simple-actions .wizard-primary{
  background:linear-gradient(180deg, #0f1b35, #0b1630) !important;
  color:#fff !important;
  border:1px solid rgba(184,255,31,.28) !important;
}
.wizard-simple-actions .wizard-secondary{
  background:rgba(255,255,255,.04) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.12) !important;
}
.wizard-simple-actions .wizard-secondary:hover,
.wizard-simple-actions .wizard-primary:hover{
  transform:translateY(-1px);
}

/* nav dots */
.menu-state{
  background:#6f7b91 !important;
}
.menu-state.selected{
  background:#3b82f6 !important;
}
.menu-state.ok{
  background:#22c55e !important;
}
.menu-state.error{
  background:#ef4444 !important;
}
.menu-state.empty{
  background:#6f7b91 !important;
}


/* v43 placeholders + status */
.option-media{
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.option-media img{
  max-width:72%;
  max-height:72%;
  object-fit:contain;
  display:block;
}
.menu-state.selected{
  background:#3b82f6 !important;
}
.menu-state.ok{
  background:#22c55e !important;
}
.menu-state.empty{
  background:#6f7b91 !important;
}


/* v47 neon wizard */
.wizard-overlay{
  background:rgba(3,7,18,.72) !important;
  backdrop-filter:blur(6px);
}

.wizard-simple-card{
  width:min(900px, calc(100vw - 64px)) !important;
  padding:34px 34px 28px !important;
  border-radius:28px !important;
  background:
    radial-gradient(circle at 20% 18%, rgba(39,103,255,.16), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(184,255,31,.10), transparent 22%),
    linear-gradient(180deg, rgba(8,19,44,.96), rgba(7,16,36,.96)) !important;
  color:#eef4ff !important;
  border:1px solid rgba(110,159,255,.42) !important;
  box-shadow:
    0 0 0 1px rgba(110,159,255,.15) inset,
    0 0 28px rgba(52,113,255,.20),
    0 24px 70px rgba(0,0,0,.44) !important;
  position:relative;
  overflow:hidden;
}

.wizard-simple-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 100%, rgba(184,255,31,.08), transparent 30%),
    linear-gradient(90deg, transparent 0%, rgba(173,216,255,.05) 50%, transparent 100%);
}

.wizard-close-x{
  width:36px !important;
  height:36px !important;
  font-size:22px !important;
  top:14px !important;
  right:14px !important;
  color:#b8c3d9 !important;
  background:rgba(255,255,255,.04) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:12px !important;
}
.wizard-close-x:hover{
  color:#b8ff1f !important;
  box-shadow:0 0 18px rgba(184,255,31,.24);
}

.wizard-simple-top{
  align-items:flex-start;
  gap:24px;
  margin-bottom:20px !important;
}

.wizard-simple-label,
.wizard-simple-reco-label,
.wizard-simple-game label{
  color:#a8b4c9 !important;
  font-size:13px !important;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.wizard-simple-price{
  color:#ffffff !important;
  font-size:60px !important;
  line-height:1 !important;
  font-weight:700 !important;
  letter-spacing:-.02em;
  text-shadow:0 0 24px rgba(255,255,255,.08);
}

.wizard-reco-row{
  gap:10px !important;
}

.wizard-pill{
  min-height:50px !important;
  padding:0 22px !important;
  border-radius:999px !important;
  font-size:16px !important;
  background:rgba(16,31,65,.86) !important;
  color:#c8d4ea !important;
  border:1px solid rgba(103,130,187,.28) !important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}
.wizard-pill.active,
#wizardRecommendation{
  color:#ffffff !important;
}
#wizardRecommendation{
  background:rgba(18,30,62,.86) !important;
}
.wizard-pill.active{
  border-color:rgba(184,255,31,.55) !important;
  box-shadow:
    0 0 18px rgba(184,255,31,.18),
    inset 0 0 18px rgba(184,255,31,.08) !important;
}

.wizard-simple-game{
  margin-bottom:18px !important;
}

.wizard-select-wrap{
  position:relative;
}

.wizard-select-icon{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  color:#b8ff1f;
  font-size:24px;
  line-height:1;
  pointer-events:none;
  text-shadow:0 0 12px rgba(184,255,31,.30);
}

.wizard-select-arrow{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  color:#aab7cf;
  font-size:20px;
  pointer-events:none;
}

.wizard-simple-game select{
  width:100%;
  min-height:72px !important;
  border-radius:22px !important;
  border:1px solid rgba(90,123,188,.35) !important;
  background:linear-gradient(180deg, rgba(18,35,73,.92), rgba(12,24,52,.92)) !important;
  color:#ffffff !important;
  padding:0 56px 0 56px !important;
  font-size:20px !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 0 0 1px rgba(103,130,187,.08);
  appearance:none;
}
.wizard-simple-game select:focus{
  outline:none;
  border-color:rgba(184,255,31,.52) !important;
  box-shadow:0 0 18px rgba(184,255,31,.14);
}
.wizard-simple-game select option{
  background:#0d1730 !important;
  color:#ffffff !important;
}

.wizard-simple-slider{
  margin:14px 0 26px !important;
}

.wizard-simple-slider input[type="range"]{
  width:100%;
  accent-color:#98ff2d;
  filter:drop-shadow(0 0 6px rgba(184,255,31,.45));
}

.wizard-simple-scale{
  margin-top:12px !important;
  color:#b1bed4 !important;
  font-size:15px !important;
}

.wizard-simple-actions{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) 220px 260px !important;
  gap:18px !important;
  align-items:center;
}
.wizard-simple-actions::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:1px;
  background:linear-gradient(90deg, transparent 0%, rgba(106,157,255,.35) 20%, rgba(184,255,31,.28) 50%, rgba(106,157,255,.35) 80%, transparent 100%);
  z-index:0;
}

.wizard-simple-actions .wizard-primary,
.wizard-simple-actions .wizard-secondary{
  position:relative;
  z-index:1;
}

.wizard-simple-actions .wizard-primary{
  min-height:76px !important;
  border-radius:999px !important;
  font-size:18px !important;
  font-weight:700 !important;
  letter-spacing:.16em !important;
  text-transform:uppercase !important;
  background:linear-gradient(180deg, rgba(25,78,39,.92), rgba(18,56,30,.92)) !important;
  color:#f8fff0 !important;
  border:1px solid rgba(184,255,31,.62) !important;
  box-shadow:
    0 0 24px rgba(184,255,31,.24),
    inset 0 0 18px rgba(184,255,31,.12) !important;
}
.wizard-simple-actions .wizard-primary:hover{
  transform:translateY(-1px);
  box-shadow:
    0 0 32px rgba(184,255,31,.28),
    inset 0 0 22px rgba(184,255,31,.16) !important;
}

.wizard-simple-actions .wizard-secondary{
  min-height:64px !important;
  border-radius:22px !important;
  font-size:16px !important;
  font-weight:700 !important;
  letter-spacing:.16em !important;
  text-transform:uppercase !important;
  background:linear-gradient(180deg, rgba(17,31,63,.88), rgba(11,22,48,.88)) !important;
  color:#dce5f5 !important;
  border:1px solid rgba(87,112,163,.34) !important;
}
.wizard-simple-actions .wizard-secondary:hover{
  transform:translateY(-1px);
  color:#ffffff !important;
  border-color:rgba(184,255,31,.24) !important;
}

@media (max-width: 980px){
  .wizard-simple-card{
    width:min(92vw, 760px) !important;
    padding:28px 24px 24px !important;
  }
  .wizard-simple-top{
    flex-direction:column;
  }
  .wizard-simple-reco{
    align-items:flex-start !important;
  }
  .wizard-simple-actions{
    grid-template-columns:1fr !important;
  }
  .wizard-simple-actions::before{
    display:none;
  }
  .wizard-simple-price{
    font-size:48px !important;
  }
  .wizard-simple-game select{
    min-height:64px !important;
    font-size:18px !important;
  }
}

@media (max-width: 640px){
  .wizard-simple-card{
    width:calc(100vw - 24px) !important;
    border-radius:22px !important;
  }
  .wizard-simple-price{
    font-size:40px !important;
  }
  .wizard-pill{
    min-height:44px !important;
    padding:0 16px !important;
    font-size:14px !important;
  }
}


/* v50 generated build panel */
.generated-build-box{
  margin-top:14px;
}

.generated-build-subline{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin:2px 0 14px;
  color:rgba(238,245,255,.72);
  font-size:12px;
  letter-spacing:.04em;
}

.fps-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(184,255,31,.10);
  color:var(--lime);
  border:1px solid rgba(184,255,31,.22);
  font-size:12px;
  letter-spacing:.08em;
}

.generated-build-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.generated-build-item{
  min-height:76px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  padding:10px 12px;
}

.generated-build-item span{
  display:block;
  margin-bottom:6px;
  color:rgba(238,245,255,.62);
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.generated-build-item strong{
  display:block;
  color:#fff;
  font-size:14px;
  line-height:1.25;
}

@media (max-width: 1200px){
  .generated-build-grid{
    grid-template-columns:1fr;
  }
}


/* v52 build quality */
.build-quality-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0 0 14px;
}

.build-quality-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.08em;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
}

.build-quality-badge.base{
  color:#dbe7ff;
  border-color:rgba(255,255,255,.12);
}
.build-quality-badge.good{
  color:var(--lime);
  border-color:rgba(184,255,31,.30);
  background:rgba(184,255,31,.08);
}
.build-quality-badge.great{
  color:#8ec5ff;
  border-color:rgba(84,172,255,.30);
  background:rgba(84,172,255,.08);
}
.build-quality-badge.warn{
  color:#ffd39b;
  border-color:rgba(255,173,92,.30);
  background:rgba(255,173,92,.08);
}

.build-quality-note{
  color:rgba(238,245,255,.68);
  font-size:12px;
  text-align:right;
}


/* v54 compatibility */
.compatibility-box{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin:0 0 14px;
}
.compatibility-ok,
.compatibility-warning{
  min-height:40px;
  border-radius:12px;
  padding:10px 12px;
  font-size:12px;
  line-height:1.35;
}
.compatibility-ok{
  background:rgba(34,197,94,.10);
  border:1px solid rgba(34,197,94,.24);
  color:#c9ffd8;
}
.compatibility-warning{
  background:rgba(239,68,68,.10);
  border:1px solid rgba(239,68,68,.22);
  color:#ffd3d3;
}


/* v55 socket/ram filters */
.compatibility-context-hint{
  margin-top:8px;
  color:rgba(238,245,255,.72);
  font-size:12px;
  letter-spacing:.04em;
}

.compat-meta{
  min-height:18px;
  margin-top:6px;
  color:rgba(184,255,31,.82);
  font-size:11px;
  letter-spacing:.04em;
}


/* v56 visible compatibility + power */
.visible-compatibility-panel{
  margin-top:12px;
  margin-bottom:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:12px;
}

.visible-compatibility-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.visible-compatibility-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.08em;
  border:1px solid rgba(255,255,255,.12);
}

.visible-compatibility-badge.ok{
  background:rgba(34,197,94,.10);
  border-color:rgba(34,197,94,.24);
  color:#c9ffd8;
}

.visible-compatibility-badge.warn{
  background:rgba(239,68,68,.10);
  border-color:rgba(239,68,68,.22);
  color:#ffd3d3;
}

.visible-compatibility-power{
  color:rgba(238,245,255,.78);
  font-size:12px;
  letter-spacing:.04em;
}

.visible-compatibility-list{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.visible-compatibility-ok,
.visible-compatibility-warning{
  min-height:38px;
  border-radius:12px;
  padding:10px 12px;
  font-size:12px;
  line-height:1.35;
}
.visible-compatibility-ok{
  background:rgba(34,197,94,.06);
  border:1px solid rgba(34,197,94,.18);
  color:#c9ffd8;
}
.visible-compatibility-warning{
  background:rgba(239,68,68,.08);
  border:1px solid rgba(239,68,68,.18);
  color:#ffd3d3;
}


/* v57 compat right panel */
.visible-compatibility-panel-right{
  margin-top:14px;
}

.compatibility-context-hint{
  display:none;
}


/* v58 layout fix */
.slider-head{
  display:flex !important;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.slider-head-left{
  flex:1 1 auto;
  min-width:0;
}

.slider-head-right{
  display:flex !important;
  align-items:center;
  gap:10px;
  margin-left:auto;
  justify-content:flex-end;
}

.page-indicator{
  order:1;
  margin:0 !important;
  white-space:nowrap;
}

.slider-arrows,
.slider-nav,
.cards-nav{
  order:2;
  display:flex !important;
  align-items:center;
  gap:10px;
  margin-left:0 !important;
}

.slider-arrow,
.cards-arrow,
.slider-head-right button{
  flex:0 0 auto;
}

.visible-compatibility-panel-right{
  display:block !important;
  width:auto !important;
  margin-top:14px !important;
  margin-left:0 !important;
  position:relative !important;
  left:auto !important;
  top:auto !important;
  right:auto !important;
}

.right-panel .visible-compatibility-panel-right{
  align-self:stretch;
}

.visible-compatibility-panel{
  display:none !important;
}

/* kill accidental floating/absolute leftovers */
#visibleCompatibilityPanel{
  float:none !important;
}


/* v59 fixed compatibility card */
#visibleCompatibilityPanel{
  position:fixed !important;
  top:92px !important;
  right:18px !important;
  width:264px !important;
  z-index:550 !important;
  margin:0 !important;
  left:auto !important;
  bottom:auto !important;
}

.visible-compatibility-panel-right{
  position:fixed !important;
  top:92px !important;
  right:18px !important;
  width:264px !important;
  z-index:550 !important;
  margin:0 !important;
  left:auto !important;
  bottom:auto !important;
  display:block !important;
  background:rgba(34,39,67,.92) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  border-radius:12px !important;
  box-shadow:0 10px 30px rgba(0,0,0,.28) !important;
  backdrop-filter:blur(5px);
}

.right-panel .visible-compatibility-panel-right{
  align-self:auto !important;
}

.visible-compatibility-top{
  margin-bottom:10px !important;
}

.visible-compatibility-list{
  gap:8px !important;
}

@media (max-width: 1400px){
  #visibleCompatibilityPanel,
  .visible-compatibility-panel-right{
    position:static !important;
    width:auto !important;
    margin-top:14px !important;
    right:auto !important;
    top:auto !important;
  }
}
