.static-navbar .navbar-search-input{
  pointer-events:none;
}

.static-navbar .navbar-search-input::placeholder{
  color:#888;
}

.static-navbar .login-btn,
.static-actions .login-btn,
.static-actions .learn-more-btn{
  text-decoration:none;
}

.static-about-page{
  min-height:auto;
  padding-top:130px;
  padding-bottom:80px;
}

.static-help-page{
  padding-top:110px;
  padding-bottom:40px;
}

.static-help-page .help-container{
  display:block;
  max-width:1200px;
}

.static-help-page .help-main{
  box-sizing:border-box;
}

.static-help-page .about-header,
.static-redirect-card .about-header{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.static-help-page .help-section ul{
  list-style:disc;
  padding-left:22px;
  margin:0;
}

.static-help-page .help-section ul li{
  padding-left:0;
}

.static-help-page .help-section ul li:before{
  content:none;
}

.static-lead{
  color:#f7f7f7;
  font-size:16px;
  line-height:1.7;
  margin-bottom:28px;
}

.static-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.static-grid .help-section,
.static-callout,
.static-faq-item{
  background-color:var(--black);
  border-radius:16px;
  padding:24px;
  border:1px solid #333;
}

.static-grid .help-section{
  margin-bottom:0;
}

.static-grid .help-section:last-child{
  border-bottom:1px solid #333;
}

.static-grid + .help-section{
  margin-top:28px;
}

.static-callout{
  margin:28px 0;
}

.static-faq-list{
  display:grid;
  gap:16px;
}

.static-faq-item h2,
.static-callout h2,
.static-grid .help-section h2{
  margin-top:0;
}

.static-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.static-redirect-wrap{
  min-height:calc(100vh - 260px);
  display:flex;
  align-items:center;
}

.static-redirect-card{
  background-color:var(--bg-color);
  border-radius:16px;
  padding:40px;
  width:100%;
  border:1px solid #333;
  text-align:center;
}

.static-redirect-card h1{
  margin-top:0;
}

.static-footer{
  margin-top:0;
}

@media (max-width: 768px) {
  .static-navbar .navbar-search-container{
    display:none;
  }

  .static-about-page{
    padding-top:100px;
    padding-bottom:40px;
  }

  .static-help-page{
    padding-top:84px;
  }

  .static-grid{
    grid-template-columns:1fr;
  }

  .static-grid .help-section,
  .static-callout,
  .static-faq-item,
  .static-redirect-card{
    padding:20px;
  }
}

/* Main app visual overrides */
.hero-section{
  background-color:#04070f;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(30, 116, 255, 0.22), transparent 48%),
    radial-gradient(circle at 82% 22%, rgba(88, 183, 255, 0.16), transparent 52%),
    url("/banner.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.hero-section::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:220px;
  background:linear-gradient(to bottom, rgba(8, 8, 8, 0), #080808 85%);
  pointer-events:none;
  z-index:1;
}

.hero-section .hero-content{
  position:relative;
  z-index:2;
}

.hero-section .orb-background{
  opacity:0.75;
}

.circle-profile,
.discord-nav-link{
  background:linear-gradient(135deg, #082a72, #2b88ff) !important;
  box-shadow:0 4px 16px rgba(16, 88, 214, 0.45) !important;
}

.circle-profile:hover,
.discord-nav-link:hover{
  background:linear-gradient(135deg, #0b3b9f, #59b7ff) !important;
  box-shadow:0 0 0 1px rgba(129, 194, 255, 0.75), 0 6px 18px rgba(16, 88, 214, 0.5) !important;
}