
:root{
  --bg:#050506;
  --bg-soft:#09090b;
  --panel:#0d0d10;
  --panel-2:#121217;
  --gold:#d6a83a;
  --gold-2:#f3d47a;
  --gold-3:#8d6417;
  --text:#f7f4ec;
  --muted:#a7a29a;
  --muted-2:#76716a;
  --line:rgba(255,255,255,.095);
  --line-gold:rgba(214,168,58,.24);
  --shadow:0 28px 80px rgba(0,0,0,.46);
  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
  --gutter:14px;
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{width:100%;max-width:100%;overflow-x:hidden}
html{scroll-behavior:smooth}
body{
  min-height:100vh;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 15% -10%,rgba(214,168,58,.16),transparent 34rem),
    radial-gradient(circle at 90% 0%,rgba(255,255,255,.055),transparent 28rem),
    radial-gradient(circle at 52% 58%,rgba(214,168,58,.055),transparent 40rem),
    linear-gradient(180deg,#050506 0%,#09090b 42%,#050506 100%);
  -webkit-font-smoothing:antialiased;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.65),transparent 78%);
}
body.protected-page{-webkit-user-select:none;user-select:none;-webkit-touch-callout:none}
input,textarea,select,button{font:inherit;user-select:auto;-webkit-user-select:auto;-webkit-touch-callout:auto}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%;-webkit-user-drag:none;user-drag:none}
.container{width:min(1180px,calc(100% - 32px));max-width:1180px;margin-inline:auto;padding-inline:0}
.hidden-field{position:absolute;left:-9999px;opacity:0;height:0;width:0;pointer-events:none}
::selection{background:rgba(214,168,58,.28);color:#fff}

/* Header */
.cgo-final-header{
  position:sticky;
  top:0;
  z-index:6000;
  min-height:86px;
  background:linear-gradient(180deg,rgba(9,9,11,.82),rgba(9,9,11,.62));
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
}
.cgo-final-header::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(214,168,58,.42),transparent);
}
.cgo-final-header-inner{min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:14px}
.cgo-final-brand,.cgo-final-side-brand{display:inline-flex;align-items:center;gap:12px;min-width:0}
.cgo-final-logo,.cgo-final-side-logo{width:64px;height:64px;flex:0 0 64px;display:grid;place-items:center;filter:drop-shadow(0 14px 22px rgba(0,0,0,.42))}
.cgo-final-logo img,.cgo-final-side-logo img{width:100%;height:100%;object-fit:contain}
.cgo-final-brand-text,.cgo-final-side-text{display:grid;gap:3px;line-height:.82;font-family:Oxanium,Inter,sans-serif;overflow:hidden}
.cgo-final-brand-top,.cgo-final-brand-bottom,.cgo-final-side-text span,.cgo-final-side-text strong{
  display:inline-block;
  width:max-content;
  overflow:hidden;
  white-space:nowrap;
  font-family:Oxanium,Inter,sans-serif;
  font-weight:900;
  text-transform:uppercase;
  line-height:.86;
  letter-spacing:.045em;
}
.cgo-final-brand-top,.cgo-final-side-text span{
  color:var(--gold);
  font-size:clamp(22px,3vw,38px);
  text-shadow:0 2px 0 rgba(75,48,8,.95),0 10px 20px rgba(0,0,0,.32);
}
.cgo-final-brand-bottom,.cgo-final-side-text strong{
  color:#fff;
  margin-top:4px;
  font-size:clamp(29px,4vw,50px);
  text-shadow:0 2px 0 rgba(70,70,70,.92),0 10px 22px rgba(0,0,0,.34);
}
.cgo-final-header .cgo-final-brand-top,.cgo-final-header .cgo-final-brand-bottom{max-width:0}
.cgo-final-header .cgo-final-brand-top{animation:typeTop 5.8s steps(9,end) infinite}
.cgo-final-header .cgo-final-brand-bottom{animation:typeBottom 5.8s steps(6,end) infinite}
.cgo-final-header .cgo-final-brand-bottom::after{
  content:"";
  display:inline-block;
  width:3px;height:.78em;
  margin-left:5px;
  vertical-align:-.05em;
  border-radius:999px;
  background:#fff;
  animation:blink .72s steps(1,end) infinite;
}
@keyframes typeTop{0%,6%{max-width:0}24%,80%{max-width:13ch}98%,100%{max-width:0}}
@keyframes typeBottom{0%,24%{max-width:0}42%,60%{max-width:9ch}76%,100%{max-width:0}}
@keyframes blink{0%,48%{opacity:1}49%,100%{opacity:0}}
.cgo-final-menu-btn{
  width:58px;height:58px;flex:0 0 58px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.028)),
    #0d0d10;
  color:#f6f0e6;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  box-shadow:0 16px 34px rgba(0,0,0,.30),inset 0 1px 0 rgba(255,255,255,.08);
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.cgo-final-menu-btn:hover{transform:translateY(-1px);border-color:rgba(214,168,58,.36)}
.cgo-final-menu-btn span{width:24px;height:2px;border-radius:99px;background:currentColor}

