:root{
  --wpt-bg:#050b12;
  --wpt-bg2:#081622;
  --wpt-panel:#0f1d2a;
  --wpt-panel2:#132638;
  --wpt-line:rgba(255,255,255,.12);
  --wpt-text:#ffffff;
  --wpt-muted:#b9c8da;
  --wpt-blue:#2196ff;
  --wpt-cyan:#36e3ff;
  --wpt-green:#25d79a;
  --wpt-purple:#6c3cff;
  --wpt-gold:#e0b65e;
  --wpt-shadow:0 30px 90px rgba(0,0,0,.48);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--wpt-text);
  background:var(--wpt-bg);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Microsoft YaHei",Arial,sans-serif;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button{font:inherit}

.wpt-page{
  overflow:hidden;
  background:
    radial-gradient(circle at 16% 6%,rgba(33,150,255,.14),transparent 34%),
    radial-gradient(circle at 82% 10%,rgba(54,227,255,.10),transparent 30%),
    linear-gradient(180deg,#050b12,#07131e 44%,#04080d);
}

.wpt-wrap{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
}

.wpt-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(3,8,13,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.wpt-header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:28px;
}
.wpt-logo{
  min-width:245px;
  display:flex;
  align-items:center;
  gap:14px;
}
.wpt-logo img{
  width:auto;
  height:28px;
  max-width:110px;
  object-fit:contain;
}
.wpt-logo b{
  display:block;
  font-size:22px;
  line-height:1;
}
.wpt-logo small{
  display:block;
  color:var(--wpt-cyan);
  margin-top:6px;
  font-size:12px;
  letter-spacing:2px;
}
.wpt-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:24px;
  color:#e8f2ff;
  font-size:14px;
}
.wpt-nav a{
  position:relative;
  padding:27px 0 25px;
}
.wpt-nav a:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:16px;
  height:3px;
  border-radius:10px;
  background:linear-gradient(90deg,var(--wpt-cyan),var(--wpt-blue));
  transform:scaleX(0);
  transition:.18s ease;
}
.wpt-nav a:hover:after,
.wpt-nav a.is-active:after{
  transform:scaleX(1);
}
.wpt-header-cta{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--wpt-cyan),var(--wpt-blue));
  font-weight:1000;
  box-shadow:0 18px 34px rgba(33,150,255,.28);
}
.wpt-menu-btn{
  display:none;
  margin-left:auto;
  width:42px;
  height:38px;
  padding:9px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
}
.wpt-menu-btn span{
  display:block;
  height:2px;
  margin:5px 0;
  background:#fff;
  border-radius:6px;
}

.wpt-hero{
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.wpt-hero-bg{
  position:absolute;
  inset:0;
  margin:0;
}
.wpt-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  opacity:.56;
}
.wpt-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,11,18,.98) 0%,rgba(5,11,18,.82) 38%,rgba(5,11,18,.52) 68%,rgba(5,11,18,.92) 100%),
    radial-gradient(circle at 74% 40%,rgba(54,227,255,.18),transparent 32%),
    repeating-linear-gradient(135deg,rgba(255,255,255,.035) 0 2px,transparent 2px 44px);
}
.wpt-hero-content{
  position:relative;
  z-index:2;
}
.wpt-hero-copy{
  max-width:790px;
  padding:96px 0 88px;
}
.wpt-eyebrow,
.wpt-section-head span,
.wpt-blast-left span,
.wpt-event-header span,
.wpt-live-copy span,
.wpt-register-copy span,
.wpt-feature-grid span,
.wpt-keyword-panel span,
.wpt-final span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--wpt-cyan);
  font-size:13px;
  font-weight:1000;
  letter-spacing:1.7px;
  text-transform:uppercase;
}
.wpt-eyebrow:before,
.wpt-section-head span:before,
.wpt-blast-left span:before,
.wpt-event-header span:before,
.wpt-live-copy span:before,
.wpt-register-copy span:before,
.wpt-keyword-panel span:before,
.wpt-final span:before{
  content:"";
  width:36px;
  height:2px;
  background:var(--wpt-cyan);
}
.wpt-hero h1{
  margin:22px 0 0;
  font-size:clamp(48px,5.8vw,76px);
  line-height:1;
  letter-spacing:-3px;
  font-weight:1000;
}
.wpt-hero p{
  max-width:720px;
  margin:26px 0 0;
  color:#e9f3ff;
  font-size:18px;
  line-height:1.88;
}
.wpt-hero-actions,
.wpt-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.wpt-btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 28px;
  border-radius:999px;
  font-weight:1000;
  transition:.18s ease;
}
.wpt-btn:hover{
  transform:translateY(-2px);
}
.wpt-btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--wpt-cyan),var(--wpt-blue));
  box-shadow:0 18px 36px rgba(33,150,255,.26);
}
.wpt-btn-outline{
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.055);
}
.wpt-keyline{
  margin-top:38px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.wpt-keyline span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#f2f8ff;
  font-size:13px;
  font-weight:900;
}

