@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&display=swap');

:root{
  --bg: #050505;
  --panel: rgba(255,255,255,.04);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.62);
  --line: rgba(255,255,255,.10);
  --red: #e11d2e;
  --red2: #ff2a3d;
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --radius: 14px;
  --radius2: 18px;
  --font-orbitron: "Orbitron", sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0) 40%),
    radial-gradient(1000px 520px at 25% 12%, rgba(225,29,46,.18), transparent 65%),
    radial-gradient(900px 520px at 82% 22%, rgba(225,29,46,.10), transparent 60%),
    var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  letter-spacing:.2px;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.font-orbitron{ font-family: var(--font-orbitron); font-size: 30px !important; font-weight: normal !important; }

.skip-link{
  position:absolute;
  top:-44px;
  left:12px;
  padding:10px 12px;
  border-radius:10px;
  background:#111;
  border:1px solid var(--line);
  color:var(--text);
  z-index:999;
}
.skip-link:focus{ top:12px; outline: none; }

.page{ min-height:100%; background-color: #000000; }
.container{
  margin:0 auto;
}
.flex-container{
  display:flex;
  align-items:center;
  margin-bottom: 20px;
}

.hero{
  position:relative;
  padding:34px 0 34px;
  overflow:hidden;
  background-color: #000000;
}
.hero:after{
  content:"";
  position:absolute;
  left:-10%;
  top:120px;
  width:140%;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(225,29,46,.55), transparent);
  transform: rotate(-8deg);
  opacity:.55;
  pointer-events:none;
}
.hero:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.65));
  pointer-events:none;
}
.hero-topbar{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:0 0 10px 64px;
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:14px;
}
.topbar-link{
  color:rgba(255,255,255,.72);
  font-size:12px;
  letter-spacing:1.1px;
  text-transform:uppercase;
}
.topbar-link:hover{ color:rgba(255,255,255,.92); }
.lang-pill{
  height:30px;
  padding:0 12px;
  border-radius:999px;
  background: rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.78);
  font-size:12px;
  letter-spacing:1px;
  cursor:pointer;
}
.lang-pill:hover{ border-color: rgba(225,29,46,.30); }
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:32px;
  align-items:center;
}
.brand-top{ display:flex; align-items:center; gap:12px; }
.logo{ height:69px; width:196px; opacity:.95; }

.hero-title{ margin-top:18px; }
.hero-title-img{ width:fit-content; filter: drop-shadow(0 18px 28px rgba(0,0,0,.7)); }
.hero-sub{ margin-top:12px; }
.badge{
  display:inline-flex;
  align-items:center;
  height:26px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(225,29,46,.38);
  color:rgba(255,255,255,.86);
  background: rgba(225,29,46,.10);
  font-size:12px;
  letter-spacing:.9px;
}
.badge-img{
  height:auto;
  padding:0;
  border:none;
  background:transparent;
}
.badge-img img{
  height:22px;
  width:auto;
  opacity:.95;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.7));
}

