*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--bg:#020202;
--panel:#090909;
--line:#1a0c0c;
--red:#ff2b2b;
--red2:#c10000;
--text:#ffffff;
}

body{
background:var(--bg);
font-family:Inter,sans-serif;
color:white;
padding:30px;
overflow-x:hidden;
}

.noise{
position:fixed;
inset:0;
background:
repeating-linear-gradient(
90deg,
rgba(255,0,0,.015),
rgba(255,0,0,.015) 1px,
transparent 1px,
transparent 18px
);
pointer-events:none;
}

.topbar{
position:fixed;
top:0;
left:300px;
width:calc(100% - 300px);
height:90px;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 30px;
z-index:40;

background:rgba(5,5,5,0.85);
backdrop-filter:blur(6px);
-webkit-backdrop-filter:blur(6px);

border-bottom:1px solid rgba(255,255,255,0.05);
}

.topbar h1{
font-family:'Bebas Neue';
font-size:58px;
letter-spacing:3px;
color:white;
}

.box{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border:1px solid #250707;
background:#060606;
color:white;
}

.menu{
display:none;
flex-direction:column;
gap:5px;
position:relative;
z-index:110;
cursor:pointer;
}

.menu div{
height:2px;
background:white;
width:24px;
}

.actions{
display:flex;
gap:14px;
align-items:center;
}

.dot{
width:14px;
height:14px;
border-radius:50%;
background:var(--red);
box-shadow:
0 0 8px var(--red),
0 0 18px var(--red);
}

.card{
background:rgba(8,8,8,.95);
border:1px solid #2b0909;
border-radius:20px;
padding:35px;
margin-bottom:25px;
box-shadow:
inset 0 0 0 1px rgba(255,0,0,.04),
0 0 20px rgba(255,0,0,.03);
}

.mini{
color:#888;
font-family:'Bebas Neue';
letter-spacing:4px;
}

.hero h2{
font-family:'Bebas Neue';
font-size:110px;
line-height:.9;
margin:15px 0;
}

.hero p{
color:#777;
font-size:22px;
}

.grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:22px;
}

.stat{
min-height:220px;
display:flex;
flex-direction:column;
justify-content:center;
}

.stat span{
font-family:'Bebas Neue';
letter-spacing:4px;
color:#777;
font-size:22px;
}

.stat h3{
font-family:'Bebas Neue';
font-size:100px;
}

.red{
color:var(--red);
text-shadow:
0 0 10px rgba(255,0,0,.5);
}

small{
font-size:22px;
color:#666;
}

.chart h4{
font-family:'Bebas Neue';
font-size:40px;
letter-spacing:3px;
}

.bars{
height:380px;
display:flex;
align-items:flex-end;
gap:16px;
margin-top:60px;
}

.item{
flex:1;
text-align:center;
}

.bar{
width:100%;
border-radius:8px 8px 0 0;

background:
linear-gradient(
180deg,
#ff3030,
#8d0000
);

box-shadow:
0 0 15px rgba(255,0,0,.25);
}

.xs{height:15px;}
.s{height:35px;}
.m{height:70px;}
.l{height:140px;}
.xl{height:260px;}

.item p{
margin-top:15px;
font-family:'Bebas Neue';
font-size:30px;
}

#sidebar{
position:fixed;
left:0;
top:0;
width:300px;
height:100%;
background:#070707;
border-right:1px solid #1a1a1a;
padding:30px;
z-index:100;
overflow-y:auto;
}

.brand{
display:flex;
align-items:center;
gap:15px;
margin-bottom:35px;
}

.logo-box{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
font-family:'Bebas Neue';
font-size:32px;
background:linear-gradient(
135deg,
#ff4530,
#9b0000
);
}

.brand h2{
font-family:'Bebas Neue';
font-size:42px;
}

nav a{
display:block;
padding:18px 22px;
margin-bottom:10px;
font-family:'Bebas Neue';
font-size:30px;
letter-spacing:2px;
color:#999;
text-decoration:none;
}

nav a.active{
border-left:4px solid #ff2b2b;
background:rgba(255,60,60,.15);
color:#ff6550;
}

