:root{
    --bg:#050811;
    --bg2:#090f1f;
    --card:rgba(9,17,34,.78);
    --card2:rgba(12,22,44,.92);
    --line:rgba(91,137,255,.24);
    --line2:rgba(91,137,255,.42);
    --text:#eef4ff;
    --soft:#b8c4df;
    --muted:#7f8ca8;
    --blue:#2f8cff;
    --blue2:#69b3ff;
    --purple:#8b5cf6;
    --pink:#ff3d6e;
    --green:#20e48a;
    --yellow:#ffcc33;
    --radius:6px;
    --radius-sm:6px;
    --shadow:0 24px 70px rgba(0,0,0,.46);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    min-height:100vh;
    font-family:Inter,Arial,Helvetica,sans-serif;
    color:var(--text);
    background:
        radial-gradient(circle at 15% 8%,rgba(47,140,255,.22),transparent 28%),
        radial-gradient(circle at 82% 18%,rgba(139,92,246,.20),transparent 30%),
        radial-gradient(circle at 50% 88%,rgba(255,61,110,.12),transparent 35%),
        linear-gradient(180deg,#050811 0%,#070b16 48%,#050811 100%);
    overflow-x:hidden;
}
body.modal-open{overflow:hidden}

.site-bg-grid{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-3;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:64px 64px;
    mask-image:linear-gradient(180deg,rgba(0,0,0,.75),rgba(0,0,0,.12));
}
.site-glow{position:fixed;pointer-events:none;z-index:-2;border-radius:50%;filter:blur(25px);opacity:.55}
.site-glow-one{width:380px;height:380px;background:rgba(47,140,255,.20);left:-120px;top:120px}
.site-glow-two{width:420px;height:420px;background:rgba(139,92,246,.16);right:-150px;top:260px}

a{color:inherit}
h1,h2,h3,h4,p{margin-top:0}
h1,h2,h3{letter-spacing:-.035em}
.muted{color:var(--muted)}

.btn{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:0 20px;
    border:1px solid rgba(47,140,255,.45);
    border-radius:var(--radius-sm);
    background:linear-gradient(135deg,var(--blue),var(--purple));
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
    box-shadow:0 16px 35px rgba(47,140,255,.22);
    transition:transform .18s ease,border-color .18s ease,filter .18s ease,box-shadow .18s ease;
}
.btn:hover{transform:translateY(-2px);filter:brightness(1.08);box-shadow:0 18px 42px rgba(47,140,255,.30)}
.btn.secondary,.btn-ghost{
    background:rgba(11,20,39,.75);
    border-color:rgba(91,137,255,.30);
    box-shadow:none;
}
.btn-ghost:hover{border-color:var(--blue);box-shadow:0 16px 35px rgba(47,140,255,.16)}

input,select,textarea{
    width:100%;
    min-height:46px;
    padding:0 14px;
    background:rgba(4,10,22,.94);
    border:1px solid rgba(91,137,255,.28);
    border-radius:var(--radius-sm);
    color:#fff;
    outline:none;
    font-size:13px;
    font-weight:800;
    transition:border-color .18s ease,box-shadow .18s ease;
}
input:focus,select:focus,textarea:focus{border-color:var(--blue);box-shadow:0 0 0 4px rgba(47,140,255,.12)}
label{display:block;color:var(--soft);font-size:11px;font-weight:900;text-transform:uppercase;margin:0 0 8px}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:30px;
    padding:0 12px;
    border-radius:999px;
    color:#9fc8ff;
    background:rgba(47,140,255,.12);
    border:1px solid rgba(47,140,255,.35);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.04em;
}
.badge-hot{color:#ffcf78;background:rgba(255,204,51,.10);border-color:rgba(255,204,51,.32)}

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(5,8,17,.72);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(91,137,255,.16);
}
.navbar{
    max-width:1200px;
    height:78px;
    margin:0 auto;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}
