@font-face{
  font-family: InterUI;
  src: local("Inter"), local("Arial");
}
:root{
  --bg:#000;
  --panel:#050607;
  --panel2:#0a0b0d;
  --border:rgba(216,171,50,.42);
  --border-soft:rgba(216,171,50,.22);
  --gold:#d8ab32;
  --gold2:#ffc928;
  --green:#00f070;
  --red:#ff3636;
  --blue:#2098ff;
  --purple:#8452ff;
  --text:#f7f7f2;
  --muted:#c9ccd0;
  --muted2:#8e949d;
  --radius:10px;
  --shadow:0 0 28px rgba(216,171,50,.08), inset 0 0 0 1px rgba(255,255,255,.02);
  --max:1320px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:#000}
body{
  margin:0;
  min-height:100vh;
  background:#000;
  color:var(--text);
  font-family:InterUI, Arial, Helvetica, sans-serif;
  overflow-x:hidden;
  letter-spacing:.01em;
}

.page-bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 8% 25%, rgba(216,171,50,.12), transparent 22%),
    radial-gradient(circle at 91% 22%, rgba(216,171,50,.10), transparent 24%),
    radial-gradient(circle at 50% 5%, rgba(216,171,50,.08), transparent 24%),
    linear-gradient(180deg,#020202,#000 45%,#030303);
}
.page-bg::before,
.page-bg::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:.18;
  background-image:
    linear-gradient(rgba(216,171,50,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,171,50,.09) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:radial-gradient(circle at center, black 15%, transparent 85%);
}
.page-bg::after{
  opacity:.22;
  background:
    radial-gradient(circle at 0 18%, transparent 0 14%, rgba(216,171,50,.35) 14.4% 14.8%, transparent 15.2%),
    radial-gradient(circle at 100% 21%, transparent 0 13%, rgba(216,171,50,.35) 13.3% 13.7%, transparent 14.2%);
}

.site-header{
  height:72px;
  max-width:var(--max);
  margin:0 auto;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(216,171,50,.22);
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(12px);
  position:sticky;
  top:0;
  z-index:10;
}
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.brand img{
  width:242px;
  height:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 0 12px rgba(216,171,50,.1));
}
.header-actions{
  display:flex;
  align-items:center;
  gap:20px;
}
.discord-btn{
  display:flex;
  align-items:center;
  gap:8px;
  text-transform:uppercase;
  text-decoration:none;
  color:var(--gold2);
  font-size:13px;
  font-weight:900;
  padding:10px 18px;
  border:1px solid var(--border);
  border-radius:7px;
  background:linear-gradient(180deg,rgba(20,15,4,.75),rgba(0,0,0,.8));
  box-shadow:0 0 20px rgba(216,171,50,.12);
}
.discord-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,201,40,.8);
}
.discord-btn img{width:21px;height:21px}
.lang-switch{
  display:flex;
  gap:14px;
  align-items:center;
}

/* Opera-safe language flags */
.flag-btn{
  width:30px;
  height:20px;
  padding:0;
  border:0;
  border-radius:3px;
  cursor:pointer;
  background:transparent;
  box-shadow:0 0 0 1px rgba(255,255,255,.22);
  opacity:.88;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  -webkit-appearance:none;
  appearance:none;
}
.flag-btn img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  border:0;
  pointer-events:none;
}
.flag-btn.active,
.flag-btn:hover{
  opacity:1;
  box-shadow:0 0 0 2px var(--gold), 0 0 15px rgba(216,171,50,.38);
  transform:translateY(-1px);
}