nav a:hover{
background:#111;
color:white;
}

.page{
margin-left:300px;
padding:120px 30px 30px;
}

.search{
width:20px;
height:20px;
border:2px solid white;
border-radius:50%;
position:relative;
}

.search:after{
content:"";
position:absolute;
width:8px;
height:2px;
background:white;
right:-5px;
bottom:-2px;
transform:rotate(45deg);
}

#overlay{
display:none;
z-index:90;
}

@media(max-width:850px){

.grid{
grid-template-columns:1fr;
}

.hero h2{
font-size:70px;
}

.topbar h1{
font-size:42px;
}

.bars{
height:280px;
}

}

@media(max-width:900px){

.page{
margin-left:0;
padding:120px 25px 30px;
}

.menu{
display:flex;
}

.topbar{
left:0;
width:100%;
}

#sidebar{
left:-100%;
transition:.35s;
}

#sidebar.open{
left:0;
}

#overlay{
display:block;
position:fixed;
inset:0;
background:rgba(0,0,0,.6);
opacity:0;
pointer-events:none;
transition:.3s;
}

#overlay.show{
opacity:1;
pointer-events:auto;
}
}
.actions{
display:flex;
align-items:center;
}

.dev-mark{
font-family:monospace;
font-size:20px;
letter-spacing:2px;

color:#aaa;

background:rgba(255,255,255,0.02);

padding:8px 14px;
border-radius:10px;

border:1px solid rgba(255,0,0,0.15);

text-shadow:0 0 6px rgba(255,0,0,0.25);

transition:.25s;
}

.dev-mark:hover{
color:#fff;
border-color:rgba(255,0,0,0.4);
box-shadow:0 0 12px rgba(255,0,0,0.15);
}
.success{
color:#00c853;
text-shadow:0 0 10px rgba(0,200,83,0.4);
}

.error{
color:#ff2b2b;
text-shadow:0 0 10px rgba(255,43,43,0.5);
}

a,
button,
.card,
.btn,
.back-btn,
.menu,
nav a,
.box {
  -webkit-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
  outline: none !important;
}

a:focus,
button:focus,
.card:focus,
.btn:focus,
nav a:focus {
  outline: none !important;
  box-shadow: none !important;
}

body,
.topbar,
.card,
nav,
.menu,
.actions,
.box {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
code,
pre {
  -webkit-user-select: text;
  user-select: text;
}
.sidebar-title{
  font-family:'Bebas Neue';
  font-size:18px;
  letter-spacing:3px;
  color:#777;
  margin:20px 0 10px;
}

.sidebar-divider{
  height:1px;
  background:#1a1a1a;
  margin:20px 0;
}

nav a{
display:flex;
align-items:center;
gap:12px;
}
.system-status{
  margin-top:25px;
}

.status-header h2{
  font-family:'Bebas Neue';
  font-size:42px;
  margin-top:5px;
}

.status-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  margin-top:20px;
}

.status-item{
  background:rgba(0,0,0,.4);
  border:1px solid #2b0909;
  padding:15px;
  border-radius:12px;
}

.label{
  display:block;
  font-size:11px;
  color:#777;
  letter-spacing:2px;
}

.value{
  font-family:'Bebas Neue';
  font-size:26px;
  color:#fff;
}

.value.success{
  color:#00c853;
  text-shadow:0 0 10px rgba(0,200,83,.3);
}
.snow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.snow::before,
.snow::after {
  content: "";
  position: absolute;
  inset: -200%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.8), transparent),
    radial-gradient(1.5px 1.5px at 80% 40%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 50% 70%, rgba(255,255,255,.5), transparent);
  background-size: 400px 400px;
  animation: snow 60s linear infinite;
}

.snow::after {
  animation-duration: 120s;
  opacity: .6;
}

@keyframes snow {
  from { transform: translateY(0); }
  to { transform: translateY(50%); }
}
.useful-links h2{
  font-family:'Bebas Neue';
  font-size:60px;
  margin:10px 0 25px;
}

.links-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:15px;
}