/* Sidebar */
.cgo-final-overlay{
  position:fixed;
  inset:0;
  z-index:6000;
  background:rgba(0,0,0,.52);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  opacity:0;
  visibility:hidden;
  transition:.22s ease;
}
.cgo-final-overlay.is-open{opacity:1;visibility:visible}
.cgo-final-sidebar{
  position:fixed;
  top:22px;
  right:-430px;
  width:min(410px,calc(100% - 22px));
  height:auto;
  max-height:calc(100vh - 150px);
  z-index:6001;
  border-radius:26px;
  background:
    radial-gradient(circle at 18% 0%,rgba(214,168,58,.18),transparent 18rem),
    linear-gradient(180deg,rgba(18,18,23,.96),rgba(8,8,10,.95));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 34px 96px rgba(0,0,0,.56),inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  overflow:auto;
  padding-bottom:14px;
  transition:right .34s cubic-bezier(.22,1,.36,1);
}
.cgo-final-sidebar.is-open{right:10px}
.cgo-final-sidebar::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:26px;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.08),transparent 38%);
}
.cgo-final-sidebar>*{position:relative;z-index:1}
.cgo-final-close{
  position:absolute;
  top:16px;right:16px;z-index:3;
  min-width:78px;height:38px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  color:#fff;
  font-size:11px;
  font-weight:950;
  letter-spacing:.14em;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.10);
}
.cgo-final-side-head{padding:16px 112px 14px 18px;border-bottom:1px solid rgba(255,255,255,.08)}
.cgo-final-side-logo{width:40px;height:40px;flex-basis:40px}
.cgo-final-side-text span{font-size:12px}
.cgo-final-side-text strong{font-size:15px}
.cgo-final-side-body{padding:10px 14px 2px}
.cgo-final-menu{list-style:none;display:grid;gap:8px}
.cgo-final-menu a{
  min-height:48px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 13px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.085);
  color:#f6f0e6;
  font-size:13px;
  font-weight:850;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.055);
  transition:transform .16s ease,border-color .16s ease,background .16s ease;
}
.cgo-final-menu a:hover{
  transform:translateX(2px);
  border-color:rgba(214,168,58,.34);
  background:linear-gradient(180deg,rgba(214,168,58,.12),rgba(255,255,255,.035));
}
.cgo-final-menu a i{
  width:31px;height:31px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:linear-gradient(135deg,rgba(214,168,58,.94),rgba(141,100,23,.92));
  color:#0b0b0d;
  flex:0 0 auto;
  font-size:13px;
}
.cgo-final-menu a span{min-width:0}
.cgo-final-account{
  margin:0 0 10px;
  padding:12px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.065);
}
.cgo-final-account-top{display:flex;align-items:center;gap:9px;margin-bottom:10px}
.cgo-final-account-icon{
  width:38px;height:38px;
  border-radius:13px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  color:#0b0b0d;
}
.cgo-final-account-name{display:block;color:#fff;font-size:14px;font-weight:900;line-height:1.15;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.cgo-final-account-role{display:inline-flex;min-height:22px;padding:0 9px;border-radius:999px;color:#0c0c0e;background:linear-gradient(135deg,#f3d47a,#d6a83a);font-size:11px;font-weight:950}
.cgo-final-account-balance{
  min-height:40px;
  padding:0 10px;
  border-radius:14px;
  margin-bottom:9px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.075);
  color:var(--muted);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}
