:root{
  --bg:#070715;
  --panel:#111127;
  --panel-2:#171736;
  --ink:#f7f7ff;
  --muted:#b9bad8;
  --soft:#e9e7ff;
  --line:rgba(255,255,255,.13);
  --lime:#d9ff4a;
  --mint:#69f2d2;
  --coral:#ff6b77;
  --violet:#8f7cff;
  --blue:#3bd5ff;
  --shadow:0 24px 80px rgba(0,0,0,.38);
  --radius:28px;
  --rail:280px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(143,124,255,.34), transparent 35%),
    radial-gradient(circle at 18% 26%, rgba(59,213,255,.18), transparent 30%),
    linear-gradient(135deg,#070715 0%,#0b0b22 50%,#070715 100%);
  line-height:1.7;
  min-height:100vh;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.28;
  background-image:linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(to bottom,#000,transparent 88%);
  z-index:-2;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
strong{color:#fff}
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  color:#000;
  padding:10px 14px;
  z-index:50;
  border-radius:10px;
}
.skip-link:focus{left:12px}
.brand-rail{
  position:fixed;
  top:0;
  left:0;
  width:var(--rail);
  height:100vh;
  padding:32px 26px;
  border-right:1px solid var(--line);
  background:linear-gradient(180deg,rgba(10,10,26,.92),rgba(18,18,48,.84));
  backdrop-filter:blur(18px);
  z-index:20;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.rail-logo{
  width:max-content;
  padding:12px;
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.05);
}
.rail-nav{display:grid;gap:12px;margin-top:38px}
.rail-nav a{
  padding:13px 14px;
  color:var(--muted);
  border:1px solid transparent;
  border-radius:16px;
  transition:.25s ease;
}
.rail-nav a:hover,
.rail-nav a.is-active{
  color:#fff;
  background:rgba(255,255,255,.07);
  border-color:var(--line);
  transform:translateX(5px);
}
.rail-note{
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  background:rgba(255,255,255,.05);
}
.rail-note span{
  display:inline-grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--lime);
  color:#101010;
  font-weight:900;
  margin-bottom:10px;
}
.rail-note p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
.mobile-header,.mobile-drawer{display:none}
.site-shell{
  margin-left:var(--rail);
  padding:34px clamp(22px,4vw,56px) 0;
}
.hero-section{
  min-height:760px;
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(360px,.96fr);
  gap:34px;
  align-items:center;
  max-width:var(--max);
  margin:0 auto;
  position:relative;
}
.hero-section::after{
  content:"57";
  position:absolute;
  right:-68px;
  top:20px;
  font-size:260px;
  line-height:1;
  font-weight:900;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.08);
  z-index:-1;
}
.eyebrow,
.section-title span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--lime);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
}
.eyebrow::before,
.section-title span::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:99px;
  background:var(--lime);
  box-shadow:0 0 18px var(--lime);
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(46px,7.2vw,96px);
  line-height:.94;
  letter-spacing:-.075em;
  margin:20px 0 24px;
}
h2{
  font-size:clamp(30px,4vw,56px);
  line-height:1;
  letter-spacing:-.05em;
  margin:10px 0 18px;
}
h3{font-size:24px;line-height:1.15;letter-spacing:-.03em;margin-bottom:12px}
p{color:var(--muted)}
.hero-copy p{font-size:18px;max-width:650px;color:#d9daf0}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:32px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:900;
  transition:.25s ease;
  border:1px solid transparent;
}
.btn-primary{
  color:#111;
  background:linear-gradient(135deg,var(--lime),var(--mint));
  box-shadow:0 16px 42px rgba(217,255,74,.22);
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 22px 58px rgba(217,255,74,.32)}
.btn-ghost{border-color:var(--line);color:#fff;background:rgba(255,255,255,.04)}
.btn-ghost:hover{background:rgba(255,255,255,.08);transform:translateY(-3px)}
.hero-console{
  position:relative;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:
    linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.025)),
    radial-gradient(circle at top right,rgba(217,255,74,.16),transparent 38%);
  box-shadow:var(--shadow);
}
.hero-console::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg,transparent,rgba(217,255,74,.18),transparent);
  transform:translateX(-110%);
  animation:sweep 5.8s infinite;
}
@keyframes sweep{50%,100%{transform:translateX(110%)}}
.console-top{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:8px;
  padding:18px 20px;
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.22);
}
.console-top span{width:12px;height:12px;border-radius:50%;background:var(--coral)}
.console-top span:nth-child(2){background:var(--lime)}
.console-top span:nth-child(3){background:var(--blue)}
.console-top strong{margin-left:auto;color:var(--soft);font-size:13px;letter-spacing:.08em;text-transform:uppercase}
.console-grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--line)}
.console-grid article{background:rgba(14,14,36,.86);padding:28px 22px;min-height:132px;display:flex;flex-direction:column;justify-content:space-between}
.console-grid small{color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.1em}
.console-grid strong{font-size:26px;line-height:1.05;color:#fff}
.scan-card{position:relative;z-index:1;margin:24px;padding:24px;border:1px solid rgba(217,255,74,.22);border-radius:24px;background:rgba(217,255,74,.08);overflow:hidden}
.scan-card p{margin:0;color:#eceefc}
.scan-line{position:absolute;left:0;right:0;top:0;height:2px;background:var(--lime);box-shadow:0 0 24px var(--lime);animation:scan 3.5s ease-in-out infinite}
@keyframes scan{0%{top:0}50%{top:100%}100%{top:0}}
.route-map,.keyword-lab,.bonus-strip,.game-wall,.device-stage,.finance-board,.trust-section,.responsible-box,.faq-section,.final-cta{
  max-width:var(--max);
  margin:0 auto 28px;
}
.route-map{
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.045);
}
.section-title{margin-bottom:26px;max-width:830px}
.section-title.center{text-align:center;margin-left:auto;margin-right:auto}
.section-title.center span{justify-content:center}
.section-title.compact{display:flex;align-items:end;justify-content:space-between;gap:26px;max-width:none}
.section-title.compact h2{max-width:760px}
.section-title p{font-size:17px}
.route-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
.route-grid a{
  display:grid;
  min-height:156px;
  padding:18px;
  border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  transition:.25s ease;
}
.route-grid a:hover{transform:translateY(-6px);border-color:rgba(217,255,74,.5)}
.route-grid b{color:var(--lime);font-size:14px;letter-spacing:.12em}
.route-grid span{align-self:end;font-weight:900;line-height:1.18}
.keyword-lab{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:center;
  padding:36px 0;
}
.keyword-cloud{display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-end}
.keyword-cloud span{
  padding:12px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:#fff;
  font-weight:800;
}
.keyword-cloud span:nth-child(3n){background:rgba(217,255,74,.12);color:var(--lime)}
.keyword-cloud span:nth-child(4n){background:rgba(105,242,210,.12);color:var(--mint)}
.split-panel{
  max-width:var(--max);
  margin:0 auto 28px;
  display:grid;
  grid-template-columns:.38fr .62fr;
  gap:28px;
  align-items:start;
}
.panel-sticky{
  position:sticky;
  top:34px;
  min-height:420px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  background:
    radial-gradient(circle at 30% 20%,rgba(255,107,119,.22),transparent 36%),
    rgba(255,255,255,.045);
}
.panel-number{display:inline-flex;color:#111;background:var(--coral);font-weight:900;border-radius:999px;padding:8px 12px;margin-bottom:24px}
.panel-content{display:grid;gap:18px}
.text-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  background:rgba(255,255,255,.055);
}
.big-card{min-height:330px}
.accent-card{background:linear-gradient(135deg,rgba(143,124,255,.18),rgba(59,213,255,.08))}
.check-list{padding:0;margin:22px 0 0;list-style:none;display:grid;gap:12px}
.check-list li{position:relative;color:#e8e8f8;padding-left:34px}
.check-list li::before{content:"✓";position:absolute;left:0;top:0;width:23px;height:23px;border-radius:50%;display:grid;place-items:center;background:var(--lime);color:#111;font-weight:900;font-size:13px}
.bonus-strip{
  border-radius:36px;
  padding:42px;
  background:
    linear-gradient(130deg,rgba(217,255,74,.12),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
  border:1px solid var(--line);
}
.bonus-layout{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:28px}
.bonus-layout article{
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  background:rgba(7,7,21,.58);
}
.bonus-layout b{display:block;font-size:22px;letter-spacing:-.03em;color:#fff;margin-bottom:10px}
.bonus-layout p{margin:0}
.warning-card{
  margin-top:18px;
  border:1px solid rgba(255,107,119,.32);
  border-radius:22px;
  padding:18px 20px;
  background:rgba(255,107,119,.12);
  color:#fff;
}
.game-wall{padding:34px 0}
.game-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:minmax(210px,auto);gap:16px}
.game-card{
  position:relative;
  overflow:hidden;
  padding:24px;
  border-radius:26px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 85% 0%,rgba(105,242,210,.18),transparent 32%),
    rgba(255,255,255,.052);
}
.game-card::after{
  content:"";
  position:absolute;
  width:140px;
  height:140px;
  right:-70px;
  bottom:-70px;
  border-radius:50%;
  border:24px solid rgba(255,255,255,.045);
}
.game-card.tall{grid-row:span 2;background:radial-gradient(circle at top right,rgba(217,255,74,.16),transparent 35%),rgba(255,255,255,.052)}
.game-card.wide{grid-column:span 2;background:radial-gradient(circle at top right,rgba(255,107,119,.18),transparent 38%),rgba(255,255,255,.052)}
.game-icon{width:50px;height:50px;border-radius:18px;display:grid;place-items:center;background:#fff;color:#111;font-weight:900;font-size:22px;margin-bottom:42px}
.game-card h3{position:relative;z-index:1}
.game-card p{position:relative;z-index:1;margin:0}
.device-stage{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
  padding:46px;
  border-radius:38px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%,rgba(59,213,255,.17),transparent 34%),
    rgba(255,255,255,.045);
}
.device-copy p{font-size:17px}
.mini-table{display:grid;gap:10px;margin-top:24px}
.mini-table div{display:grid;grid-template-columns:120px 1fr;gap:18px;align-items:center;padding:14px 16px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,.04)}
.mini-table b{color:var(--lime)}
.mini-table span{color:var(--muted)}
.phone-mock{display:grid;place-items:center;min-height:480px}
.phone-screen{
  width:min(310px,100%);
  min-height:580px;
  border:12px solid #03030a;
  border-radius:42px;
  padding:28px 22px;
  background:
    linear-gradient(180deg,rgba(217,255,74,.2),transparent 28%),
    linear-gradient(135deg,#18183d,#0b0b1d);
  box-shadow:0 30px 80px rgba(0,0,0,.48);
}
.phone-pill{display:block;width:82px;height:7px;border-radius:99px;background:rgba(255,255,255,.28);margin:0 auto 34px}
.phone-screen h3{font-size:42px;margin-bottom:4px;text-align:center;color:var(--lime)}
.phone-screen p{text-align:center;margin-bottom:34px}
.phone-screen div{height:72px;border-radius:20px;background:rgba(255,255,255,.08);border:1px solid var(--line);margin-bottom:14px}
.phone-screen button{width:100%;border:0;border-radius:999px;background:var(--lime);color:#111;padding:16px;font-weight:900;font-size:16px}
.finance-board{padding:42px 0}
.finance-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.finance-steps article{padding:24px;border-radius:26px;border:1px solid var(--line);background:rgba(255,255,255,.045)}
.finance-steps b{display:grid;place-items:center;width:44px;height:44px;border-radius:50%;background:var(--mint);color:#111;font-weight:900;margin-bottom:32px}
.finance-steps p{margin:0}
.trust-section{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.trust-copy,.trust-list{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.048);
  padding:30px;
}
.trust-list{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.trust-list div{display:flex;align-items:center;gap:12px;padding:16px;border-radius:18px;background:rgba(255,255,255,.05);color:#fff;font-weight:800}
.trust-list span{width:14px;height:14px;border-radius:50%;background:var(--lime);box-shadow:0 0 18px var(--lime);flex:0 0 auto}
.responsible-box{
  padding:34px;
  border-radius:var(--radius);
  border:1px solid rgba(255,107,119,.35);
  background:linear-gradient(135deg,rgba(255,107,119,.16),rgba(143,124,255,.08));
}
.responsible-box p{margin:0;font-size:17px}
.faq-section{padding:34px 0 12px}
.faq-list{display:grid;gap:12px;max-width:920px;margin:0 auto}
.faq-item{border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.045);overflow:hidden}
.faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;gap:18px;background:transparent;color:#fff;border:0;padding:20px 22px;font-size:18px;text-align:left;font-weight:900;cursor:pointer}
.faq-question span{display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.08);transition:.25s ease}
.faq-answer{display:none;padding:0 22px 20px}
.faq-answer p{margin:0}
.faq-item.is-open .faq-answer{display:block}
.faq-item.is-open .faq-question span{background:var(--lime);color:#111;transform:rotate(45deg)}
.final-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:38px;
  border-radius:38px;
  background:linear-gradient(135deg,rgba(217,255,74,.16),rgba(105,242,210,.09));
  border:1px solid rgba(217,255,74,.28);
}
.final-cta p{max-width:720px;margin-bottom:0}
.site-footer{
  margin-left:var(--rail);
  padding:38px clamp(22px,4vw,56px) 120px;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:28px;
  color:var(--muted);
}
.site-footer p{margin:12px 0 0;max-width:440px}
.site-footer nav{display:grid;gap:8px}
.site-footer a{color:#fff;font-weight:800}
.footer-note{justify-self:end;text-align:right}
.float-actions{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:30;
  display:flex;
  gap:10px;
  align-items:center;
}
.float-cta,.back-top{
  border:0;
  cursor:pointer;
  border-radius:999px;
  min-height:48px;
  padding:0 18px;
  display:inline-grid;
  place-items:center;
  font-weight:900;
  box-shadow:0 16px 42px rgba(0,0,0,.36);
}
.float-cta{background:var(--lime);color:#111}
.back-top{width:48px;background:#fff;color:#111;font-size:22px;opacity:0;pointer-events:none;transform:translateY(10px);transition:.25s ease}
.back-top.is-visible{opacity:1;pointer-events:auto;transform:translateY(0)}
@media (max-width:1180px){
  :root{--rail:238px}
  .route-grid{grid-template-columns:repeat(3,1fr)}
  .finance-steps{grid-template-columns:repeat(2,1fr)}
  .game-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:920px){
  .brand-rail{display:none}
  .mobile-header{
    display:flex;
    position:sticky;
    top:0;
    z-index:40;
    align-items:center;
    justify-content:space-between;
    padding:12px 18px;
    border-bottom:1px solid var(--line);
    background:rgba(8,8,22,.88);
    backdrop-filter:blur(14px);
  }
  .menu-toggle{border:1px solid var(--line);border-radius:999px;color:#fff;background:rgba(255,255,255,.06);padding:10px 14px;font-weight:900}
  .mobile-drawer{
    display:none;
    position:fixed;
    inset:65px 16px auto;
    z-index:45;
    padding:14px;
    border:1px solid var(--line);
    border-radius:22px;
    background:#101027;
    box-shadow:var(--shadow);
  }
  .mobile-drawer.is-open{display:grid;gap:8px}
  .mobile-drawer a{padding:12px 14px;border-radius:14px;background:rgba(255,255,255,.05);font-weight:900}
  .site-shell,.site-footer{margin-left:0}
  .site-shell{padding:24px 18px 0}
  .hero-section{grid-template-columns:1fr;min-height:auto;padding:46px 0 10px}
  .hero-section::after{font-size:160px;right:-26px;top:8px}
  .keyword-lab,.split-panel,.device-stage,.trust-section{grid-template-columns:1fr}
  .keyword-cloud{justify-content:flex-start}
  .panel-sticky{position:relative;top:auto;min-height:auto}
  .bonus-layout,.route-grid{grid-template-columns:1fr}
  .section-title.compact{display:block}
  .site-footer{grid-template-columns:1fr;padding-bottom:110px}
  .footer-note{justify-self:start;text-align:left}
}
@media (max-width:620px){
  h1{font-size:44px;letter-spacing:-.06em}
  h2{font-size:34px}
  .hero-copy p,.section-title p,.device-copy p,.responsible-box p{font-size:16px}
  .console-grid,.finance-steps,.trust-list,.game-grid{grid-template-columns:1fr}
  .game-card.wide{grid-column:auto}
  .device-stage,.bonus-strip,.final-cta,.route-map{padding:24px;border-radius:26px}
  .final-cta{display:block}
  .final-cta .btn{margin-top:22px;width:100%}
  .mini-table div{grid-template-columns:1fr;gap:4px}
  .phone-screen{min-height:500px}
  .hero-actions .btn{width:100%}
}

/* === Refinamento solicitado: headings menores, grids alinhados, CTA e logo fit-in === */
h1{
  font-size:clamp(36px,4.8vw,64px);
  line-height:1.04;
  letter-spacing:-.052em;
  max-width:820px;
}
h2{
  font-size:clamp(28px,3.2vw,44px);
  line-height:1.08;
  letter-spacing:-.038em;
}
.hero-section{
  min-height:640px;
  align-items:center;
}
.hero-copy p{font-size:17px;max-width:720px}
.brand-rail{padding:30px 22px}
.rail-logo{
  width:186px;
  max-width:100%;
  padding:10px 14px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.rail-logo img{width:158px;height:auto;max-height:48px;object-fit:contain}
.mobile-logo img{width:142px;height:auto;object-fit:contain}
.route-map{padding:28px 30px 30px}
.route-map .section-title.compact,
.game-wall .section-title.compact{
  display:block;
  max-width:760px;
  margin-bottom:22px;
}
.route-map .section-title.compact h2,
.game-wall .section-title.compact h2{
  max-width:760px;
  margin-top:10px;
}
.route-grid{
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.route-grid a{
  min-height:118px;
  align-content:space-between;
}
.route-grid a span{font-size:16px;line-height:1.15}
.game-wall{padding-top:18px}
.game-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}
.game-card,
.game-card.tall,
.game-card.wide{
  grid-column:auto;
  grid-row:auto;
  min-height:278px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:24px;
}
.game-card h3{font-size:22px;line-height:1.15;margin-top:28px}
.game-card p{font-size:15.5px;line-height:1.62;margin-bottom:0}
.game-icon{width:48px;height:48px;font-size:22px;flex:0 0 auto}
.final-cta .btn{
  flex:0 0 auto;
  min-width:184px;
  white-space:nowrap;
  padding-left:28px;
  padding-right:28px;
}
.float-cta{min-width:126px;padding:0 20px;white-space:nowrap}
.site-footer img{width:164px;height:auto;object-fit:contain}
.site-footer > div:first-child{min-width:0}
@media (max-width:1280px){
  .game-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .game-card,.game-card.tall,.game-card.wide{min-height:250px}
}
@media (max-width:1180px){
  .route-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:920px){
  h1{font-size:clamp(34px,8vw,48px)}
  .hero-section{min-height:auto}
  .game-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .route-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:620px){
  h1{font-size:36px;line-height:1.08;letter-spacing:-.04em}
  h2{font-size:30px;line-height:1.1}
  .route-grid,.game-grid{grid-template-columns:1fr}
  .game-card,.game-card.tall,.game-card.wide{min-height:auto}
  .final-cta .btn{width:100%;min-width:0}
  .float-cta{min-width:auto;padding:0 15px}
}