.wpt-intro{
  background:#061321;
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.wpt-intro-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.wpt-intro article{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.1);
}
.wpt-intro small{
  color:var(--wpt-cyan);
  font-weight:1000;
}
.wpt-intro h2{
  margin:10px 0 8px;
  font-size:24px;
}
.wpt-intro p{
  margin:0;
  color:var(--wpt-muted);
  line-height:1.72;
  font-size:14px;
}

.wpt-section{
  padding:92px 0;
}
.wpt-section-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 44px;
}
.wpt-section-head.is-left{
  text-align:left;
  margin-left:0;
}
.wpt-section h2,
.wpt-blast-left h2,
.wpt-event-header h2,
.wpt-live-copy h2,
.wpt-register-copy h2,
.wpt-keyword-panel h2,
.wpt-final h2{
  margin:14px 0 0;
  font-size:48px;
  line-height:1.08;
  letter-spacing:-1.6px;
}
.wpt-section p,
.wpt-blast-left p,
.wpt-event-header p,
.wpt-live-copy p,
.wpt-register-copy p,
.wpt-keyword-panel p,
.wpt-final p{
  color:var(--wpt-muted);
  line-height:1.82;
  font-size:16px;
}

.wpt-download{
  background:
    radial-gradient(circle at 20% 18%,rgba(33,150,255,.14),transparent 34%),
    #07131e;
}
.wpt-download-layout{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:30px;
  align-items:stretch;
  padding:34px;
  border-radius:38px;
  background:linear-gradient(145deg,#0e1c2a,#08131f);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--wpt-shadow);
}
.wpt-download-banner{
  margin:0;
  aspect-ratio:16/6;
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:30px;
  background:#050b12;
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}
.wpt-download-banner img{
  width:100%;
  height:100%;
  max-height:none;
  object-fit:contain;
  border-radius:22px;
}
.wpt-device-panels{
  display:grid;
  gap:18px;
}
.wpt-device-panels article{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:20px;
  align-items:center;
  padding:22px;
  border-radius:26px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.1);
}
.wpt-device-panels figure{
  margin:0;
  width:170px;
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  border-radius:18px;
  background:#050b12;
}
.wpt-device-panels img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.wpt-device-panels span{
  color:var(--wpt-cyan);
  font-size:12px;
  font-weight:1000;
  letter-spacing:1.3px;
  text-transform:uppercase;
}
.wpt-device-panels h3{
  margin:8px 0 8px;
  font-size:26px;
}
.wpt-device-panels p{
  margin:0;
  color:var(--wpt-muted);
  line-height:1.7;
}

.wpt-blast{
  background:#050b12;
}
.wpt-blast-board{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:42px;
  align-items:center;
  padding:46px;
  border-radius:40px;
  background:
    radial-gradient(circle at 82% 22%,rgba(37,215,154,.14),transparent 34%),
    linear-gradient(145deg,#0d1a28,#06111c);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--wpt-shadow);
}
.wpt-blast-right{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:24px;
  align-items:center;
}
.blast-ring{
  width:260px;
  height:260px;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle,rgba(37,215,154,.28),rgba(33,150,255,.10) 48%,transparent 70%),
    #06131e;
  border:1px solid rgba(37,215,154,.32);
  box-shadow:0 0 60px rgba(37,215,154,.12);
}
.blast-ring b{
  font-size:46px;
}
.blast-ring small{
  margin-top:8px;
  color:var(--wpt-muted);
}
.blast-metrics{
  display:grid;
  gap:14px;
}
.blast-metrics article{
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border-left:4px solid var(--wpt-green);
}
.blast-metrics strong{
  display:block;
  margin-bottom:5px;
}
.blast-metrics p{
  margin:0;
  color:var(--wpt-muted);
  line-height:1.65;
}