.hero-cta{ margin-top:18px; display:flex; gap:50px; flex-wrap:wrap; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 16px;
  font-family: var(--font-orbitron);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-outline{
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.2);
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.btn-outline-ca{
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
  border-bottom: 1px dotted rgba(255,255,255,.2);
  /* Monaco: system font on macOS/iOS — no bundled font file or @font-face */
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.btn-outline-ca span{
  margin-right: 10px;
}
.btn-solid{
  background: red;
  color: #fff;
  text-transform: uppercase;
  min-width: 211px;
  min-height: 48px;
}
.btn-outline-white{
  background: transparent;
  border: 1px solid rgba(255,255,255,.9);
  color: #fff;
  text-transform: uppercase;
  min-width: 211px;
  min-height: 48px;
  box-sizing: border-box;
}
.btn-outline-white:hover{
  background: rgba(255,255,255,.08);
  border-color: #fff;
}
.btn-compact{ height:38px; padding:0 14px; border-radius:12px; }
.hero-container {
    position: relative;
    z-index: 1;
    min-height: 665px;
}
.brand {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
}
.hero-protocol{
  position:absolute;
  top:188px;
  left:144px;
  width:100%;
  height:100%;
  z-index: 2 !important;
}
.hero-protocol img{ width:fit-content; height:auto; }

.hero-separator{
  position:absolute;
  top:188px;
  left:234px;
  width:1px;
  height:468px;
  z-index: 2 !important;
  background-color: rgba(255,255,255,.1);
}

.hero-tagline{
  position:absolute;
  top:188px;
  left:271px;
  width:30px;
  height:306px;
  z-index: 2 !important;
}
.hero-tagline img{ width:fit-content; height:auto; }

.hero-title{
  position:absolute;
  top:188px;
  left:365px;
  width:fit-content;
  height:fit-content;
  z-index: 2 !important;
}
.hero-title img{ width:fit-content; height:auto; }

.hero-cta{
  position:absolute;
  top:750px;
  left:144px;
  z-index: 2 !important;
}

.hero-cta-ca{
  position:absolute;
  top:835px;
  left:144px;
  width:100%;
  z-index: 2 !important;
}

.hero-node-subscribe{
  position:absolute;
  bottom:-15px;
  left:144px;
  z-index: 2 !important;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
}

.hero-art{
  position:relative;
  min-height:320px;
}

.hero-bg{
  width: 100%;
  opacity:.85;
  filter: saturate(.9) contrast(1.05);
  z-index: 1 !important;
}
.hero-ring{
  position:absolute;
  right:40px;
  top:20px;
  width:360px;
  height:360px;
  border-radius:999px;
  border:1px solid rgba(225,29,46,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.hero-dot{
  position:absolute;
  right:140px;
  top:145px;
  width:12px;
  height:12px;
  border-radius:4px;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(225,29,46,.15);
}

.section{
  padding:48px 0;
  margin: 0 96px;
}
.section-muted{
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
}

.section-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin:0 auto 22px;
  width: fit-content;
}
.section-index{
  color:rgba(225,29,46,.95);
  font-weight:900;
  letter-spacing:1.6px;
  font-size:14px;
  font-family: var(--font-orbitron);
  display: flex;
  margin: 0 auto;
  gap: 30px;
}
.section-index-img{
    margin-right: 20px;
}
.section-title-text{
    font-size:16px;
    letter-spacing:3px;
    font-weight:750;
    font-family: var(--font-orbitron);
}
.section-title-img-container{
  position: relative;
}
.section-title-img img{
    height: auto;
    width: auto;
}
.section-title-img-2{
  position: absolute;
  top: 0;
  right: 0;
}
.section-rule{
  height:1px;
  flex:1;
  background: linear-gradient(90deg, rgba(225,29,46,.45), rgba(255,255,255,.08));
  opacity:.9;
}
.section-separator{
  width: 100%;
  height: 1px;
  background: #333333;
  opacity:.9;
  margin: 20px 0;
}
.section-separator-padding{
  margin: 40px 0;
}

.legend-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:0;
}
.panel{
  padding:18px 0 16px;
}
.panel-content-container{
  position: relative;
  padding-left: 30px;
  margin-top: 70px;
}
.panel-red{
  background:
    linear-gradient(180deg, rgba(225,29,46,.13), rgba(225,29,46,.05)),
    rgba(255,255,255,.02);
  border-color: rgba(225,29,46,.20);
}
.panel-dark{
  background: rgba(255,255,255,.03);
}
.panel-heading{
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.panel-heading img{
  width:100%;
  height:100%;
}
.panel-separator{
  width: 1px;
  height: 100%;
  background: red;
  opacity: 1;
  position: absolute;
  left: 0;
  top: 0;
}
.panel-content{
  margin: 0 auto;
  width: 87%;
  height: auto;
  position: relative;
  top: -7%;
}
.panel-content img{
  width:100%;
  height:100%;
}
.panel-title{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.panel-title.en{
  letter-spacing:1.4px;
}
.panel-text{
  margin:0 0 10px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}
.legend-media{
  margin-top:30px;
  overflow:hidden;
}
.legend-img{
  width:100%;
  height:auto;
  max-height: 240px;
}

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  border-radius: 5px;
  border:1px solid rgba(255,255,255,.10);
  padding:28px;
  box-shadow: var(--shadow);
  min-height:150px;
  position: relative;
}
.card-icon{
  width:65px;
  height:65px;
  border-radius: 50px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(225,29,46,.10);
  border:1px solid rgba(255,255,255,.18);
  margin-bottom:12px;
}
.card-icon-img{
  display:flex;
  align-items:center;
  gap: 10px;
}
.card-icon-img-paragraph{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 12px;
}
.card-icon img{ max-width:26px; max-height:26px; opacity:.92; }
.card-title{
  font-size:20px;
  letter-spacing:.5px;
  font-weight: bold;
}
.card-text{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}
.card-mini-icon{
  background: rgba(225,26,26,.10);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
 }

.card-mini-icon img{
  width: 24px;
  height: 24px;
}

.card-tag{
  position: absolute;
  top: 26px ;
  right: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 5px;
  padding: 10px 20px;
}

.battle-grid{
  display:flex;
  gap:18px;
  align-items:stretch;
}
.battle-diagram{
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  max-width: 426px;
}
.battle-diagram img{ min-width: 426px; width:100%; height: 100%; opacity:.96; }

.tokenomics{
  padding:16px;
  max-width: 745px;
  align-content: center;
  margin-left: auto;
}

.tokenomics-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.tokenomics-title{
  margin:0;
  font-size:13px;
  letter-spacing:1.2px;
  text-transform:uppercase;
}
.tokenomics-badge{
  font-size:11px;
  color:rgba(255,255,255,.8);
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:6px 10px;
  white-space:nowrap;
}
.tokenomics-body{ padding-top:12px; display:flex; flex-direction:column; gap:10px; }
.tokenomics-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
}
.tokenomics-row .label{ color:rgba(255,255,255,.72); font-size:12px; }
.tokenomics-row .value{ font-weight:750; letter-spacing:.4px; font-size:12px; }

.stats{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.stat{
  border-radius: 16px;
  background: rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  padding:50px 45px 42px;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat:before{
  content:"";
  position:absolute;
  left:0; top:0;
  width:100%; height:2px;
  background: linear-gradient(90deg, rgba(225,29,46,.0), rgba(225,29,46,.65), rgba(225,29,46,.0));
  opacity:.75;
}
.stat-icon{
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-value{
  font-weight:850;
  font-size:48px;
  letter-spacing:.4px;
  font-family: DM Mono, monospace;
}
.stat-label{
  margin-top:6px;
  color: #D4AF37;
  font-size:12px;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.buy-grid{
  align-items:start;
}
.steps{
  margin:0;
  padding-left:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  list-style: none;
}
.step{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  padding:16px;
  margin-left: 80px;
  position: relative;
}
.step-left-icon{
  width: 60px;
  height: 60px;
  position: absolute;
  left: -80px;
  top: 20%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  padding: 17px;
}
.step-left-icon img{
  width: 100%;
  height: auto;
  max-width: 24px;
}
.step-icon-container{
  display:flex;
  align-items:center;
  gap:10px;
}
.step-icon{
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title{ font-weight:800; letter-spacing:.6px; }
.step-text{ margin-top:6px; color:var(--muted); font-size:13px; line-height:1.6; }

.contract{
  margin-top: 70px;
  border-radius: var(--radius2);
  border:1px solid rgba(225,29,46,.18);
  background: linear-gradient(180deg, rgba(225,29,46,.10), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:16px;
}
.contract-title{
  font-weight:850;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:12px;
}
.contract-row{
  display:flex;
  gap:10px;
  align-items:center;
}
.contract-input{
  flex:1;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:rgba(255,255,255,.86);
  padding:0 12px;
  outline:none;
  font-size:12px;
}
.contract-hint{
  margin-top:10px;
  color:rgba(255,255,255,.60);
  font-size:12px;
  line-height:1.5;
}

.chains{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 70px;
}
.chip{
  width: 100%;
  height:81px;
  padding:0 14px;
  border-radius:0;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.5);
  font-size:20px !important;
  letter-spacing:.8px;
  text-transform:uppercase;
  font-family: var(--font-orbitron);
}
.chip:hover{ border-color: rgba(225,29,46,.30); color:rgba(255,255,255,.9); }

.social-section{
  padding-top: 0;
  padding-bottom: 8px;
}
.social-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.social-link{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.03);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.social-link:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
}
.social-link svg{
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer{
  padding:22px 0;
  display:flex;
  justify-content:center;
  align-items:center;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  color:rgba(255,255,255,.5);
  font-size:12px;
  letter-spacing:.8px;
  text-transform:uppercase;
  font-family: var(--font-orbitron);
}
.footer-inner img{
  height: 15px;
  width: auto;
  opacity: .9;
}
.footer-logo{ height:20px; width:auto; opacity:.9; }
.footer-copy{ margin-top:8px; color:rgba(255,255,255,.55); font-size:12px; }
.footer-link{
  color:rgba(255,255,255,.72);
  font-size:12px;
  letter-spacing:.8px;
  text-transform:uppercase;
  margin-left:14px;
}
.footer-link:hover{ color:rgba(255,255,255,.92); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ width:100%; height:100%; order:-1; }
  .hero-bg{ right:-40px; top:0; width:100%; }
  .legend-grid, .battle-grid, .buy-grid{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr 1fr; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
  .footer-right{ width:100%; display:flex; gap:14px; }
  .footer-link{ margin-left:0; }
}

/* Extra large devices */
@media (max-width: 1439px) {
  /* styles for large screens */
  .hero-title img {
    width: 70%;
  }
  .hero-cta {
    top: 88%;
  }
  .hero-cta-ca {
    top: 100%;
  }
}

/* Large devices (desktops) */
@media (max-width: 1200px) {
  /* styles for small desktops */
  .hero-title img {
    width: 50%;
  }
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
  /* styles for tablets */
  .hero-protocol {
    top: 138px;
  }
  .hero-separator {
    top: 138px;
    height: 418px;
  }
  .hero-tagline {
    top: 138px;
  }
  .hero-title {
    top: 138px;
  }
  .hero-cta {
    position: relative;
    top: 595px;
    left: 0;
    width: fit-content;
    height: 100%;
    margin: 0 auto;
  }
  .hero-cta-ca {
    position: relative;
    top: 605px;
    left: 0;
    width: fit-content;
    margin: 0 auto;
  }
  .hero-node-subscribe {
    position: relative;
    top: 620px;
    left: 0;
    text-align: center;
    width: 100%;
  }
  .legend-grid {
    grid-template-columns: 1fr;
  }
  .panel-content-container {
    margin-top: 0;
  }
  .legend-img {
    width: 100%;
    max-height: 100%;
  }
  .battle-grid {
    display: block;
  }
  .battle-diagram {
    max-width: 100%;
  }
  .section-title-img-2 {
    position: absolute;
    top: 25px;
    right: 0;
  }
}

/* Small devices (large phones) */
@media (max-width: 768px) {
  /* styles for large phones */
  .hero-container {
    min-height: 710px;
  }
  .section {
    margin: 0 30px;
    overflow: hidden;
  }
  .btn-solid{
    min-width: auto;
  }
  .btn-outline-white{
    min-width: auto;
  }
  .hero-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 30px;
  }
  .chains {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra small devices (phones) */
@media (max-width: 576px) {
  /* styles for small phones */
  .btn-outline-ca {
    font-size: 11px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .steps {
    padding-left: 0;
  }
  .step {
    margin-left: 0;
  }
  .step-left-icon {
    display: none;
  }
  .contract-row {
    display: block;
  }
  .contract-input {
    width: 100%;
    margin-bottom: 10px;
  }
  .btn-compact {
    width: 100%;
  }
  .btn-solid,
  .btn-outline-white {
    min-width: 100%;
  }
  .chains {
    grid-template-columns: repeat(2, 1fr);
  }
  .battle-diagram img {
    min-width: 100%;
  }
}

/* Extra small devices (phones) */
@media (max-width: 495px) {
  /* styles for small phones */
  .hero-topbar {
    padding: 0;
  }
  .logo {
    height: auto;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
  }
  .hero-protocol {
    left: 74px;
  }
  .hero-separator {
    left: 164px;
  }
  .hero-tagline {
    left: 201px;
  }
  .hero-title {
    left: 295px;
  }
  .hero-cta {
    display: block;
    top: 500px;
  }
  .btn-outline-white {
    margin-top: 10px;
  }
  .btn-outline {
    margin-top: 10px;
    width: 100%;
  }
  .hero-cta-ca {
    display: block;
    top: 550px;
  }
  .hero-node-subscribe {
    top: 525px;
    font-size: 2.5vw;
  }
  .chains {
    grid-template-columns: repeat(1, 1fr);
  }
}

.copy-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 12px));
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.6px;
  font-family: var(--font-orbitron);
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.copy-toast.copy-toast--visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}