.link-item{
  display:flex;
  align-items:center;
  gap:15px;

  padding:18px;
  border-radius:14px;

  background:rgba(0,0,0,.4);
  border:1px solid #2b0909;

  text-decoration:none;
  color:white;

  transition:.25s;
}

.link-item span{
  font-size:32px;
  color:#ff2b2b;
}

.link-item h4{
  font-family:'Bebas Neue';
  font-size:26px;
}

.link-item p{
  font-size:14px;
  color:#777;
}

.link-item:hover{
  transform:translateY(-4px);
  border-color:#ff2b2b;
  box-shadow:0 0 15px rgba(255,0,0,.15);
}
.console-desc{
  margin-top:12px;
  font-size:18px;
  color:#888;
  line-height:1.6;
  max-width:800px;
}

.console-link{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 18px;
  margin-bottom:15px;

  font-family:'Bebas Neue';
  font-size:24px;
  letter-spacing:2px;

  color:#ff2b2b;
  text-decoration:none;

  background:rgba(0,0,0,.5);
  border:1px solid #2b0909;
  border-radius:14px;

  box-shadow:0 0 18px rgba(255,0,0,.12);

  transition:.25s;
}

.console-link:hover{
  transform:translateY(-4px);
  border-color:#ff2b2b;
  box-shadow:0 0 25px rgba(255,0,0,.25);
  color:#fff;
}
.social-card{
display:flex;
align-items:center;
gap:18px;

padding:22px;
border-radius:18px;

background:rgba(0,0,0,.45);

border:1px solid #1f1f1f;

text-decoration:none;
color:#fff;

transition:.25s;
position:relative;
overflow:hidden;
}

.social-card::before{
content:'';
position:absolute;
inset:0;
opacity:0;
transition:.25s;
}

.social-card:hover{
transform:translateY(-6px);
}

.social-card:hover::before{
opacity:1;
}

.social-icon{
min-width:75px;
height:75px;

display:flex;
align-items:center;
justify-content:center;

border-radius:20px;

font-size:38px;
color:#fff;

position:relative;
z-index:2;
}

.social-content{
position:relative;
z-index:2;
}

.social-content h4{
font-family:'Bebas Neue';
font-size:34px;
letter-spacing:1px;
}

.social-content p{
font-size:14px;
color:#999;
margin-top:4px;
}

.social-card.discord{
border-color:rgba(88,101,242,.2);
}