.wpt-events{
  background:#07131e;
}
.wpt-event-header{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:end;
  margin-bottom:36px;
}
.wpt-event-banner{
  margin:0;
  aspect-ratio:16/6;
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:34px;
  background:#050b12;
  border:1px solid rgba(255,255,255,.1);
  overflow:hidden;
  box-shadow:var(--wpt-shadow);
}
.wpt-event-banner img{
  width:100%;
  height:100%;
  max-height:none;
  object-fit:contain;
  border-radius:22px;
}
.wpt-event-cards{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.wpt-event-cards article{
  padding:24px;
  border-radius:24px;
  background:linear-gradient(145deg,#0f1d2a,#07131e);
  border:1px solid rgba(255,255,255,.1);
}
.wpt-event-cards small{
  color:var(--wpt-cyan);
  font-weight:1000;
}
.wpt-event-cards h3{
  margin:10px 0 8px;
  font-size:24px;
}
.wpt-event-cards p{
  margin:0;
  color:var(--wpt-muted);
  line-height:1.7;
}

.wpt-live{
  background:#050b12;
}
.wpt-live-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:center;
}
.wpt-live-visual{
  margin:0;
  aspect-ratio:16/10;
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  border-radius:34px;
  background:#07131e;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--wpt-shadow);
  overflow:hidden;
}
.wpt-live-visual img{
  width:100%;
  height:100%;
  max-height:none;
  object-fit:contain;
  border-radius:22px;
}
.wpt-live-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.wpt-live-tags span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  color:#eff8ff;
  font-weight:900;
}

.wpt-games{
  background:#07131e;
}
.wpt-games-panel{
  padding:42px;
  border-radius:40px;
  background:linear-gradient(145deg,#0f1d2a,#07131e);
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--wpt-shadow);
}
.wpt-games-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
  margin-top:34px;
}
.wpt-games-visual{
  margin:0;
  aspect-ratio:16/8;
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 16px;
  border-radius:28px;
  background:#050b12;
  overflow:hidden;
}
.wpt-games-visual img{
  width:100%;
  height:100%;
  max-height:none;
  object-fit:contain;
  border-radius:20px;
}
.wpt-game-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.wpt-game-list article{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.1);
}
.wpt-game-list b{
  display:block;
  margin-bottom:6px;
  font-size:18px;
}
.wpt-game-list span{
  color:var(--wpt-muted);
  font-size:14px;
  line-height:1.6;
}

.wpt-register{
  background:#050b12;
}
.wpt-register-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:44px;
  align-items:center;
}
.wpt-timeline{
  display:grid;
  gap:14px;
  margin-top:28px;
}
.wpt-timeline article{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:14px;
  align-items:center;
  padding:15px;
  border-radius:20px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.1);
}
.wpt-timeline b{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--wpt-cyan),var(--wpt-blue));
}
.wpt-timeline span{
  font-weight:900;
}
.wpt-register-visual{
  margin:0;
  aspect-ratio:4/5;
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  border-radius:34px;
  background:#07131e;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--wpt-shadow);
  overflow:hidden;
}
.wpt-register-visual img{
  width:100%;
  height:100%;
  max-height:none;
  object-fit:contain;
  border-radius:22px;
}