.cgo-final-account-balance strong{color:#fff;font-size:16px}
.cgo-final-account-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}
.cgo-final-account-actions a{min-height:36px;border-radius:12px;display:flex;align-items:center;justify-content:center;gap:5px;font-size:11px;font-weight:900}
.cgo-final-account-actions a:first-child{background:linear-gradient(135deg,var(--gold-2),var(--gold));color:#0b0b0d}
.cgo-final-account-actions a:last-child{background:linear-gradient(135deg,#ef4444,#b91c1c);color:#fff}
.cgo-final-sidebar-open{overflow:hidden!important}

/* Request card */
.page-section{padding:clamp(24px,4vw,46px) 0 34px}
.page-card{
  width:min(820px,100%);
  margin-inline:auto;
  border-radius:var(--radius-xl);
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%,rgba(214,168,58,.16),transparent 22rem),
    linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.022)),
    var(--panel);
  box-shadow:var(--shadow),inset 0 1px 0 rgba(255,255,255,.075);
  overflow:hidden;
}
.page-head{
  display:flex;
  align-items:center;
  gap:14px;
  padding:24px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.048),rgba(255,255,255,.018));
}
.page-icon{
  width:52px;height:52px;
  border-radius:17px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  color:#0b0b0d;
  font-size:21px;
  flex:0 0 auto;
  box-shadow:0 16px 32px rgba(214,168,58,.14),inset 0 1px 0 rgba(255,255,255,.42);
}
.page-head h1{
  font-family:Oxanium,Inter,sans-serif;
  font-size:clamp(24px,4vw,34px);
  font-weight:950;
  line-height:1.1;
  letter-spacing:-.02em;
  color:#fff;
}
.page-head span{display:block;margin-top:6px;color:var(--muted);font-size:13px;font-weight:700}
.page-body{padding:24px}
.alert{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:13px 14px;
  border-radius:16px;
  margin-bottom:18px;
  font-size:13px;
  line-height:1.55;
  font-weight:800;
}
.alert-success{background:rgba(34,197,94,.10);border:1px solid rgba(34,197,94,.26);color:#bbf7d0}
.alert-danger{background:rgba(239,68,68,.10);border:1px solid rgba(239,68,68,.28);color:#fecaca}
.form-group{margin-bottom:16px}
.form-label{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:9px;
  color:rgba(247,244,236,.74);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.form-label i{color:var(--gold-2)}
.form-input,.form-textarea{
  width:100%;
  border-radius:17px;
  border:1px solid rgba(255,255,255,.095);
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  color:#fff;
  padding:15px 16px;
  font:700 14px/1.5 Inter,sans-serif;
  outline:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.045);
  transition:border-color .16s ease,box-shadow .16s ease,background .16s ease;
}
.form-input:focus,.form-textarea:focus{
  border-color:rgba(214,168,58,.55);
  box-shadow:0 0 0 4px rgba(214,168,58,.09),inset 0 1px 0 rgba(255,255,255,.065);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
}
.form-input::placeholder,.form-textarea::placeholder{color:rgba(247,244,236,.36)}
.form-textarea{min-height:142px;resize:vertical}
.btn-submit{
  width:100%;
  min-height:56px;
  border:0;
  border-radius:18px;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  color:#0b0b0d;
  font-weight:950;
  font-size:15px;
  letter-spacing:.035em;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  box-shadow:0 18px 38px rgba(214,168,58,.16),inset 0 1px 0 rgba(255,255,255,.42);
  transition:transform .16s ease,filter .16s ease;
}
.btn-submit:hover{transform:translateY(-1px);filter:saturate(1.05)}
.btn-submit:active{transform:translateY(0) scale(.995)}

/* Showcase */
.testimoni-showcase-section{padding:6px 0 42px}
.testimoni-showcase-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:22px;width:100%;max-width:100%;margin:0 auto;padding:0}
.testimoni-showcase-card{
  width:100%;
  padding:1px;
  border-radius:var(--radius-xl);
  background:linear-gradient(135deg,rgba(255,255,255,.12),rgba(214,168,58,.22),rgba(255,255,255,.045));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.testimoni-showcase-box{
  width:100%;
  padding:clamp(18px,3vw,28px);
  border-radius:calc(var(--radius-xl) - 1px);
  background:
    radial-gradient(circle at 12% 0%,rgba(214,168,58,.13),transparent 18rem),
    linear-gradient(180deg,rgba(18,18,23,.96),rgba(9,9,11,.94));
  border:1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.testimoni-showcase-title{
  margin:0 0 16px;
  font:900 clamp(24px,3.2vw,34px)/1.08 Inter,system-ui,sans-serif;
  letter-spacing:-.035em;
  color:#fff;
}
.testimoni-showcase-title::after{
  content:"";
  display:block;
  width:52px;
  height:2px;
  margin-top:10px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--gold-2),transparent);
}
.testimoni-games-window{width:100%;overflow:hidden;border-radius:22px}
.testimoni-games-track{display:flex;width:max-content;gap:14px;align-items:stretch;will-change:transform;animation:gamesMarquee 34s linear infinite}
.testimoni-payment-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;width:100%;align-items:stretch}
.testimoni-showcase-item{
  min-width:0;
  min-height:210px;
  padding:18px 10px 16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.075);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.055);
}
.testimoni-games-track .testimoni-showcase-item{width:calc((min(1180px,100vw - 32px) - 42px)/4);flex:0 0 calc((min(1180px,100vw - 32px) - 42px)/4)}
.testimoni-showcase-logo{
  width:78px;height:78px;
  border-radius:20px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.07);
  flex:0 0 78px;
}
.testimoni-showcase-logo img{width:58px;height:58px;border-radius:17px;object-fit:cover;object-position:center}
.testimoni-showcase-item.game .testimoni-showcase-logo img{width:100%;height:100%;border-radius:20px;object-fit:cover}
.testimoni-showcase-item.payment .testimoni-showcase-logo img{object-fit:contain;border-radius:12px}
.testimoni-showcase-name{
  width:100%;
  min-height:48px;
  margin-top:14px;
  color:#fff;
  font:900 12px/1.22 Inter,system-ui,sans-serif;
  letter-spacing:.025em;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.testimoni-showcase-tag{
  margin-top:auto;
  color:var(--gold-2);
  font:900 10px/1 Inter,system-ui,sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
}
@keyframes gamesMarquee{from{transform:translateX(0)}to{transform:translateX(calc(-50% - 7px))}}

/* Footer + help */
.site-footer{border-top:0;background:transparent;padding:18px 0 118px;color:var(--muted)}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:70px;
  padding:17px 18px;
  border-radius:20px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  color:var(--muted);
  font-size:14px;
  font-weight:850;
  letter-spacing:.01em;
  text-align:center;
}
.help-fab{
  position:fixed;
  right:18px;bottom:18px;
  z-index:70;
  width:64px;height:64px;
  border:0;
  border-radius:20px;
  background:linear-gradient(135deg,var(--gold-2),var(--gold));
  color:#0b0b0d;
  font-size:25px;
  box-shadow:0 20px 44px rgba(214,168,58,.18),inset 0 1px 0 rgba(255,255,255,.44);
  cursor:pointer;
}
.help-pop{
  position:fixed;
  right:18px;bottom:92px;
  z-index:70;
  width:min(310px,calc(100% - 36px));
  display:none;
  border-radius:22px;
  background:linear-gradient(180deg,rgba(18,18,23,.98),rgba(8,8,10,.98));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:16px;
}
.help-pop.show{display:block}
.help-pop h3{font-size:16px;margin-bottom:8px}
.help-pop p{color:var(--muted);font-size:12px;line-height:1.55;margin-bottom:12px}
.help-actions{display:grid;gap:9px}
.help-actions a{min-height:44px;border-radius:14px;display:flex;align-items:center;justify-content:center;gap:9px;font-weight:900}
.help-actions .wa{background:#16a34a;color:#fff}
.help-actions .tg{background:#229ed9;color:#fff}
.security-toast{
  position:fixed;
  left:50%;
  bottom:96px;
  z-index:99999;
  transform:translate(-50%,18px);
  width:min(92vw,380px);
  padding:13px 15px;
  border-radius:18px;
  background:rgba(9,10,13,.94);
  border:1px solid rgba(214,168,58,.34);
  color:#f8f5ea;
  box-shadow:0 18px 44px rgba(0,0,0,.34);
  font-size:12px;
  font-weight:900;
  text-align:center;
  opacity:0;
  pointer-events:none;
  transition:.18s;
}
.security-toast.show{opacity:1;transform:translate(-50%,0)}

@media(max-width:760px){
  :root{--gutter:14px}
  body{background:linear-gradient(180deg,#050506 0%,#09090b 48%,#050506 100%)}
  body::before{opacity:.44}
  .container,main>section .container,.site-footer>.container{
    width:calc(100% - (var(--gutter)*2));
    max-width:calc(100% - (var(--gutter)*2));
    margin-left:var(--gutter);
    margin-right:var(--gutter);
  }
  .cgo-final-header{backdrop-filter:none;-webkit-backdrop-filter:none}
  .cgo-final-header,.cgo-final-header-inner{min-height:76px}
  .cgo-final-header-inner{gap:8px}
  .cgo-final-logo{width:54px;height:54px;flex-basis:54px}
  .cgo-final-brand-top{font-size:clamp(15px,5vw,22px)}
  .cgo-final-brand-bottom{font-size:clamp(19px,6.8vw,28px)}
  .cgo-final-menu-btn{width:56px;height:56px;flex-basis:56px}
  .cgo-final-sidebar{top:20px;max-height:calc(100vh - 170px);border-radius:24px;backdrop-filter:none;-webkit-backdrop-filter:none}
  .cgo-final-close{top:14px;right:14px;min-width:74px;height:36px}
  .cgo-final-side-head{padding:15px 104px 13px 16px}
  .page-section{padding:22px 0 28px}
  .page-card,.testimoni-showcase-card,.testimoni-showcase-box,.footer-row{border-radius:24px}
  .page-head{padding:18px 16px;gap:12px}
  .page-icon{width:50px;height:50px;flex-basis:50px}
  .page-head h1{font-size:clamp(24px,8vw,32px)}
  .page-body{padding:18px 16px}
  .form-input,.form-textarea{border-radius:16px;padding:14px 15px}
  .btn-submit{min-height:54px;border-radius:17px}
  .testimoni-showcase-section{padding:0 0 38px}
  .testimoni-showcase-grid{gap:16px}
  .testimoni-showcase-card{padding:1px}
  .testimoni-showcase-box{padding:14px}
  .testimoni-showcase-title{margin-bottom:14px}
  .testimoni-games-track,.testimoni-payment-grid{gap:10px}
  .testimoni-games-track .testimoni-showcase-item{
    width:calc((100vw - (var(--gutter)*2) - 2px - 28px - 30px)/4);
    flex-basis:calc((100vw - (var(--gutter)*2) - 2px - 28px - 30px)/4);
  }
  .testimoni-payment-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .testimoni-showcase-item{min-height:142px;padding:13px 6px 11px;border-radius:20px}
  .testimoni-showcase-logo{width:56px;height:56px;border-radius:15px;flex-basis:56px}
  .testimoni-showcase-logo img{width:44px;height:44px;border-radius:12px}
  .testimoni-showcase-item.game .testimoni-showcase-logo img{border-radius:15px}
  .testimoni-showcase-name{min-height:42px;margin-top:10px;font-size:9.5px;letter-spacing:.01em;line-height:1.18}
  .testimoni-showcase-tag{font-size:8px;letter-spacing:.10em}
  .site-footer{padding:8px 0 116px}
  .footer-row{padding:16px 12px;min-height:68px;font-size:14px;line-height:1.25}
  .help-fab{right:var(--gutter);bottom:18px;width:60px;height:60px;border-radius:18px}
  .help-pop{right:var(--gutter);bottom:88px;width:calc(100% - (var(--gutter)*2))}
}
@media(max-width:390px){
  :root{--gutter:12px}
  .testimoni-showcase-box{padding:12px}
  .testimoni-games-track,.testimoni-payment-grid{gap:8px}
  .testimoni-games-track .testimoni-showcase-item{
    width:calc((100vw - (var(--gutter)*2) - 2px - 24px - 24px)/4);
    flex-basis:calc((100vw - (var(--gutter)*2) - 2px - 24px - 24px)/4);
  }
  .testimoni-showcase-item{min-height:136px;padding-left:5px;padding-right:5px}
  .testimoni-showcase-logo{width:52px;height:52px;flex-basis:52px;border-radius:14px}
  .testimoni-showcase-item.game .testimoni-showcase-logo img{border-radius:14px}
  .testimoni-showcase-name{font-size:9px}
}
@media(prefers-reduced-motion:reduce){
  .testimoni-games-track,.cgo-final-header .cgo-final-brand-top,.cgo-final-header .cgo-final-brand-bottom,.cgo-final-header .cgo-final-brand-bottom::after{animation:none!important}
  .cgo-final-header .cgo-final-brand-top,.cgo-final-header .cgo-final-brand-bottom{max-width:max-content!important}
}


:root { --bg: #050506; --bg-soft: #09090b; --panel: #0d0d10; --panel-2: #121217; --gold: #d6a83a; --gold-2: #f3d47a; --gold-3: #8d6417; --text: #f7f4ec; --muted: #a7a29a; --muted-2: #76716a; --line: rgba(255,255,255,.095); --line-gold: rgba(214,168,58,.24); --shadow: 0 28px 80px rgba(0,0,0,.46); --radius-xl: 30px; --radius-lg: 22px; --radius-md: 16px; --gutter: 14px; }
* { box-sizing: border-box; margin: 0px; padding: 0px; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: radial-gradient(circle at 15% -10%, rgba(214, 168, 58, 0.16), transparent 34rem), radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.055), transparent 28rem), radial-gradient(circle at 52% 58%, rgba(214, 168, 58, 0.055), transparent 40rem), linear-gradient(rgb(5, 5, 6) 0%, rgb(9, 9, 11) 42%, rgb(5, 5, 6) 100%); -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0px; z-index: -1; pointer-events: none; background: linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px) 0% 0% / 64px 64px, linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px); mask-image: linear-gradient(rgba(0, 0, 0, 0.65), transparent 78%); }
body.protected-page { user-select: none; }
input, textarea, select, button { font: inherit; user-select: auto; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; -webkit-user-drag: none; }
.container { width: min(1180px, 100% - 32px); max-width: 1180px; margin-inline: auto; padding-inline: 0px; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; height: 0px; width: 0px; pointer-events: none; }
::selection { background: rgba(214, 168, 58, 0.28); color: rgb(255, 255, 255); }
.cgo-final-header { position: sticky; top: 0px; z-index: 6000; min-height: 86px; background: linear-gradient(rgba(9, 9, 11, 0.82), rgba(9, 9, 11, 0.62)); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px) saturate(140%); }
.cgo-final-header::after { content: ""; position: absolute; left: 0px; right: 0px; bottom: 0px; height: 1px; background: linear-gradient(90deg, transparent, rgba(214, 168, 58, 0.42), transparent); }
.cgo-final-header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.cgo-final-brand, .cgo-final-side-brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0px; }
.cgo-final-logo, .cgo-final-side-logo { width: 64px; height: 64px; flex: 0 0 64px; display: grid; place-items: center; filter: drop-shadow(rgba(0, 0, 0, 0.42) 0px 14px 22px); }
.cgo-final-logo img, .cgo-final-side-logo img { width: 100%; height: 100%; object-fit: contain; }
.cgo-final-brand-text, .cgo-final-side-text { display: grid; gap: 3px; line-height: 0.82; font-family: Oxanium, Inter, sans-serif; overflow: hidden; }
.cgo-final-brand-top, .cgo-final-brand-bottom, .cgo-final-side-text span, .cgo-final-side-text strong { display: inline-block; width: max-content; overflow: hidden; white-space: nowrap; font-family: Oxanium, Inter, sans-serif; font-weight: 900; text-transform: uppercase; line-height: 0.86; letter-spacing: 0.045em; }
.cgo-final-brand-top, .cgo-final-side-text span { color: var(--gold); font-size: clamp(22px, 3vw, 38px); text-shadow: rgba(75, 48, 8, 0.95) 0px 2px 0px, rgba(0, 0, 0, 0.32) 0px 10px 20px; }
.cgo-final-brand-bottom, .cgo-final-side-text strong { color: rgb(255, 255, 255); margin-top: 4px; font-size: clamp(29px, 4vw, 50px); text-shadow: rgba(70, 70, 70, 0.92) 0px 2px 0px, rgba(0, 0, 0, 0.34) 0px 10px 22px; }
.cgo-final-header .cgo-final-brand-top, .cgo-final-header .cgo-final-brand-bottom { max-width: 0px; }
.cgo-final-header .cgo-final-brand-top { animation: 5.8s steps(9) 0s infinite normal none running typeTop; }
.cgo-final-header .cgo-final-brand-bottom { animation: 5.8s steps(6) 0s infinite normal none running typeBottom; }
.cgo-final-header .cgo-final-brand-bottom::after { content: ""; display: inline-block; width: 3px; height: 0.78em; margin-left: 5px; vertical-align: -0.05em; border-radius: 999px; background: rgb(255, 255, 255); animation: 0.72s steps(1) 0s infinite normal none running blink; }
@keyframes typeTop { 
  0%, 6% { max-width: 0px; }
  24%, 80% { max-width: 13ch; }
  98%, 100% { max-width: 0px; }
}
@keyframes typeBottom { 
  0%, 24% { max-width: 0px; }
  42%, 60% { max-width: 9ch; }
  76%, 100% { max-width: 0px; }
}
@keyframes blink { 
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}
.cgo-final-menu-btn { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.11); background: linear-gradient(rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.027)), rgb(13, 13, 16); color: rgb(246, 240, 230); display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; box-shadow: rgba(0, 0, 0, 0.3) 0px 16px 34px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset; transition: transform 0.18s, border-color 0.18s, background 0.18s; }
.cgo-final-menu-btn:hover { transform: translateY(-1px); border-color: rgba(214, 168, 58, 0.36); }
.cgo-final-menu-btn span { width: 24px; height: 2px; border-radius: 99px; background: currentcolor; }
.cgo-final-overlay { position: fixed; inset: 0px; z-index: 6000; background: rgba(0, 0, 0, 0.52); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: 0.22s; }
.cgo-final-overlay.is-open { opacity: 1; visibility: visible; }
.cgo-final-sidebar { position: fixed; top: 22px; right: -430px; width: min(410px, 100% - 22px); height: auto; max-height: calc(-150px + 100vh); z-index: 6001; border-radius: 26px; background: radial-gradient(circle at 18% 0%, rgba(214, 168, 58, 0.18), transparent 18rem), linear-gradient(rgba(18, 18, 23, 0.96), rgba(8, 8, 10, 0.95)); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: rgba(0, 0, 0, 0.56) 0px 34px 96px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset; backdrop-filter: blur(16px) saturate(140%); overflow: auto; padding-bottom: 14px; transition: right 0.34s cubic-bezier(0.22, 1, 0.36, 1); }
.cgo-final-sidebar.is-open { right: 10px; }
.cgo-final-sidebar::before { content: ""; position: absolute; inset: 0px; border-radius: 26px; pointer-events: none; background: linear-gradient(rgba(255, 255, 255, 0.08), transparent 38%); }
.cgo-final-sidebar > * { position: relative; z-index: 1; }
.cgo-final-close { position: absolute; top: 16px; right: 16px; z-index: 3; min-width: 78px; height: 38px; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.12); background: linear-gradient(rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)); color: rgb(255, 255, 255); font-size: 11px; font-weight: 950; letter-spacing: 0.14em; cursor: pointer; box-shadow: rgba(0, 0, 0, 0.22) 0px 12px 26px, rgba(255, 255, 255, 0.1) 0px 1px 0px inset; }
.cgo-final-side-head { padding: 16px 112px 14px 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.cgo-final-side-logo { width: 40px; height: 40px; flex-basis: 40px; }
.cgo-final-side-text span { font-size: 12px; }
.cgo-final-side-text strong { font-size: 15px; }
.cgo-final-side-body { padding: 10px 14px 2px; }
.cgo-final-menu { list-style: none; display: grid; gap: 8px; }
.cgo-final-menu a { min-height: 48px; display: flex; align-items: center; gap: 12px; padding: 0px 13px; border-radius: 16px; background: linear-gradient(rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)); border: 1px solid rgba(255, 255, 255, 0.086); color: rgb(246, 240, 230); font-size: 13px; font-weight: 850; box-shadow: rgba(255, 255, 255, 0.055) 0px 1px 0px inset; transition: transform 0.16s, border-color 0.16s, background 0.16s; }
.cgo-final-menu a:hover { transform: translateX(2px); border-color: rgba(214, 168, 58, 0.34); background: linear-gradient(rgba(214, 168, 58, 0.12), rgba(255, 255, 255, 0.035)); }
.cgo-final-menu a i { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 11px; background: linear-gradient(135deg, rgba(214, 168, 58, 0.94), rgba(141, 100, 23, 0.92)); color: rgb(11, 11, 13); flex: 0 0 auto; font-size: 13px; }
.cgo-final-menu a span { min-width: 0px; }
.cgo-final-account { margin: 0px 0px 10px; padding: 12px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.09); background: linear-gradient(rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)); box-shadow: rgba(255, 255, 255, 0.067) 0px 1px 0px inset; }
.cgo-final-account-top { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.cgo-final-account-icon { width: 38px; height: 38px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg,var(--gold-2),var(--gold)); color: rgb(11, 11, 13); }
.cgo-final-account-name { display: block; color: rgb(255, 255, 255); font-size: 14px; font-weight: 900; line-height: 1.15; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cgo-final-account-role { display: inline-flex; min-height: 22px; padding: 0px 9px; border-radius: 999px; color: rgb(12, 12, 14); background: linear-gradient(135deg, rgb(243, 212, 122), rgb(214, 168, 58)); font-size: 11px; font-weight: 950; }
.cgo-final-account-balance { min-height: 40px; padding: 0px 10px; border-radius: 14px; margin-bottom: 9px; display: flex; align-items: center; justify-content: space-between; background: rgba(0, 0, 0, 0.22); border: 1px solid rgba(255, 255, 255, 0.075); color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.cgo-final-account-balance strong { color: rgb(255, 255, 255); font-size: 16px; }
.cgo-final-account-actions { display: grid; grid-template-columns: repeat(2, minmax(0px, 1fr)); gap: 7px; }
.cgo-final-account-actions a { min-height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 11px; font-weight: 900; }
.cgo-final-account-actions a:first-child { background: linear-gradient(135deg,var(--gold-2),var(--gold)); color: rgb(11, 11, 13); }
.cgo-final-account-actions a:last-child { background: linear-gradient(135deg, rgb(239, 68, 68), rgb(185, 28, 28)); color: rgb(255, 255, 255); }
.cgo-final-sidebar-open { overflow: hidden !important; }
.page-section { padding: clamp(24px, 4vw, 46px) 0px 34px; }
.page-card { width: min(820px, 100%); margin-inline: auto; border-radius: var(--radius-xl); border: 1px solid var(--line); background: radial-gradient(circle at 18% 0%,rgba(214,168,58,.16),transparent 22rem),
    linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.022)),
    var(--panel); box-shadow: var(--shadow),inset 0 1px 0 rgba(255,255,255,.075); overflow: hidden; }