.social-card.discord .social-icon{
background:linear-gradient(135deg,#5865F2,#404EED);
box-shadow:0 0 20px rgba(88,101,242,.35);
}

.social-card.discord::before{
background:linear-gradient(135deg,rgba(88,101,242,.15),transparent);
}

.social-card.whatsapp{
border-color:rgba(37,211,102,.2);
}

.social-card.whatsapp .social-icon{
background:linear-gradient(135deg,#25D366,#128C7E);
box-shadow:0 0 20px rgba(37,211,102,.35);
}

.social-card.whatsapp::before{
background:linear-gradient(135deg,rgba(37,211,102,.15),transparent);
}

.social-card.github{
border-color:rgba(255,255,255,.08);
}

.social-card.github .social-icon{
background:linear-gradient(135deg,#2b2b2b,#111);
box-shadow:0 0 20px rgba(255,255,255,.08);
}

.social-card.github::before{
background:linear-gradient(135deg,rgba(255,255,255,.05),transparent);
}

.social-card.contact .social-icon{
background:linear-gradient(135deg,#ff2b2b,#8d0000);
box-shadow:0 0 20px rgba(255,43,43,.25);
}

.social-card.contact::before{
background:linear-gradient(135deg,rgba(255,43,43,.15),transparent);
}

.social-card.channel .social-icon{
background:linear-gradient(135deg,#ff9500,#ff5e00);
box-shadow:0 0 20px rgba(255,149,0,.25);
}

.social-card.channel::before{
background:linear-gradient(135deg,rgba(255,149,0,.15),transparent);
}
.partner-dock{
position:fixed;
left:0;
bottom:0;
width:100%;
height:92px;
overflow:hidden;
z-index:99999;

background:
linear-gradient(
180deg,
rgba(5,5,5,.35),
rgba(5,5,5,.97)
);

backdrop-filter:blur(22px);
-webkit-backdrop-filter:blur(22px);

border-top:
1px solid rgba(255,0,0,.08);

box-shadow:
0 -10px 40px rgba(255,0,0,.06);
}

.partner-fade{
position:absolute;
top:0;
width:90px;
height:100%;
z-index:4;
pointer-events:none;
}

.partner-fade.left{
left:0;

background:
linear-gradient(
90deg,
#020202,
transparent
);
}

.partner-fade.right{
right:0;

background:
linear-gradient(
270deg,
#020202,
transparent
);
}

.partner-wrapper{
height:100%;
display:flex;
align-items:center;
overflow:hidden;
}

.partner-track{
display:flex;
align-items:center;
gap:14px;
padding-inline:18px;
width:max-content;
will-change:transform;
}

.partner-card{
position:relative;

display:flex;
align-items:center;
gap:14px;

min-width:300px;
height:62px;

padding:0 16px;

border-radius:20px;

overflow:hidden;
text-decoration:none;
color:#fff;

background:
linear-gradient(
135deg,
rgba(255,255,255,.025),
rgba(255,255,255,.01)
);

border:
1px solid rgba(255,0,0,.08);

transition:
transform .25s ease,
border-color .25s ease,
background .25s ease;
}

.partner-card:hover{
transform:translateY(-3px);

border-color:
rgba(255,43,43,.2);

background:
linear-gradient(
135deg,
rgba(255,255,255,.04),
rgba(255,255,255,.015)
);
}

.partner-card::before{
content:'';
position:absolute;
top:0;
left:-140%;

width:80px;
height:100%;

transform:skewX(-20deg);

background:
linear-gradient(
90deg,
transparent,
rgba(255,255,255,.05),
transparent
);

transition:.8s;
}

.partner-card:hover::before{
left:140%;
}

.partner-icon{
width:46px;
height:46px;

display:flex;
align-items:center;
justify-content:center;

border-radius:16px;

font-size:20px;
flex-shrink:0;
}

.yuta .partner-icon{
background:
linear-gradient(
135deg,
rgba(255,43,43,.18),
rgba(255,43,43,.08)
);

color:#ff4545;

box-shadow:
0 0 18px rgba(255,43,43,.12);
}

.tokito .partner-icon{
background:
linear-gradient(
135deg,
rgba(110,84,255,.18),
rgba(110,84,255,.08)
);

color:#8d82ff;

box-shadow:
0 0 18px rgba(110,84,255,.12);
}

.hutao .partner-icon{
background:
linear-gradient(
135deg,
rgba(255,255,255,.08),
rgba(255,255,255,.03)
);

color:#fff;
}

.partner-content{
display:flex;
flex-direction:column;
}

.partner-content h4{
font-family:'Bebas Neue';
font-size:25px;
line-height:1;
letter-spacing:1px;
}

.partner-content p{
font-size:11px;
color:#777;
margin-top:3px;
}

.partner-tag{
width:fit-content;

padding:3px 8px;
margin-bottom:4px;

border-radius:999px;

font-size:9px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;

background:
rgba(255,255,255,.04);

color:#9a9a9a;
}

.partner-tag.official{
background:
rgba(255,43,43,.12);

color:#ff6b6b;
}

@media(max-width:768px){

.partner-dock{
height:84px;
}

.partner-track{
gap:12px;
padding-inline:14px;
}

.partner-card{
min-width:270px;
height:56px;
padding:0 14px;
border-radius:18px;
}

.partner-icon{
width:40px;
height:40px;
font-size:18px;
}

.partner-content h4{
font-size:22px;
}

.partner-content p{
font-size:10px;
}

.partner-fade{
width:50px;
}
}



/* Yuta PWA inline install card */
.yuta-app-install-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 43, 43, .18);
  border-left: 3px solid rgba(255, 43, 43, .72);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 43, 43, .16), transparent 34%),
    radial-gradient(circle at 95% 20%, rgba(255, 255, 255, .045), transparent 24%),
    linear-gradient(135deg, rgba(10, 10, 10, .98), rgba(4, 4, 4, .98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .025),
    0 0 18px rgba(255, 43, 43, .05);
}

.yuta-app-install-card[hidden] {
  display: none !important;
}

.yuta-app-glow {
  position: absolute;
  right: -54px;
  top: -76px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(255, 43, 43, .13);
  filter: blur(28px);
  pointer-events: none;
}

.yuta-app-install-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.045), transparent 20%, transparent 80%, rgba(255,255,255,.025)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.018), rgba(255,255,255,.018) 1px, transparent 1px, transparent 22px);
  opacity: .55;
}