.wpt-features{
  background:#07131e;
}
.wpt-feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.wpt-feature-grid article{
  padding:24px;
  border-radius:34px;
  background:linear-gradient(145deg,#0f1d2a,#07131e);
  border:1px solid rgba(255,255,255,.1);
}
.wpt-feature-grid figure{
  margin:0;
  aspect-ratio:16/8;
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 16px;
  border-radius:24px;
  background:#050b12;
  overflow:hidden;
}
.wpt-feature-grid img{
  width:100%;
  height:100%;
  max-height:none;
  object-fit:contain;
  border-radius:18px;
}
.wpt-feature-grid h3{
  margin:16px 0 8px;
  font-size:26px;
}
.wpt-feature-grid p{
  margin:0;
  color:var(--wpt-muted);
  line-height:1.72;
}

.wpt-keywords{
  background:#050b12;
}
.wpt-keyword-panel{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:center;
  padding:42px;
  border-radius:36px;
  background:
    radial-gradient(circle at 86% 20%,rgba(54,227,255,.12),transparent 34%),
    linear-gradient(145deg,#0f1d2a,#07131e);
  border:1px solid rgba(255,255,255,.1);
}
.wpt-keyword-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.wpt-keyword-tags span{
  padding:11px 15px;
  border-radius:999px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  color:#eff8ff;
  font-weight:900;
}

.wpt-faq{
  background:#07131e;
}
.wpt-faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.wpt-faq-grid details{
  border-radius:22px;
  background:linear-gradient(145deg,#0f1d2a,#07131e);
  border:1px solid rgba(255,255,255,.1);
  overflow:hidden;
}
.wpt-faq-grid summary{
  cursor:pointer;
  list-style:none;
  padding:22px 24px;
  font-weight:1000;
  display:flex;
  justify-content:space-between;
  gap:18px;
}
.wpt-faq-grid summary::-webkit-details-marker{
  display:none;
}
.wpt-faq-grid summary:after{
  content:"+";
  color:var(--wpt-cyan);
  font-size:24px;
}
.wpt-faq-grid details[open] summary:after{
  content:"−";
}
.wpt-faq-grid p{
  margin:0;
  padding:0 24px 24px;
  color:var(--wpt-muted);
  line-height:1.76;
  font-size:14px;
}

.wpt-final{
  padding:90px 0;
  background:
    radial-gradient(circle at 76% 28%,rgba(54,227,255,.18),transparent 34%),
    radial-gradient(circle at 20% 75%,rgba(108,60,255,.13),transparent 32%),
    linear-gradient(135deg,#050b12,#10243a 50%,#050b12);
}
.wpt-final-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:38px;
}
.wpt-final p{
  max-width:720px;
}
.wpt-final-actions{
  justify-content:flex-end;
}

.wpt-footer{
  padding:36px 0;
  background:#020508;
  border-top:1px solid rgba(255,255,255,.08);
}
.wpt-footer-inner{
  display:flex;
  justify-content:space-between;
  gap:34px;
}
.wpt-footer b{
  font-size:22px;
}
.wpt-footer p{
  max-width:780px;
  color:#8092a8;
  line-height:1.75;
  font-size:13px;
}
.wpt-footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:flex-end;
  align-content:flex-start;
}
.wpt-footer-links a{
  color:#d8e7f7;
  font-size:14px;
}

.wpt-backtop{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:50;
  width:54px;
  height:54px;
  border:0;
  border-radius:50%;
  background:linear-gradient(135deg,var(--wpt-cyan),var(--wpt-blue));
  color:#fff;
  font-weight:1000;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  box-shadow:0 18px 36px rgba(33,150,255,.28);
}
.wpt-backtop.is-visible{
  opacity:1;
  pointer-events:auto;
}

.img-missing{
  display:none!important;
}

@media(max-width:1100px){
  .wpt-menu-btn{
    display:block;
  }
  .wpt-nav{
    position:absolute;
    top:72px;
    left:4%;
    right:4%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:16px;
    border-radius:22px;
    background:#081622;
    border:1px solid rgba(255,255,255,.12);
  }
  .wpt-nav.is-open{
    display:flex;
  }
  .wpt-nav a{
    padding:14px 12px;
  }
  .wpt-nav a:after{
    display:none;
  }
  .wpt-header-cta{
    display:none;
  }

  .wpt-intro-grid,
  .wpt-download-layout,
  .wpt-blast-board,
  .wpt-blast-right,
  .wpt-event-header,
  .wpt-live-grid,
  .wpt-games-grid,
  .wpt-register-grid,
  .wpt-keyword-panel{
    grid-template-columns:1fr;
  }

  .wpt-event-cards{
    grid-template-columns:1fr;
  }

  .wpt-final-inner,
  .wpt-footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .wpt-final-actions,
  .wpt-footer-links{
    justify-content:flex-start;
  }
}

@media(max-width:700px){
  .wpt-wrap{
    width:min(1180px,calc(100% - 32px));
  }
  .wpt-logo{
    min-width:0;
  }
  .wpt-logo img{
    width:auto;
    height:24px;
    max-width:94px;
  }
  .wpt-logo b{
    font-size:18px;
  }
  .wpt-logo small{
    display:none;
  }
  .wpt-hero{
    min-height:auto;
  }
  .wpt-hero-copy{
    padding:66px 0 60px;
  }
  .wpt-hero h1{
    font-size:clamp(32px,8.8vw,40px);
    line-height:1.04;
    letter-spacing:-1.4px;
  }
  .wpt-hero p{
    font-size:15px;
  }
  .wpt-hero-actions,
  .wpt-final-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .wpt-btn{
    width:100%;
  }
  .wpt-section{
    padding:64px 0;
  }
  .wpt-section h2,
  .wpt-blast-left h2,
  .wpt-event-header h2,
  .wpt-live-copy h2,
  .wpt-register-copy h2,
  .wpt-keyword-panel h2,
  .wpt-final h2{
    font-size:34px;
  }
  .wpt-download-layout,
  .wpt-blast-board,
  .wpt-games-panel,
  .wpt-keyword-panel{
    padding:24px;
    border-radius:28px;
  }
  .wpt-download-banner,
  .wpt-event-banner{
    aspect-ratio:16/8;
  }
  .wpt-live-visual,
  .wpt-games-visual,
  .wpt-feature-grid figure{
    aspect-ratio:16/9;
  }
  .wpt-register-visual{
    aspect-ratio:4/5;
  }
  .wpt-event-cards article,
  .wpt-faq-grid summary,
  .wpt-faq-grid p{
    padding-left:20px;
    padding-right:20px;
  }
  .wpt-device-panels article{
    grid-template-columns:1fr;
  }
  .wpt-device-panels figure{
    width:100%;
    height:150px;
  }
  .wpt-game-list,
  .wpt-feature-grid,
  .wpt-faq-grid{
    grid-template-columns:1fr;
  }
  .blast-ring{
    width:220px;
    height:220px;
    margin:0 auto;
  }
  .blast-ring b{
    font-size:38px;
  }
}