main{
  max-width:var(--max);
  margin:0 auto;
  padding:22px 28px 0;
}
.section{
  border:1px solid var(--border-soft);
  background:linear-gradient(180deg,rgba(6,7,8,.88),rgba(1,1,1,.96));
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  margin-bottom:16px;
}
.hero{
  display:grid;
  grid-template-columns:430px minmax(0,1fr);
  gap:40px;
  padding:34px 24px 26px;
  min-height:468px;
  border-top:0;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-130px 16% auto;
  height:260px;
  background:radial-gradient(ellipse at center,rgba(216,171,50,.18),transparent 65%);
  pointer-events:none;
}
.hero-copy{position:relative;z-index:1}
.eyebrow{
  display:inline-flex;
  padding:9px 15px;
  margin-bottom:28px;
  border:1px solid rgba(255,201,40,.7);
  border-radius:6px;
  color:var(--gold2);
  background:rgba(12,8,0,.5);
  text-transform:uppercase;
  font-weight:900;
  font-size:13px;
  box-shadow:0 0 16px rgba(216,171,50,.11);
}
h1{
  margin:0;
  font-size:38px;
  line-height:1.22;
  text-transform:uppercase;
  letter-spacing:.035em;
  font-weight:1000;
  text-shadow:0 0 14px rgba(255,255,255,.08);
}
.gold{color:var(--gold2)}
.lead{
  max-width:420px;
  margin:26px 0 20px;
  color:#d9dce0;
  line-height:1.72;
  font-size:17px;
}
.hero-capabilities{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
  margin-top:20px;
}
.capability{
  text-align:center;
  text-transform:uppercase;
  font-size:12px;
  line-height:1.4;
  color:#fff;
}
.icon,
.service-icon,
.flow-icon,
.panel-icon{
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  width:66px;
  height:66px;
  border:1px solid rgba(255,201,40,.75);
  border-radius:8px;
  background:rgba(0,0,0,.45);
  color:var(--gold2);
  box-shadow:0 0 18px rgba(216,171,50,.15);
}
.icon::before,
.service-icon::before,
.flow-icon::before,
.panel-icon::before{
  font-size:34px;
  line-height:1;
  font-weight:900;
}
.icon-code::before{content:"</>";font-size:25px}
.icon-bot::before{content:"🤖";filter:saturate(1.4)}
.icon-chart::before{content:"↗";font-size:42px}
.icon-cloud::before{content:"☁";font-size:35px}
.icon-brain::before{content:"⌘";font-size:39px}
.icon-gear::before{content:"⚙";font-size:35px;color:#477cff}
.icon-shield::before{content:"◇";font-size:42px;color:#1cb6ff}

.hero-visual{
  display:grid;
  grid-template-columns:1fr 190px;
  gap:24px;
  align-items:start;
  position:relative;
  min-width:0;
}
.terminal{
  min-height:424px;
  border:1px solid rgba(255,255,255,.16);
  background:#0b0d10;
  border-radius:12px;
  overflow:hidden;
  transform:perspective(900px) rotateY(-4deg) rotateX(1deg);
  box-shadow:0 30px 50px rgba(0,0,0,.65),0 0 40px rgba(216,171,50,.08);
}
.terminal-top{
  height:36px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:0 14px;
  background:#11141a;
  color:#8b929d;
  font-size:12px;
}
.terminal-top span{
  width:9px;height:9px;border-radius:999px;background:#333;
}
.terminal-top b{margin-left:8px;font-weight:600}
.terminal-body{
  display:grid;
  grid-template-columns:104px 1fr;
  height:388px;
  position:relative;
}
.terminal-tree{
  padding:18px 12px;
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:12px;
  color:#76808a;
  border-right:1px solid rgba(255,255,255,.08);
}
pre{
  margin:0;
  padding:20px;
  font-size:13px;
  line-height:1.55;
  color:#e8edf3;
  overflow:hidden;
}
.pink{color:#ff6188}
.orange{color:#f7a44a}
.blue{color:#4fc1ff}
.yellow{color:#ffd866}
.comment{color:#a6e22e}
.mini-chart{
  position:absolute;
  left:116px;
  bottom:18px;
  width:260px;
  height:52px;
  border-left:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.mini-chart::before{
  content:"Performance";
  position:absolute;
  left:0;top:-21px;
  color:#aeb4bc;
  font-size:12px;
}
.mini-chart::after{
  content:"+27.45%";
  position:absolute;
  left:0;top:-5px;
  color:var(--green);
  font-size:12px;
}
.mini-chart i,
.line-chart i{
  position:absolute;
  inset:0;
  clip-path:polygon(0 80%,10% 72%,20% 76%,30% 58%,40% 65%,50% 50%,60% 57%,70% 34%,80% 38%,90% 16%,100% 6%,100% 100%,0 100%);
  background:linear-gradient(180deg,rgba(0,210,255,.55),rgba(0,210,255,0));
}
.metrics{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.metric{
  height:120px;
  padding:18px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:9px;
  background:rgba(7,8,9,.82);
}
.metric small{
  display:block;
  text-transform:uppercase;
  color:#bfc4c9;
  font-size:11px;
  font-weight:900;
}
.metric strong{
  display:block;
  margin:9px 0 3px;
  font-size:25px;
}
.metric.positive strong{color:var(--green)}
.metric.negative strong{color:var(--red)}
.metric span{font-size:12px;color:#8e949a}
.line-chart{
  height:38px;
  position:relative;
  margin-top:9px;
}
.line-chart i{
  display:block;
  background:linear-gradient(180deg,rgba(0,240,112,.6),rgba(0,240,112,0));
}
.line-chart.down i{
  clip-path:polygon(0 10%,12% 28%,25% 21%,35% 38%,48% 35%,60% 50%,72% 44%,84% 68%,100% 73%,100% 100%,0 100%);
  background:linear-gradient(180deg,rgba(255,54,54,.7),rgba(255,54,54,0));
}
.bar-chart{
  height:44px;
  display:flex;
  align-items:end;
  gap:8px;
  margin-top:10px;
}
.bar-chart i{
  flex:1;
  background:linear-gradient(180deg,var(--green),rgba(0,240,112,.36));
  min-height:10px;
}
.bar-chart i:nth-child(1){height:14px}.bar-chart i:nth-child(2){height:23px}.bar-chart i:nth-child(3){height:19px}.bar-chart i:nth-child(4){height:29px}.bar-chart i:nth-child(5){height:34px}.bar-chart i:nth-child(6){height:27px}.bar-chart i:nth-child(7){height:43px}

.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:18px;
}
.section-title span{
  height:1px;
  width:210px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.section-title span:last-child{background:linear-gradient(90deg,var(--gold),transparent)}
.section-title h2{
  margin:0;
  text-transform:uppercase;
  color:#fff;
  font-size:22px;
  letter-spacing:.04em;
}
.architecture{padding:0 16px 24px;border:0;background:transparent;box-shadow:none}
.flow-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:22px;
}
.flow-card{
  min-height:178px;
  padding:18px 13px;
  border:1px solid rgba(216,171,50,.55);
  border-radius:9px;
  background:linear-gradient(180deg,rgba(8,9,10,.94),rgba(0,0,0,.96));
  text-align:center;
  position:relative;
}
.flow-card:not(:last-child)::after{
  content:"→";
  position:absolute;
  right:-20px;
  top:50%;
  transform:translateY(-50%);
  color:var(--gold2);
  font-size:30px;
  font-weight:900;
}
.flow-icon{
  border:0;
  box-shadow:none;
  width:46px;
  height:46px;
  margin-bottom:10px;
  color:var(--gold);
}
.flow-webhook::before{content:"⌘";color:#a34cff}
.flow-brain::before{content:"⌘";color:#ffd12d}
.flow-pie::before{content:"◔";color:#37d75a}
.flow-bolt::before{content:"ϟ";color:#229eff;font-size:44px}
.flow-exchange::before{content:"⇄";color:#18d7ff}
.flow-bell::before{content:"♟";color:#8c54ff}
.flow-card h3,
.service-card h3,
.panel h3{
  margin:0 0 10px;
  color:#fff;
  font-size:15px;
  line-height:1.36;
  text-transform:uppercase;
}
.flow-card p{
  color:#d6d9dd;
  font-size:13px;
  line-height:1.48;
  margin:0;
}
.exchange-logos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5px 8px;
  margin-top:8px;
}
.ex{
  color:#e8ebee;
  font-size:11px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}
.ex i{
  font-style:normal;
  color:var(--gold2);
}
.ex-okx i{color:#fff}.ex-coinex i{color:#00d090}.ex-kucoin i{color:#12d8c8}.ex-phemex i{color:#f5a334}.ex-kraken i{color:#8067ff}
.feedback-line{
  text-align:center;
  color:var(--gold2);
  text-transform:uppercase;
  font-size:14px;
  margin:19px 0 0;
  letter-spacing:.02em;
  position:relative;
}
.feedback-line::before,
.feedback-line::after{
  content:"";
  display:inline-block;
  width:225px;
  height:1px;
  border-top:1px dashed rgba(216,171,50,.5);
  transform:translateY(-4px);
  margin:0 10px;
}

.services{padding:0 12px 18px;border:0;background:transparent;box-shadow:none}
.services-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.service-card{
  padding:16px 14px;
  border:1px solid rgba(216,171,50,.38);
  border-radius:8px;
  background:linear-gradient(180deg,rgba(8,9,10,.94),rgba(0,0,0,.96));
}
.service-card .service-icon{
  width:42px;height:42px;border:0;box-shadow:none;margin:0 0 8px;color:var(--blue);
}
.service-card .service-icon::before{font-size:30px}
.service-card h3{
  font-size:13px;
  margin-bottom:11px;
}
.service-card ul{
  list-style:none;
  margin:0;
  padding:0;
  color:#dce0e4;
  font-size:13px;
  line-height:1.7;
}
.service-card li::before{
  content:"• ";
  color:#fff;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  border:0;
  background:transparent;
  box-shadow:none;
}
.panel{
  padding:18px;
  border:1px solid rgba(216,171,50,.38);
  border-radius:9px;
  background:linear-gradient(180deg,rgba(8,9,10,.92),rgba(0,0,0,.96));
}
.panel h2{
  text-align:center;
  color:#fff;
  margin:0 0 16px;
  text-transform:uppercase;
  font-size:20px;
  letter-spacing:.04em;
}
.panel-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.panel-grid article{text-align:center}
.panel-icon{
  width:52px;
  height:52px;
  border:0;
  box-shadow:none;
  margin-bottom:10px;
  color:#239dff;
  font-size:31px;
  font-weight:900;
}
.hostinger{color:#7249ff}
.clock::before{content:"◷";color:#249dff}
.lock::before{content:"▣";color:#249dff}
.db::before{content:"▱";color:#249dff}
.telegram{color:#27c5ff}
.mail{color:#fff}
.channels::before{content:"✣";color:#15d0bd}
.discord-icon img{width:39px;height:39px}
.panel h3{
  color:var(--gold2);
  font-size:13px;
  margin-bottom:8px;
}
.panel p{
  color:#d7dbe0;
  font-size:12px;
  line-height:1.55;
  margin:0;
}

.stack-section{padding:0 12px 18px;border:0;background:transparent;box-shadow:none}
.stack-grid{
  display:grid;
  grid-template-columns:repeat(11,1fr);
  gap:10px;
}
.stack-grid article{
  min-height:84px;
  border:1px solid rgba(216,171,50,.34);
  border-radius:8px;
  background:linear-gradient(180deg,rgba(8,9,10,.94),rgba(0,0,0,.96));
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
}
.stack-grid b{
  color:var(--gold2);
  font-size:26px;
}
.stack-grid span{
  color:#e7e9ec;
  font-size:13px;
}

.process{
  padding:0 12px 18px;
  border:0;
  background:transparent;
  box-shadow:none;
}
.process-line{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  border:1px solid rgba(216,171,50,.35);
  border-radius:9px;
  background:linear-gradient(180deg,rgba(8,9,10,.86),rgba(0,0,0,.96));
  overflow:hidden;
}
.process-line article{
  text-align:center;
  padding:22px 12px 18px;
  border-right:1px dashed rgba(216,171,50,.38);
}
.process-line article:last-child{border-right:0}
.process-line span{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  margin:-8px auto 8px;
  border:2px solid var(--gold2);
  border-radius:999px;
  color:var(--gold2);
  background:#000;
  font-size:18px;
  font-weight:900;
}
.process-line h3{
  margin:0 0 8px;
  color:var(--gold2);
  font-size:13px;
  text-transform:uppercase;
}
.process-line p{
  color:#d7dbe0;
  font-size:12px;
  line-height:1.45;
  margin:0;
}

.faq{
  padding:0 12px 18px;
  border:0;
  background:transparent;
  box-shadow:none;
}
.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 14px;
}
.faq details{
  border:1px solid rgba(255,255,255,.12);
  border-radius:7px;
  background:rgba(5,6,7,.8);
  padding:11px 14px;
}
.faq summary{
  cursor:pointer;
  color:#dedede;
  font-size:13px;
}
.faq summary::marker{color:var(--gold2)}
.faq p{
  color:#cdd2d7;
  font-size:13px;
  line-height:1.55;
  margin:11px 0 0;
}

.contact{
  text-align:center;
  padding:14px 18px 20px;
  border:0;
  background:transparent;
  box-shadow:none;
}
.contact h2{
  margin:0;
  text-transform:uppercase;
  font-size:28px;
  letter-spacing:.05em;
}
.contact>p{
  margin:7px 0 18px;
  color:#cdd2d8;
  font-size:15px;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  max-width:930px;
  margin:0 auto;
  border:1px solid rgba(216,171,50,.55);
  border-radius:9px;
  overflow:hidden;
  box-shadow:0 0 24px rgba(216,171,50,.12);
}
.contact-card{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:16px;
  text-align:left;
  align-items:center;
  padding:18px 24px;
  color:#fff;
  text-decoration:none;
  background:linear-gradient(180deg,rgba(8,9,10,.94),rgba(0,0,0,.98));
}
.contact-card:first-child{border-right:1px solid rgba(216,171,50,.42)}
.contact-card:hover{background:linear-gradient(180deg,rgba(20,15,4,.98),rgba(0,0,0,.98))}
.contact-icon{
  display:grid;
  place-items:center;
  color:var(--gold2);
  font-size:54px;
}
.contact-icon img{width:62px;height:62px}
.contact-card h3{
  color:#fff;
  margin:0 0 8px;
  text-transform:uppercase;
  font-size:15px;
}
.contact-card p{
  color:#d6d9de;
  margin:0 0 6px;
  font-size:13px;
}
.contact-card strong{
  color:var(--gold2);
  font-size:18px;
}

.site-footer{
  max-width:var(--max);
  margin:0 auto;
  padding:20px 28px 28px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:16px;
  align-items:center;
  border-top:1px solid rgba(216,171,50,.2);
}
.site-footer img{width:190px;display:block}
.site-footer p{
  margin:0;
  color:#b7bbc0;
  text-align:center;
  font-size:14px;
}
.site-footer strong{
  color:var(--gold2);
  text-align:right;
  text-transform:uppercase;
  font-size:14px;
}

@media(max-width:1180px){
  .hero{grid-template-columns:1fr}
  .hero-visual{grid-template-columns:1fr 210px}
  .flow-grid{grid-template-columns:repeat(3,1fr)}
  .flow-card:nth-child(3)::after{display:none}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .stack-grid{grid-template-columns:repeat(6,1fr)}
  .process-line{grid-template-columns:repeat(3,1fr)}
  .process-line article:nth-child(3){border-right:0}
  .process-line article:nth-child(n+4){border-top:1px dashed rgba(216,171,50,.38)}
}
@media(max-width:860px){
  .site-header{height:auto;padding:12px 16px;gap:12px}
  .brand img{width:170px}
  .header-actions{gap:10px}
  .discord-btn{padding:10px 12px}
  .discord-btn span{display:none}
  .flag-btn{width:26px;height:18px}
  main{padding:16px 14px 0}
  .hero{padding:24px 18px}
  h1{font-size:34px}
  .lead{font-size:15px}
  .hero-capabilities{grid-template-columns:repeat(2,1fr)}
  .hero-visual{grid-template-columns:1fr}
  .metrics{display:grid;grid-template-columns:repeat(3,1fr)}
  .flow-grid{grid-template-columns:repeat(2,1fr)}
  .flow-card::after{display:none!important}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .panel-grid{grid-template-columns:repeat(2,1fr)}
  .stack-grid{grid-template-columns:repeat(4,1fr)}
  .process-line{grid-template-columns:repeat(2,1fr)}
  .process-line article:nth-child(2n){border-right:0}
  .faq-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .contact-card:first-child{border-right:0;border-bottom:1px solid rgba(216,171,50,.42)}
  .site-footer{grid-template-columns:1fr;text-align:center}
  .site-footer img{margin:0 auto}
  .site-footer strong{text-align:center}
}
@media(max-width:560px){
  .site-header{align-items:center}
  .brand img{width:135px}
  .header-actions{gap:8px}
  .lang-switch{gap:7px}
  h1{font-size:28px}
  .eyebrow{font-size:12px}
  .hero-capabilities{gap:14px}
  .terminal{display:none}
  .metrics{grid-template-columns:1fr}
  .flow-grid,.services-grid,.panel-grid,.stack-grid,.process-line{grid-template-columns:1fr}
  .flow-card,.service-card{min-height:auto}
  .process-line article{border-right:0!important;border-top:1px dashed rgba(216,171,50,.38)}
  .process-line article:first-child{border-top:0}
  .section-title span{width:42px}
  .section-title h2{font-size:20px}
  .feedback-line::before,.feedback-line::after{display:none}
  .contact h2{font-size:22px}
  .contact-card{grid-template-columns:1fr;text-align:center}
}


/* Opera / Chromium rendering safeguards */
.site-header,
.header-actions,
.lang-switch,
.hero,
.hero-visual,
.flow-grid,
.services-grid,
.panel-grid,
.stack-grid,
.process-line,
.contact-grid{
  min-width:0;
}
img{
  max-width:100%;
}
.terminal,
.metric,
.flow-card,
.service-card,
.panel,
.stack-grid article,
.process-line article,
.contact-card{
  -webkit-transform:translateZ(0);
  transform:translateZ(0);
}
@media(max-width:860px){
  .flag-btn{width:28px;height:19px}
}
@media(max-width:560px){
  .flag-btn{width:25px;height:17px}
}