.page-head { display: flex; align-items: center; gap: 14px; padding: 24px; border-bottom: 1px solid var(--line); background: linear-gradient(rgba(255, 255, 255, 0.047), rgba(255, 255, 255, 0.02)); }
.page-icon { width: 52px; height: 52px; border-radius: 17px; display: grid; place-items: center; background: linear-gradient(135deg,var(--gold-2),var(--gold)); color: rgb(11, 11, 13); font-size: 21px; flex: 0 0 auto; box-shadow: rgba(214, 168, 58, 0.14) 0px 16px 32px, rgba(255, 255, 255, 0.42) 0px 1px 0px inset; }
.page-head h1 { font-family: Oxanium, Inter, sans-serif; font-size: clamp(24px, 4vw, 34px); font-weight: 950; line-height: 1.1; letter-spacing: -0.02em; color: rgb(255, 255, 255); }
.page-head span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.page-body { padding: 24px; }
.alert { display: flex; align-items: flex-start; gap: 10px; padding: 13px 14px; border-radius: 16px; margin-bottom: 18px; font-size: 13px; line-height: 1.55; font-weight: 800; }
.alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.26); color: rgb(187, 247, 208); }
.alert-danger { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.28); color: rgb(254, 202, 202); }
.form-group { margin-bottom: 16px; }
.form-label { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; color: rgba(247, 244, 236, 0.74); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.form-label i { color: var(--gold-2); }
.form-input, .form-textarea { width: 100%; border-radius: 17px; border: 1px solid rgba(255, 255, 255, 0.094); background: linear-gradient(rgba(255, 255, 255, 0.043), rgba(255, 255, 255, 0.02)); color: rgb(255, 255, 255); padding: 15px 16px; font: 700 14px / 1.5 Inter, sans-serif; outline: none; box-shadow: rgba(255, 255, 255, 0.043) 0px 1px 0px inset; transition: border-color 0.16s, box-shadow 0.16s, background 0.16s; }
.form-input:focus, .form-textarea:focus { border-color: rgba(214, 168, 58, 0.55); box-shadow: rgba(214, 168, 58, 0.09) 0px 0px 0px 4px, rgba(255, 255, 255, 0.067) 0px 1px 0px inset; background: linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024)); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(247, 244, 236, 0.36); }
.form-textarea { min-height: 142px; resize: vertical; }
.btn-submit { width: 100%; min-height: 56px; border: 0px; border-radius: 18px; background: linear-gradient(135deg,var(--gold-2),var(--gold)); color: rgb(11, 11, 13); font-weight: 950; font-size: 15px; letter-spacing: 0.035em; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 11px; box-shadow: rgba(214, 168, 58, 0.16) 0px 18px 38px, rgba(255, 255, 255, 0.42) 0px 1px 0px inset; transition: transform 0.16s, filter 0.16s; }
.btn-submit:hover { transform: translateY(-1px); filter: saturate(1.05); }
.btn-submit:active { transform: translateY(0px) scale(0.995); }
.testimoni-showcase-section { padding: 6px 0px 42px; }
.testimoni-showcase-grid { display: grid; grid-template-columns: minmax(0px, 1fr); gap: 22px; width: 100%; max-width: 100%; margin: 0px auto; padding: 0px; }
.testimoni-showcase-card { width: 100%; padding: 1px; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(214, 168, 58, 0.22), rgba(255, 255, 255, 0.043)); box-shadow: var(--shadow); overflow: hidden; }
.testimoni-showcase-box { width: 100%; padding: clamp(18px, 3vw, 28px); border-radius: calc(var(--radius-xl) - 1px); background: radial-gradient(circle at 12% 0%, rgba(214, 168, 58, 0.13), transparent 18rem), linear-gradient(rgba(18, 18, 23, 0.96), rgba(9, 9, 11, 0.94)); border: 1px solid rgba(255, 255, 255, 0.06); overflow: hidden; }
.testimoni-showcase-title { margin: 0px 0px 16px; font: 900 clamp(24px, 3.2vw, 34px) / 1.08 Inter, system-ui, sans-serif; letter-spacing: -0.035em; color: rgb(255, 255, 255); }
.testimoni-showcase-title::after { content: ""; display: block; width: 52px; height: 2px; margin-top: 10px; border-radius: 99px; background: linear-gradient(90deg,var(--gold-2),transparent); }
.testimoni-games-window { width: 100%; overflow: hidden; border-radius: 22px; }
.testimoni-games-track { display: flex; width: max-content; gap: 14px; align-items: stretch; will-change: transform; animation: 34s linear 0s infinite normal none running gamesMarquee; }
.testimoni-payment-grid { display: grid; grid-template-columns: repeat(4, minmax(0px, 1fr)); gap: 14px; width: 100%; align-items: stretch; }
.testimoni-showcase-item { min-width: 0px; min-height: 210px; padding: 18px 10px 16px; border-radius: 22px; border: 1px solid rgba(255, 255, 255, 0.075); background: linear-gradient(rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)); display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; box-shadow: rgba(255, 255, 255, 0.055) 0px 1px 0px inset; }
.testimoni-games-track .testimoni-showcase-item { width: calc(0.25 * (-42px + min(1180px, -32px + 100vw))); flex: 0 0 calc(0.25 * (-42px + min(1180px, -32px + 100vw))); }
.testimoni-showcase-logo { width: 78px; height: 78px; border-radius: 20px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)); border: 1px solid rgba(255, 255, 255, 0.07); flex: 0 0 78px; }
.testimoni-showcase-logo img { width: 58px; height: 58px; border-radius: 17px; object-fit: cover; object-position: center center; }
.testimoni-showcase-item.game .testimoni-showcase-logo img { width: 100%; height: 100%; border-radius: 20px; object-fit: cover; }
.testimoni-showcase-item.payment .testimoni-showcase-logo img { object-fit: contain; border-radius: 12px; }
.testimoni-showcase-name { width: 100%; min-height: 48px; margin-top: 14px; color: rgb(255, 255, 255); font: 900 12px / 1.22 Inter, system-ui, sans-serif; letter-spacing: 0.025em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.testimoni-showcase-tag { margin-top: auto; color: var(--gold-2); font: 900 10px / 1 Inter, system-ui, sans-serif; letter-spacing: 0.12em; text-transform: uppercase; }
@keyframes gamesMarquee { 
  0% { transform: translateX(0px); }
  100% { transform: translateX(calc(-50% - 7px)); }
}
.site-footer { border-top: 0px; background: transparent; padding: 18px 0px 118px; color: var(--muted); }
.footer-row { display: flex; align-items: center; justify-content: center; min-height: 70px; padding: 17px 18px; border-radius: 20px; border: 1px solid var(--line); background: linear-gradient(rgba(255, 255, 255, 0.043), rgba(255, 255, 255, 0.02)); color: var(--muted); font-size: 14px; font-weight: 850; letter-spacing: 0.01em; text-align: center; }
.help-fab { position: fixed; right: 18px; bottom: 18px; z-index: 70; width: 64px; height: 64px; border: 0px; border-radius: 20px; background: linear-gradient(135deg,var(--gold-2),var(--gold)); color: rgb(11, 11, 13); font-size: 25px; box-shadow: rgba(214, 168, 58, 0.18) 0px 20px 44px, rgba(255, 255, 255, 0.44) 0px 1px 0px inset; cursor: pointer; }
.help-pop { position: fixed; right: 18px; bottom: 92px; z-index: 70; width: min(310px, 100% - 36px); display: none; border-radius: 22px; background: linear-gradient(rgba(18, 18, 23, 0.98), rgba(8, 8, 10, 0.98)); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 16px; }
.help-pop.show { display: block; }
.help-pop h3 { font-size: 16px; margin-bottom: 8px; }
.help-pop p { color: var(--muted); font-size: 12px; line-height: 1.55; margin-bottom: 12px; }
.help-actions { display: grid; gap: 9px; }
.help-actions a { min-height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 900; }
.help-actions .wa { background: rgb(22, 163, 74); color: rgb(255, 255, 255); }
.help-actions .tg { background: rgb(34, 158, 217); color: rgb(255, 255, 255); }
.security-toast { position: fixed; left: 50%; bottom: 96px; z-index: 99999; transform: translate(-50%, 18px); width: min(92vw, 380px); padding: 13px 15px; border-radius: 18px; background: rgba(9, 10, 13, 0.94); border: 1px solid rgba(214, 168, 58, 0.34); color: rgb(248, 245, 234); box-shadow: rgba(0, 0, 0, 0.34) 0px 18px 44px; font-size: 12px; font-weight: 900; text-align: center; opacity: 0; pointer-events: none; transition: 0.18s; }
.security-toast.show { opacity: 1; transform: translate(-50%, 0px); }
@media (max-width: 760px) {
  :root { --gutter: 14px; }
  body { background: linear-gradient(rgb(5, 5, 6) 0%, rgb(9, 9, 11) 48%, rgb(5, 5, 6) 100%); }
  body::before { opacity: 0.44; }
  .container, main > section .container, .site-footer > .container { width: calc(100% - (var(--gutter)*2)); max-width: calc(100% - (var(--gutter)*2)); margin-left: var(--gutter); margin-right: var(--gutter); }
  .cgo-final-header { backdrop-filter: none; }
  .cgo-final-header, .cgo-final-header-inner { min-height: 76px; }
  .cgo-final-header-inner { gap: 8px; }
  .cgo-final-logo { width: 54px; height: 54px; flex-basis: 54px; }
  .cgo-final-brand-top { font-size: clamp(15px, 5vw, 22px); }
  .cgo-final-brand-bottom { font-size: clamp(19px, 6.8vw, 28px); }
  .cgo-final-menu-btn { width: 56px; height: 56px; flex-basis: 56px; }
  .cgo-final-sidebar { top: 20px; max-height: calc(-170px + 100vh); border-radius: 24px; backdrop-filter: none; }
  .cgo-final-close { top: 14px; right: 14px; min-width: 74px; height: 36px; }
  .cgo-final-side-head { padding: 15px 104px 13px 16px; }
  .page-section { padding: 22px 0px 28px; }
  .page-card, .testimoni-showcase-card, .testimoni-showcase-box, .footer-row { border-radius: 24px; }
  .page-head { padding: 18px 16px; gap: 12px; }
  .page-icon { width: 50px; height: 50px; flex-basis: 50px; }
  .page-head h1 { font-size: clamp(24px, 8vw, 32px); }
  .page-body { padding: 18px 16px; }
  .form-input, .form-textarea { border-radius: 16px; padding: 14px 15px; }
  .btn-submit { min-height: 54px; border-radius: 17px; }
  .testimoni-showcase-section { padding: 0px 0px 38px; }
  .testimoni-showcase-grid { gap: 16px; }
  .testimoni-showcase-card { padding: 1px; }
  .testimoni-showcase-box { padding: 14px; }
  .testimoni-showcase-title { margin-bottom: 14px; }
  .testimoni-games-track, .testimoni-payment-grid { gap: 10px; }
  .testimoni-games-track .testimoni-showcase-item { width: calc((100vw - (var(--gutter)*2) - 2px - 28px - 30px)/4); flex-basis: calc((100vw - (var(--gutter)*2) - 2px - 28px - 30px)/4); }
  .testimoni-payment-grid { grid-template-columns: repeat(4, minmax(0px, 1fr)); }
  .testimoni-showcase-item { min-height: 142px; padding: 13px 6px 11px; border-radius: 20px; }
  .testimoni-showcase-logo { width: 56px; height: 56px; border-radius: 15px; flex-basis: 56px; }
  .testimoni-showcase-logo img { width: 44px; height: 44px; border-radius: 12px; }
  .testimoni-showcase-item.game .testimoni-showcase-logo img { border-radius: 15px; }
  .testimoni-showcase-name { min-height: 42px; margin-top: 10px; font-size: 9.5px; letter-spacing: 0.01em; line-height: 1.18; }
  .testimoni-showcase-tag { font-size: 8px; letter-spacing: 0.1em; }
  .site-footer { padding: 8px 0px 116px; }
  .footer-row { padding: 16px 12px; min-height: 68px; font-size: 14px; line-height: 1.25; }
  .help-fab { right: var(--gutter); bottom: 18px; width: 60px; height: 60px; border-radius: 18px; }
  .help-pop { right: var(--gutter); bottom: 88px; width: calc(100% - (var(--gutter)*2)); }
}
@media (max-width: 390px) {
  :root { --gutter: 12px; }
  .testimoni-showcase-box { padding: 12px; }
  .testimoni-games-track, .testimoni-payment-grid { gap: 8px; }
  .testimoni-games-track .testimoni-showcase-item { width: calc((100vw - (var(--gutter)*2) - 2px - 24px - 24px)/4); flex-basis: calc((100vw - (var(--gutter)*2) - 2px - 24px - 24px)/4); }
  .testimoni-showcase-item { min-height: 136px; padding-left: 5px; padding-right: 5px; }
  .testimoni-showcase-logo { width: 52px; height: 52px; flex-basis: 52px; border-radius: 14px; }
  .testimoni-showcase-item.game .testimoni-showcase-logo img { border-radius: 14px; }
  .testimoni-showcase-name { font-size: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .testimoni-games-track, .cgo-final-header .cgo-final-brand-top, .cgo-final-header .cgo-final-brand-bottom, .cgo-final-header .cgo-final-brand-bottom::after { animation: auto ease 0s 1 normal none running none !important; }
  .cgo-final-header .cgo-final-brand-top, .cgo-final-header .cgo-final-brand-bottom { max-width: max-content !important; }
}