:root{
  --bg:#ffffff;
  --muted:#6b7280;
  --accent:#287098;
  --dark:#0c1d2a;
  --card-shadow: 0 8px 24px rgba(10,20,30,0.08);
}

*{box-sizing:border-box}

body{
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  background:var(--bg);
  color:var(--dark);
  width:100%;
  overflow-x:hidden;
}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

.top-cta{
  background:var(--dark);
  color:#fff;
  padding:8px 16px;
  font-size:14px;
  text-align:center;
  width:100%;
}

.site-header{
  background:transparent;
  border-bottom:1px solid #efefef;
  position:relative;
  width:100%;
}

.header-inline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 20px;
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.logo{
  font-weight:800;
  letter-spacing:-0.02em;
  font-size:24px;
  white-space:nowrap;
}

.logo span{
  color:var(--accent);
  margin-left:6px;
  font-weight:700;
}

.main-nav{
  display:flex;
  gap:20px;
}

.main-nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  padding:6px 8px;
}

.main-nav a:hover{
  color:var(--accent);
}

.menu-toggle{
  background:var(--accent);
  border:none;
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:4px;
}

.menu-toggle span{
  display:block;
  width:18px;
  height:2.5px;
  background:#fff;
  border-radius:3px;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:8px;
  background:#fff;
  border-top:1px solid #e6e6e6;
  padding:12px;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  box-shadow:
    0 -4px 10px rgba(40,112,152,0.08),
    0  4px 12px rgba(40,112,152,0.08);
  text-align:center;
  align-items:center;
}

.mobile-menu.open{
  display:flex;
}

.mobile-menu a{
  color:var(--dark);
  font-weight:600;
  text-decoration:none;
  font-size:15px;
  padding:4px 0;
}

.coming-soon{
  padding:80px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  width:100%;
}

.coming-soon h1{
  font-size:42px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:10px;
}

.coming-soon .rocket{
  font-size:42px;
}

.coming-soon p{
  font-size:18px;
  color:var(--muted);
  max-width:600px;
  line-height:1.6;
  margin-top:8px;
}

@media(max-width:600px){
  .container{
    width:100%;
    padding:0 16px;
  }

  .header-inline{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:18px 16px;
    gap: 30px;
  }

  .logo{
    font-size:20px;
    letter-spacing:-0.01em;
  }

  .main-nav{
    display:none;
  }

  .menu-toggle{
    padding:10px 12px;
  }

  .mobile-menu{
    padding:8px 0;
    align-items:center;
    text-align:center;
  }

  .mobile-menu a{
    padding:6px 0;
    font-size:15px;
  }

  .coming-soon{
    padding:50px 16px;
  }

  .coming-soon h1{
    flex-direction:column;
    font-size:30px;
    gap:2px;
  }

  .coming-soon .rocket{
    font-size:34px;
  }

  .coming-soon p{
    font-size:15px;
    line-height:1.4;
    max-width:320px;
    margin:0 auto;
  }

  .ticker-item{
    padding:8px 14px;
    font-size:15px;
  }

  .mobile-ad-banner{
    font-size:13px;
    padding:10px;
  }
}

.price-ticker {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  width:100%;
}

.ticker-item {
  white-space: nowrap;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #f0f0f0;
  box-shadow: var(--card-shadow);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.green { color: #16a34a; font-weight: 700; }
.red { color: #dc2626; font-weight: 700; }

.xrp-banner{
  background:linear-gradient(135deg, var(--dark), #162b6f);
  color:#fff;
  padding:40px 20px;
  text-align:center;
  margin-top:60px;
  width:100%;
}

.footer-legal{
  background:#f8f9fb;
  color:var(--muted);
  font-size:13px;
  text-align:center;
  padding:12px 0;
  border-top:1px solid #e5e5e5;
  width:100%;
}

.mobile-ad-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(90deg, var(--accent), #1b2945);
  color:#fff;
  text-align:center;
  padding:12px;
  font-size:14px;
  font-weight:600;
  z-index:9999;
  width:100%;
}

.mobile-ad-banner a{
  color:#fff;
  text-decoration:none;
  display:block;
}

.mobile-ad-banner a:hover{
  text-decoration:underline;
}