.yuta-app-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  flex: 1 1 auto;
}

.yuta-app-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 16px;
  padding: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .02)),
    rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 43, 43, .22);
  box-shadow:
    0 0 16px rgba(255, 43, 43, .16),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.yuta-app-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.yuta-app-copy {
  min-width: 0;
}

.yuta-app-copy .mini {
  display: block;
  color: rgba(255, 101, 80, .92);
  font-size: 13px;
  letter-spacing: 3px;
  line-height: 1;
}

.yuta-app-copy h2 {
  font-family: 'Bebas Neue';
  font-size: 38px;
  line-height: .92;
  margin: 5px 0 3px;
  letter-spacing: 1.2px;
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 43, 43, .14);
}

.yuta-app-copy p {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.35;
}

.yuta-app-button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 86, 72, .38);
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 83, 70, .96), rgba(154, 0, 0, .96));
  box-shadow:
    0 8px 22px rgba(255, 43, 43, .14),
    inset 0 1px 0 rgba(255, 255, 255, .17);
  font: 900 12px Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.yuta-app-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow:
    0 10px 26px rgba(255, 43, 43, .20),
    inset 0 1px 0 rgba(255, 255, 255, .20);
}

.yuta-app-button:active {
  transform: scale(.98);
}

.yuta-app-button .material-symbols-rounded {
  font-size: 17px;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24;
}

#pwaInstallModal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#pwaInstallModal.is-open {
  display: flex;
}

.pwa-modal-card {
  width: min(500px, 100%);
  border: 1px solid rgba(255, 43, 43, .24);
  border-radius: 22px;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 43, 43, .18), transparent 34%),
    linear-gradient(145deg, rgba(7, 7, 7, .98), rgba(12, 3, 3, .98));
  color: #fff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .66), 0 0 32px rgba(255, 43, 43, .12);
  font-family: Inter, Arial, sans-serif;
}

.pwa-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pwa-modal-head img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(255, 43, 43, .16);
}

.pwa-modal-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
}

.pwa-modal-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.45;
}

.pwa-modal-card ol {
  margin: 10px 0 16px;
  padding-left: 20px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1.55;
}

.pwa-modal-actions {
  display: flex;
  gap: 10px;
}

.pwa-modal-actions button {
  flex: 1;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font: 900 13px Inter, Arial, sans-serif;
  cursor: pointer;
}

.pwa-close-btn {
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

.pwa-try-btn {
  background: linear-gradient(135deg, #ff5648, #a50000);
  color: #fff;
}

@media (max-width: 850px) {
  .yuta-app-install-card {
    padding: 18px;
    gap: 12px;
  }

  .yuta-app-copy h2 {
    font-size: 34px;
  }

  .yuta-app-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }
}

@media (max-width: 430px) {
  .yuta-app-install-card {
    padding: 16px;
    gap: 10px;
    border-radius: 18px;
  }

  .yuta-app-content {
    gap: 11px;
  }

  .yuta-app-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 15px;
  }

  .yuta-app-icon img {
    border-radius: 11px;
  }

  .yuta-app-copy .mini {
    font-size: 11px;
    letter-spacing: 2.4px;
  }

  .yuta-app-copy h2 {
    font-size: 28px;
    margin: 4px 0 0;
  }

  .yuta-app-copy p {
    display: none;
  }

  .yuta-app-button {
    min-height: 36px;
    padding: 0 11px;
    font-size: 10px;
    letter-spacing: .045em;
  }

  .yuta-app-button .material-symbols-rounded {
    font-size: 16px;
  }
}
/* End Yuta PWA inline install card */