.logo{display:flex;align-items:center;gap:12px;text-decoration:none;color:#fff;font-weight:1000;text-transform:uppercase;letter-spacing:.02em}
.logo img{width:86px;height:auto;object-fit:contain;filter:drop-shadow(0 0 16px rgba(47,140,255,.20))}
.logo span span{color:var(--blue2)}

.nav-links{display:flex;align-items:center;gap:8px}
.nav-links>a,.login-dropbtn{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid transparent;
    background:transparent;
    color:#aab6d3;
    text-decoration:none;
    font-size:13px;
    font-weight:900;
    cursor:pointer;
    transition:.18s;
}
.nav-links>a:hover,.nav-links>a.active,.login-dropbtn:hover,.login-dropdown.open .login-dropbtn{
    color:#fff;
    background:rgba(47,140,255,.10);
    border-color:rgba(47,140,255,.24);
}
.login-dot{width:8px;height:8px;border-radius:50%;background:var(--green);box-shadow:0 0 12px rgba(32,228,138,.80)}
.login-dropdown{position:relative}
.login-menu{
    position:absolute;
    right:0;
    top:calc(100% + 12px);
    width:330px;
    padding:16px;
    border-radius:20px;
    border:1px solid rgba(91,137,255,.32);
    background:linear-gradient(180deg,rgba(11,20,39,.98),rgba(5,10,22,.98));
    box-shadow:var(--shadow),0 0 35px rgba(47,140,255,.18);
    display:none;
}
.login-dropdown.open .login-menu{display:block;animation:dropIn .18s ease}
@keyframes dropIn{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
.login-menu-head{margin-bottom:14px;padding-bottom:12px;border-bottom:1px solid rgba(91,137,255,.18)}
.login-menu-head b{display:block;color:#fff;font-size:16px}.login-menu-head small{color:var(--muted);font-size:12px}
.dropdown-login-form input{margin-bottom:12px}
.nav-login-submit{width:100%;margin-top:2px}
.login-menu-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:12px}
.login-menu-actions button{
    min-height:40px;
    border-radius:12px;
    border:1px solid rgba(91,137,255,.30);
    background:rgba(47,140,255,.08);
    color:#cdd8f6;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
}
.login-menu-actions button:hover{border-color:var(--blue);color:#fff;background:rgba(47,140,255,.14)}
.mobile-nav-toggle{display:none;background:transparent;border:0;padding:8px;cursor:pointer}
.mobile-nav-toggle i{display:block;width:24px;height:2px;margin:5px 0;background:#fff;border-radius:4px}

.top-message{
    max-width:1200px;
    margin:18px auto 0;
    padding:14px 18px;
    border-radius:14px;
    font-weight:900;
    backdrop-filter:blur(10px);
    transition:opacity .35s ease;
}
.top-message.success{background:rgba(32,228,138,.14);border:1px solid rgba(32,228,138,.42);color:#7fffc0}
.top-message.error{background:rgba(255,61,110,.14);border:1px solid rgba(255,61,110,.42);color:#ff9ab0}
.auth-inline-message{margin:0 0 14px;padding:12px 14px;border-radius:14px;font-size:13px;font-weight:900;line-height:1.45}
.auth-inline-message.success{background:rgba(32,228,138,.12);border:1px solid rgba(32,228,138,.36);color:#7fffc0}
.auth-inline-message.error{background:rgba(255,61,110,.12);border:1px solid rgba(255,61,110,.36);color:#ff9ab0}

.hero-section{
    max-width:1200px;
    margin:0 auto;
    padding:92px 24px 70px;
    display:grid;
    grid-template-columns:minmax(0,1.1fr) minmax(330px,.8fr);
    gap:42px;
    align-items:center;
}
.hero-copy h1{max-width:760px;margin:18px 0 18px;color:#fff;font-size:62px;line-height:.98;font-weight:1000}
.hero-copy p{max-width:640px;color:#b8c4df;font-size:18px;line-height:1.7}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.hero-trust-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:32px;max-width:610px}
.hero-trust-row div{padding:14px;border-radius:16px;border:1px solid rgba(91,137,255,.18);background:rgba(9,17,34,.52)}
.hero-trust-row b{display:block;color:#fff;font-size:20px}.hero-trust-row span{display:block;color:var(--muted);font-size:12px;font-weight:800;margin-top:4px}
.hero-visual{position:relative;min-height:430px;display:grid;place-items:center}
.server-orbit{position:absolute;border-radius:50%;border:1px solid rgba(91,137,255,.18);animation:spinOrbit 16s linear infinite}
.orbit-one{width:360px;height:360px}.orbit-two{width:260px;height:260px;animation-duration:12s;animation-direction:reverse}
@keyframes spinOrbit{to{transform:rotate(360deg)}}
.server-terminal-card{
    position:relative;
    width:min(420px,100%);
    border-radius:28px;
    border:1px solid rgba(91,137,255,.35);
    background:linear-gradient(180deg,rgba(15,27,52,.94),rgba(6,12,26,.98));
    box-shadow:0 34px 100px rgba(0,0,0,.55),0 0 55px rgba(47,140,255,.20);
    overflow:hidden;
}
.server-terminal-card::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 0,rgba(47,140,255,.18),transparent 36%);pointer-events:none}
.terminal-top{height:52px;display:flex;align-items:center;gap:7px;padding:0 18px;border-bottom:1px solid rgba(91,137,255,.18);position:relative}
.terminal-top span{width:10px;height:10px;border-radius:50%;background:var(--pink)}.terminal-top span:nth-child(2){background:var(--yellow)}.terminal-top span:nth-child(3){background:var(--green)}.terminal-top b{margin-left:auto;color:#93a4c5;font-size:11px;letter-spacing:.08em}
.terminal-lines{padding:22px;display:grid;gap:14px}.terminal-lines p{margin:0;display:flex;align-items:center;gap:10px;color:#b8c4df;font-weight:800}.terminal-lines i{width:9px;height:9px;border-radius:50%;display:inline-block}.terminal-lines b{margin-left:auto;color:#fff}
.green{color:var(--green)!important;background:var(--green)}.blue{color:var(--blue2)!important;background:var(--blue)}.purple{background:var(--purple)}.yellow{background:var(--yellow)}
.terminal-meter{padding:0 22px 24px}.terminal-meter span{color:var(--muted);font-size:12px;font-weight:900;text-transform:uppercase}.terminal-meter b{float:right;color:#fff}.terminal-meter em{display:block;height:10px;margin-top:12px;border-radius:99px;background:rgba(255,255,255,.08);overflow:hidden}.terminal-meter i{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--green),var(--blue))}

.public-section{max-width:1200px;margin:0 auto;padding:70px 24px}.compact-section{padding-top:20px}
.section-title{max-width:760px;margin-bottom:28px}.section-title.center{text-align:center;margin-left:auto;margin-right:auto}.section-title h2{margin:16px 0 10px;color:#fff;font-size:42px;line-height:1.08}.section-title p{color:var(--soft);font-size:16px;line-height:1.6}
.feature-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.feature-card,.contact-card,.game-stack-card,.process-grid div,.order-box,.order-summary,.auth-card{
    border:1px solid var(--line);
    background:linear-gradient(180deg,rgba(12,22,44,.82),rgba(6,12,26,.88));
    border-radius:var(--radius);
    box-shadow:0 18px 55px rgba(0,0,0,.30);
}
.feature-card{padding:24px;transition:.18s}.feature-card:hover{transform:translateY(-4px);border-color:var(--line2);box-shadow:0 24px 70px rgba(47,140,255,.16)}
.feature-card i{font-style:normal;font-size:30px}.feature-card h3{margin:16px 0 8px;color:#fff;font-size:20px}.feature-card p{color:var(--muted);line-height:1.6;font-size:14px;margin:0}
.game-stack-section{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:stretch}.main-game-card{padding:30px;background:radial-gradient(circle at top right,rgba(255,61,110,.12),transparent 40%),linear-gradient(180deg,rgba(15,27,52,.90),rgba(6,12,26,.94))}.main-game-card h2{margin:18px 0 12px;color:#fff;font-size:40px}.main-game-card p{color:var(--soft);line-height:1.7}
.game-stack-list{display:grid;grid-template-columns:1fr 1fr;gap:12px}.game-stack-list div{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:18px;border-radius:18px;border:1px solid var(--line);background:rgba(9,17,34,.64);color:#fff;font-weight:900}.game-stack-list span{color:#9fc8ff;font-size:11px;text-transform:uppercase}
.process-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.process-grid div{padding:22px}.process-grid b{color:#7eb7ff;font-size:13px}.process-grid h3{color:#fff;margin:12px 0 8px}.process-grid p{color:var(--muted);font-size:14px;line-height:1.6;margin:0}

.site-footer{max-width:1200px;margin:40px auto 0;padding:44px 24px 26px;display:grid;grid-template-columns:2fr 1fr 1fr;gap:30px;border-top:1px solid rgba(91,137,255,.20)}
.site-footer h3,.site-footer h4{color:#fff;margin-bottom:12px}.site-footer p,.site-footer a{display:block;color:var(--muted);text-decoration:none;margin:8px 0}.site-footer a:hover{color:#fff}.footer-bottom{grid-column:1/4;margin-top:10px;padding-top:18px;border-top:1px solid rgba(255,255,255,.06);color:#6f7d9b}

.order-hero-section{max-width:1200px;margin:0 auto;padding:78px 24px 24px;display:flex;align-items:end;justify-content:space-between;gap:24px}.order-hero-copy h1{max-width:740px;color:#fff;font-size:54px;line-height:1;margin:18px 0 12px}.order-hero-copy p{max-width:650px;color:var(--soft);font-size:17px;line-height:1.65}.order-hero-stats{display:grid;grid-template-columns:repeat(3,110px);gap:10px}.order-hero-stats div{text-align:center;padding:14px 10px;border-radius:18px;border:1px solid var(--line);background:rgba(9,17,34,.64)}.order-hero-stats b{display:block;color:#fff}.order-hero-stats span{display:block;color:var(--muted);font-size:11px;margin-top:5px}
.order-section{max-width:1200px;margin:0 auto;padding:24px 24px 80px;display:grid;grid-template-columns:minmax(0,1fr) 370px;gap:26px}.order-feature-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:18px}.order-feature-strip div{min-height:110px;padding:18px;border-radius:20px;border:1px solid var(--line);background:rgba(9,17,34,.60)}.order-feature-strip i{font-style:normal;font-size:25px}.order-feature-strip b{display:block;color:#fff;margin:10px 0 4px}.order-feature-strip span{color:var(--muted);font-size:12px}
.glass-box{padding:24px;margin-bottom:18px}.order-box-head{display:flex;gap:14px;align-items:flex-start;margin-bottom:18px}.order-box-head>span{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:rgba(47,140,255,.12);border:1px solid rgba(47,140,255,.34);color:#9fc8ff;font-weight:1000}.order-box h3{margin:0 0 4px;color:#fff;font-size:18px}.order-box p{margin:0;color:var(--muted);font-size:13px}.slot-grid,.location-grid,.cycle-grid{display:flex;flex-wrap:wrap;gap:12px}.slot-btn,.location-btn,.cycle-btn{border:1px solid rgba(91,137,255,.26);background:rgba(6,12,26,.76);color:#fff;border-radius:16px;padding:15px 18px;cursor:pointer;transition:.18s}.slot-btn:hover,.location-btn:hover,.cycle-btn:hover,.slot-btn.active,.location-btn.active,.cycle-btn.active{transform:translateY(-2px);border-color:var(--pink);background:rgba(255,61,110,.12);box-shadow:0 0 28px rgba(255,61,110,.18)}.slot-btn b,.location-btn b{display:block;font-size:22px}.slot-btn span,.location-btn span{display:block;color:var(--muted);font-size:11px;text-transform:uppercase;margin-top:4px}.slot-btn em{display:block;margin-top:8px;color:#ff9db1;font-style:normal;font-size:12px;font-weight:900}.location-btn{min-width:190px;text-align:left}.location-btn i{font-style:normal;margin-right:8px}.empty-note{padding:16px;border-radius:14px;background:rgba(255,61,110,.10);border:1px solid rgba(255,61,110,.30);color:#ff9ab0;font-weight:900}
.order-summary{position:sticky;top:100px;align-self:start;padding:26px;background:radial-gradient(circle at top right,rgba(255,61,110,.12),transparent 40%),linear-gradient(180deg,rgba(15,27,52,.96),rgba(6,12,26,.98));border-color:rgba(255,61,110,.38);box-shadow:0 24px 70px rgba(0,0,0,.42),0 0 42px rgba(255,61,110,.14)}.summary-badge{display:inline-flex;margin-bottom:12px;padding:7px 10px;border-radius:999px;background:rgba(255,61,110,.12);border:1px solid rgba(255,61,110,.34);color:#ff9db1;font-size:11px;font-weight:1000;text-transform:uppercase}.order-summary h3{color:#fff;margin-bottom:12px}.summary-row{display:flex;justify-content:space-between;gap:14px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.07)}.summary-row span,.summary-total span{color:var(--muted)}.summary-row b{color:#fff;text-align:right}.order-summary hr{border:0;border-top:1px solid rgba(255,255,255,.10);margin:18px 0}.order-summary h4{color:#fff;margin-bottom:12px}.summary-total{display:flex;align-items:center;justify-content:space-between;padding-top:18px;margin-top:18px;border-top:1px solid rgba(255,255,255,.10)}.summary-total b{color:#ff6384;font-size:28px}.order-btn{width:100%;margin-top:20px}.summary-note{display:block;margin-top:12px;color:var(--muted);font-size:12px;line-height:1.5;text-align:center}

.contact-hero-section{max-width:1200px;margin:0 auto;padding:86px 24px 30px;display:flex;align-items:end;justify-content:space-between;gap:28px}.contact-hero-section h1{color:#fff;font-size:54px;line-height:1;margin:18px 0 12px}.contact-hero-section p{max-width:630px;color:var(--soft);font-size:17px;line-height:1.65}.contact-status-card{min-width:240px;padding:20px;border-radius:22px;border:1px solid rgba(32,228,138,.36);background:rgba(32,228,138,.08)}.contact-status-card b{display:block;color:#fff;margin-bottom:10px}.contact-status-card span{display:flex;align-items:center;gap:9px;color:#7fffc0;font-weight:900}.contact-status-card i{width:10px;height:10px;border-radius:50%;background:var(--green);box-shadow:0 0 16px rgba(32,228,138,.75)}.contact-grid-section{max-width:1200px;margin:0 auto;padding:24px 24px 80px;display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:18px}.contact-card{padding:24px}.large-contact-card{grid-row:span 2}.large-contact-card h2{color:#fff;font-size:38px;line-height:1.08;margin:18px 0 12px}.contact-card h3{color:#fff;margin:12px 0 8px}.contact-card p{color:var(--muted);line-height:1.6}.contact-card i{font-style:normal;font-size:28px}.contact-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}

.auth-section{min-height:calc(100vh - 78px);max-width:1200px;margin:0 auto;padding:70px 24px;display:flex;align-items:center;justify-content:center}.auth-card{width:100%;max-width:500px;padding:34px}.auth-card.register-card{max-width:760px}.auth-card h1{font-size:42px;color:#fff;margin:18px 0 8px}.auth-card form{margin-top:22px}.auth-card input{margin-bottom:16px}.auth-card .btn{width:100%;margin-top:8px}.auth-links{display:flex;justify-content:space-between;gap:12px;margin-top:18px}.auth-links a{color:#9fc8ff;text-decoration:none;font-size:14px;font-weight:800}.auth-links a:hover{color:#fff}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 14px}.form-full{grid-column:1 / 3}.alert{padding:12px 14px;border-radius:14px;margin:15px 0;font-size:14px;font-weight:900}.alert.bad{background:rgba(255,61,110,.12);border:1px solid rgba(255,61,110,.35);color:#ff9ab0}.alert.ok{background:rgba(32,228,138,.12);border:1px solid rgba(32,228,138,.35);color:#7fffc0}

.public-modal{position:fixed;inset:0;z-index:100;display:none;align-items:center;justify-content:center;padding:24px}.public-modal.show{display:flex}.public-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.72);backdrop-filter:blur(7px)}.public-modal-box{position:relative;z-index:1;width:min(520px,100%);max-height:92vh;overflow:auto;padding:28px;border-radius:26px;border:1px solid rgba(91,137,255,.36);background:radial-gradient(circle at top right,rgba(47,140,255,.16),transparent 40%),linear-gradient(180deg,rgba(11,20,39,.98),rgba(5,10,22,.99));box-shadow:0 35px 100px rgba(0,0,0,.65),0 0 45px rgba(47,140,255,.20)}.public-modal-wide{width:min(790px,100%)}.public-modal-close{position:absolute;right:18px;top:18px;width:36px;height:36px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(255,255,255,.05);color:#fff;font-size:24px;line-height:1;cursor:pointer}.public-modal-close:hover{background:rgba(255,61,110,.14);border-color:rgba(255,61,110,.35)}.public-modal-head{padding-right:42px;margin-bottom:18px}.public-modal-head h2{margin:16px 0 8px;color:#fff;font-size:34px;line-height:1.05}.public-modal-head p{color:var(--soft);line-height:1.6}.public-auth-form input{margin-bottom:14px}.modal-main-btn{width:100%;margin-top:10px}

@media(max-width:1000px){
    .hero-section,.game-stack-section,.order-section{grid-template-columns:1fr}.hero-visual{min-height:340px}.order-summary{position:relative;top:auto}.feature-grid{grid-template-columns:1fr 1fr}.process-grid{grid-template-columns:1fr 1fr}.contact-grid-section{grid-template-columns:1fr 1fr}.large-contact-card{grid-column:1/3}.order-hero-section,.contact-hero-section{display:block}.order-hero-stats{margin-top:20px;grid-template-columns:repeat(3,1fr)}
}
@media(max-width:760px){
    .navbar{height:auto;min-height:72px;align-items:flex-start;padding:14px 18px;position:relative}.logo img{width:74px}.logo>span{display:none}.mobile-nav-toggle{display:block;margin-top:8px}.nav-links{position:absolute;left:18px;right:18px;top:70px;display:none;flex-direction:column;align-items:stretch;padding:14px;border-radius:20px;border:1px solid var(--line);background:rgba(5,10,22,.98);box-shadow:var(--shadow)}.nav-links.show{display:flex}.nav-links>a,.login-dropbtn{width:100%;justify-content:center}.login-menu{position:static;width:100%;margin-top:10px}.hero-section{padding-top:58px}.hero-copy h1,.order-hero-copy h1,.contact-hero-section h1{font-size:42px}.hero-trust-row,.feature-grid,.game-stack-list,.process-grid,.contact-grid-section,.order-feature-strip{grid-template-columns:1fr}.large-contact-card{grid-column:auto}.site-footer{grid-template-columns:1fr}.footer-bottom{grid-column:auto}.form-grid{grid-template-columns:1fr}.form-full{grid-column:auto}.public-modal{padding:14px}.public-modal-box{padding:22px}.public-modal-head h2{font-size:28px}.order-hero-stats{grid-template-columns:1fr}.slot-grid,.location-grid{display:grid;grid-template-columns:1fr}.location-btn{text-align:center;min-width:0}
}

/* =========================================================
   PUBLIC SITE UNIFIED CONTENT FRAME + NEW PUBLIC ORDER FLOW
========================================================= */
.site-main-shell{
    max-width:1280px;
    margin:26px auto 0;
    padding:0 22px;
}

.public-content-frame{
    position:relative;
    overflow:hidden;
    border-radius:26px;
    border:2px solid rgba(91,137,255,.30);
    background:
        radial-gradient(circle at top left,rgba(47,140,255,.10),transparent 32%),
        radial-gradient(circle at bottom right,rgba(139,92,246,.12),transparent 36%),
        linear-gradient(180deg,rgba(8,16,33,.70),rgba(5,10,22,.82));
    box-shadow:
        0 0 0 1px rgba(255,255,255,.035) inset,
        0 26px 80px rgba(0,0,0,.42),
        0 0 38px rgba(47,140,255,.12);
    backdrop-filter:blur(10px);
}

.public-content-frame::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:58px 58px;
    opacity:.28;
    mask-image:linear-gradient(180deg,rgba(0,0,0,.45),transparent 80%);
}

.public-content-frame > section{
    position:relative;
    z-index:1;
}

.hero-section{
    padding:62px 28px 46px;
}

.hero-copy h1{
    font-size:48px;
    line-height:1.04;
    max-width:720px;
}

.section-title h2{
    font-size:34px;
}

.main-game-card h2,
.cs16-product-card h2,
.large-contact-card h2{
    font-size:32px;
}

.order-hero-section,
.contact-hero-section{
    padding:52px 28px 18px;
}

.order-hero-copy h1,
.contact-hero-section h1,
.auth-card h1{
    font-size:38px;
    line-height:1.08;
}

.public-section{
    padding:44px 28px;
}

.order-section{
    padding:22px 28px 56px;
}

.contact-grid-section{
    padding:22px 28px 56px;
}

.cs16-only-section{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
    gap:18px;
    align-items:stretch;
}

.cs16-product-card{
    padding:30px;
    border-radius:var(--radius);
    border:1px solid rgba(91,137,255,.26);
    background:
        radial-gradient(circle at top right,rgba(255,61,110,.13),transparent 38%),
        linear-gradient(180deg,rgba(12,22,44,.84),rgba(6,12,26,.90));
    box-shadow:0 18px 55px rgba(0,0,0,.30);
}

.cs16-product-card p{
    max-width:760px;
    color:var(--soft);
    line-height:1.7;
}

.cs16-product-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}

.cs16-capability-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.cs16-capability-grid div{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    min-height:105px;
    padding:18px;
    border-radius:18px;
    border:1px solid rgba(91,137,255,.24);
    background:rgba(9,17,34,.56);
}

.cs16-capability-grid b{
    color:#fff;
    font-size:16px;
}

.cs16-capability-grid span{
    color:var(--muted);
    font-size:13px;
    font-weight:800;
}

.public-mod-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}

.public-mod-btn{
    min-height:92px;
    padding:15px 16px;
    border-radius:16px;
    border:1px solid rgba(91,137,255,.26);
    background:rgba(6,12,26,.76);
    color:#fff;
    cursor:pointer;
    text-align:left;
    transition:.18s;
}

.public-mod-btn:hover,
.public-mod-btn.active{
    transform:translateY(-2px);
    border-color:var(--pink);
    background:rgba(255,61,110,.12);
    box-shadow:0 0 28px rgba(255,61,110,.18);
}

.public-mod-btn i{
    display:block;
    margin-bottom:9px;
    font-style:normal;
    font-size:22px;
}

.public-mod-btn b{
    display:block;
    color:#fff;
    font-size:15px;
}

.public-mod-btn span{
    display:block;
    margin-top:5px;
    color:var(--muted);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
}

.location-btn.disabled,
.location-btn:disabled{
    opacity:.48;
    cursor:not-allowed;
    filter:grayscale(.35);
}

.location-btn.disabled:hover,
.location-btn:disabled:hover{
    transform:none;
    border-color:rgba(91,137,255,.26);
    box-shadow:none;
    background:rgba(6,12,26,.76);
}

.cycle-btn small{
    display:block;
    margin-top:4px;
    color:var(--muted);
    font-size:10px;
    font-weight:900;
}

.global-site-footer{
    max-width:1280px;
    margin:26px auto 36px;
    padding:0 22px;
}

.footer-main-row{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:24px;
    padding:24px;
    border-radius:24px;
    border:1px solid rgba(91,137,255,.22);
    background:linear-gradient(180deg,rgba(12,22,44,.58),rgba(6,12,26,.74));
    backdrop-filter:blur(8px);
}

.footer-main-row h3,
.footer-main-row h4{
    margin:0 0 12px;
    color:#fff;
}

.footer-main-row p,
.footer-main-row a,
.footer-main-row span{
    display:block;
    margin:8px 0;
    color:var(--muted);
    text-decoration:none;
    line-height:1.55;
}

.footer-main-row a:hover{
    color:#fff;
}

.footer-copyright-card{
    margin-top:14px;
    padding:16px 20px;
    border-radius:18px;
    border:1px solid rgba(47,140,255,.34);
    background:
        radial-gradient(circle at top left,rgba(47,140,255,.14),transparent 38%),
        linear-gradient(180deg,rgba(9,17,34,.78),rgba(5,10,22,.90));
    box-shadow:0 16px 42px rgba(0,0,0,.30),0 0 22px rgba(47,140,255,.10);
    color:#c8d6f6;
    font-size:13px;
    font-weight:900;
    text-align:center;
}

.public-action-modal{
    position:fixed;
    inset:0;
    z-index:150;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(8px);
}

.public-action-modal.show{
    display:flex;
}

.public-action-box{
    width:min(430px,100%);
    padding:30px;
    border-radius:26px;
    border:1px solid rgba(91,137,255,.40);
    background:
        radial-gradient(circle at top right,rgba(47,140,255,.16),transparent 38%),
        linear-gradient(180deg,rgba(11,20,39,.98),rgba(5,10,22,.99));
    box-shadow:0 35px 100px rgba(0,0,0,.62),0 0 45px rgba(47,140,255,.20);
    text-align:center;
}

.public-action-loader{
    width:64px;
    height:64px;
    display:inline-block;
    border-radius:50%;
    border:4px solid rgba(91,137,255,.20);
    border-top-color:var(--blue);
    border-right-color:var(--pink);
    animation:publicSpin .8s linear infinite;
    box-shadow:0 0 28px rgba(47,140,255,.25);
}

@keyframes publicSpin{to{transform:rotate(360deg)}}

.public-action-box h3{
    margin:20px 0 8px;
    color:#fff;
    font-size:24px;
}

.public-action-box p{
    margin:0;
    color:var(--soft);
    line-height:1.55;
}

.public-action-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    margin-top:20px;
}

.public-action-steps span{
    min-height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#7f8ca8;
    font-size:10px;
    font-weight:900;
    text-transform:uppercase;
}

.public-action-steps span.active{
    color:#fff;
    background:rgba(47,140,255,.16);
    border-color:rgba(47,140,255,.38);
}

.btn.loading,
button.loading{
    opacity:.68;
    pointer-events:none;
}

@media(max-width:1000px){
    .site-main-shell{padding:0 16px;margin-top:18px;}
    .hero-section,.cs16-only-section,.order-section{grid-template-columns:1fr;}
    .public-mod-grid{grid-template-columns:1fr 1fr;}
    .footer-main-row{grid-template-columns:1fr;}
}

@media(max-width:760px){
    .public-content-frame{border-radius:20px;}
    .hero-section,.order-hero-section,.contact-hero-section,.public-section,.order-section,.contact-grid-section{padding-left:18px;padding-right:18px;}
    .hero-copy h1,.order-hero-copy h1,.contact-hero-section h1,.auth-card h1{font-size:34px;}
    .section-title h2,.main-game-card h2,.cs16-product-card h2,.large-contact-card h2{font-size:28px;}
    .cs16-capability-grid,.public-mod-grid{grid-template-columns:1fr;}
    .global-site-footer{padding:0 16px;margin-bottom:22px;}
}


/* =========================================================
   PUBLIC FREE TRIAL CARD + SMALL RADIUS SYSTEM
========================================================= */
.free-trial-card{
    position:relative;
    width:min(430px,100%);
    padding:24px;
    border-radius:6px;
    border:1px solid rgba(255,204,51,.38);
    background:
        radial-gradient(circle at top right,rgba(255,204,51,.16),transparent 34%),
        radial-gradient(circle at bottom left,rgba(47,140,255,.13),transparent 40%),
        linear-gradient(180deg,rgba(15,27,52,.94),rgba(6,12,26,.98));
    box-shadow:0 34px 100px rgba(0,0,0,.50),0 0 55px rgba(255,204,51,.12);
    overflow:hidden;
}

.free-trial-card::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:linear-gradient(135deg,rgba(255,255,255,.08),transparent 38%);
    opacity:.55;
}

.free-trial-card > *{
    position:relative;
    z-index:1;
}

.free-trial-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
}

.free-trial-kicker{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 10px;
    border-radius:6px;
    border:1px solid rgba(255,204,51,.42);
    background:rgba(255,204,51,.10);
    color:#ffdd66;
    font-size:11px;
    font-weight:1000;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.free-trial-top i{
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:6px;
    color:#ffdd66;
    background:rgba(255,204,51,.12);
    border:1px solid rgba(255,204,51,.35);
    box-shadow:0 0 22px rgba(255,204,51,.14);
}

.free-trial-card h2{
    margin:0 0 12px;
    color:#fff;
    font-size:28px;
    line-height:1.06;
}

.free-trial-card p{
    margin:0;
    color:var(--soft);
    font-size:15px;
    line-height:1.65;
}

.free-trial-card p b{
    color:#fff;
}

.free-trial-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-top:18px;
}

.free-trial-stat{
    padding:14px;
    border-radius:6px;
    border:1px solid rgba(91,137,255,.22);
    background:rgba(9,17,34,.56);
}

.free-trial-stat span{
    display:block;
    color:var(--muted);
    font-size:10px;
    font-weight:1000;
    text-transform:uppercase;
}

.free-trial-stat b{
    display:block;
    margin-top:7px;
    color:#fff;
    font-size:20px;
}

.free-trial-note{
    display:flex;
    gap:10px;
    margin-top:16px;
    padding:12px;
    border-radius:6px;
    border:1px solid rgba(32,228,138,.34);
    background:rgba(32,228,138,.08);
    color:#bfffe0;
    font-size:12px;
    font-weight:800;
    line-height:1.45;
}

.free-trial-note i{
    color:#7fffc0;
    margin-top:2px;
}

.free-trial-cta{
    width:100%;
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:18px;
    padding:0 16px;
    border-radius:6px;
    border:1px solid rgba(255,204,51,.55);
    background:linear-gradient(135deg,rgba(255,204,51,.92),rgba(255,61,110,.92));
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:1000;
    text-transform:uppercase;
    box-shadow:0 0 24px rgba(255,204,51,.16);
}

.free-trial-cta:hover{
    filter:brightness(1.08);
    transform:translateY(-1px);
}

.public-content-frame{
    border-radius:4px !important;
}

.public-content-frame .feature-card,
.public-content-frame .contact-card,
.public-content-frame .game-stack-card,
.public-content-frame .process-grid div,
.public-content-frame .order-box,
.public-content-frame .order-summary,
.public-content-frame .auth-card,
.public-content-frame .cs16-product-card,
.public-content-frame .cs16-capability-grid div,
.public-content-frame .public-mod-btn,
.public-content-frame .slot-btn,
.public-content-frame .location-btn,
.public-content-frame .cycle-btn,
.public-content-frame .glass-box,
.public-content-frame .order-feature-strip div,
.public-content-frame .hero-trust-row div,
.public-content-frame .free-trial-card,
.public-content-frame .free-trial-stat,
.public-content-frame .free-trial-note,
.public-content-frame .free-trial-cta,
.public-content-frame .contact-status-card,
.public-content-frame .billing-note,
.public-content-frame input,
.public-content-frame select,
.public-content-frame textarea{
    border-radius:6px !important;
}

.footer-main-row,
.footer-copyright-card,
.public-action-box,
.public-modal-box,
.public-modal-close,
.top-message,
.auth-inline-message{
    border-radius:6px !important;
}

@media(max-width:760px){
    .public-content-frame{border-radius:4px !important;}
    .free-trial-grid{grid-template-columns:1fr;}
    .free-trial-card h2{font-size:24px;}
}
