html,body{
  margin:0;
  min-height:100%;
}

body{
  background:#020806;
  color:#fff;
  font-family:Arial,Helvetica,sans-serif;
  display:flex;
  flex-direction:column;
}

main{
  flex:1;
}

.site-header{
  position:sticky;
  top:0;
  z-index:9999;
  min-height:72px;
  padding:14px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(0,20,10,.97);
  border-bottom:1px solid rgba(0,255,136,.35);
}

.brand strong{
  display:block;
  color:#00ff88;
  font-size:28px;
}

.brand span{
  color:#d8ffe9;
  font-size:13px;
}

.menu-toggle{
  background:#00ff88;
  color:#00170b;
  border:0;
  border-radius:12px;
  padding:12px 18px;
  font-weight:900;
  cursor:pointer;
}

.dropdown-menu{
  position:absolute;
  right:22px;
  top:68px;
  width:280px;
  display:none;
  flex-direction:column;
  gap:8px;
  padding:14px;
  background:#001209;
  border:1px solid rgba(0,255,136,.45);
  border-radius:16px;
}

body.menu-open .dropdown-menu{
  display:flex;
}

.dropdown-menu a{
  color:#eafff4;
  text-decoration:none;
  padding:12px 14px;
  border-radius:10px;
  background:rgba(255,255,255,.04);
}

.dropdown-menu a:hover,
.dropdown-menu a.active{
  background:#00ff88;
  color:#00170b;
  font-weight:900;
}

.page{
  width:min(1300px,calc(100% - 40px));
  margin:40px auto;
}

.hero,.content-card{
  background:rgba(0,35,18,.72);
  border:1px solid rgba(0,255,136,.35);
  border-radius:24px;
  padding:36px;
}

.hero h1{
  color:#00ff88;
  font-size:clamp(34px,5vw,64px);
  margin:0 0 20px;
}

.content-card{
  margin-top:28px;
}

.content-card h2{
  color:#00ff88;
}

p{
  line-height:1.6;
}

.site-footer{
  margin-top:auto;
  padding:28px 22px;
  background:#001209;
  border-top:1px solid rgba(0,255,136,.35);
}

.footer-inner{
  max-width:1300px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#d8ffe9;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#d8ffe9;
  text-decoration:none;
}

.footer-links a:hover{
  color:#00ff88;
}
