/* =========================================================
   AddictionTube HELP PAGES (Shared CSS)
   File: /assets/css/at-help-pages.css
   Scope: .at-help-page only
   ========================================================= */

/* Base */
.at-help-page{
  background:#0b0f14;
  min-height:100vh;
  padding:0;
  margin:0;
}

/* prevent theme opacity/filter from washing out text */
.at-help-page *{
  opacity:1 !important;
  filter:none !important;
  text-shadow:none;
}

.at-help-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:28px 14px 70px;
}

/* Main glass module */
.at-help-shell{
  border-radius:26px;
  padding:26px;
  background:linear-gradient(135deg, rgba(12,18,24,0.96), rgba(2,5,8,0.96));
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 28px 80px rgba(0,0,0,0.55);
  position:relative;
  overflow:hidden;
}

.at-help-shell::before{
  content:"";
  position:absolute;
  inset:-3px;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 20%, rgba(0,255,170,0.12), transparent 55%),
    radial-gradient(circle at 84% 26%, rgba(255,215,0,0.08), transparent 60%),
    radial-gradient(circle at 70% 90%, rgba(0,195,255,0.06), transparent 55%);
}

.at-help-inner{position:relative;z-index:2;}

/* Badge */
.at-badge{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,255,170,0.12);
  border:1px solid rgba(0,255,170,0.26);
  color:rgba(255,255,255,0.92);
  margin-bottom:12px;
}

/* Titles */
.at-h1{
  margin:0 0 12px;
  font-size:34px;
  font-weight:1000;
  letter-spacing:-.02em;
  color:#ffffff !important;
}

.at-sub{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.7;
  color:rgba(255,255,255,0.78) !important;
  max-width:920px;
}

/* Alert */
.at-alert{
  border-radius:18px;
  padding:14px 16px;
  margin:18px 0 16px;
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.86) !important;
}

.at-alert strong{color:rgba(255,215,0,0.92);}

/* Cards grid */
.at-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin:18px 0 8px;
}

.at-card{
  border-radius:18px;
  padding:14px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 14px 34px rgba(0,0,0,0.28);
}

.at-card h3{
  margin:0 0 8px;
  font-size:15px;
  font-weight:1000;
  color:#ffffff !important;
}

.at-card p{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color:rgba(255,255,255,0.72) !important;
}

/* Sections */
.at-section{margin-top:18px;}

.at-section h2{
  margin:0 0 10px;
  font-size:20px;
  font-weight:1000;
  color:#ffffff !important;
}

.at-section p,
.at-section li{
  font-size:14px;
  line-height:1.75;
  color:rgba(255,255,255,0.78) !important;
}

.at-section ul{margin:10px 0 0 20px;}

/* CTA buttons */
.at-cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.at-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  text-decoration:none !important;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.04);
  color:#fff !important;
  transition:transform .16s ease, border-color .16s ease, background .16s ease;
}

.at-btn:hover{
  transform:translateY(-2px);
  border-color:rgba(0,255,170,0.45);
  background:rgba(0,255,170,0.08);
}

.at-btn-green{
  background:rgba(0,255,170,0.14);
  border-color:rgba(0,255,170,0.30);
}

/* Divider */
.at-divider{
  width:100%;
  height:2px;
  margin:22px 0 18px;
  border-radius:999px;
  background:linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.12) 15%,
    rgba(0,255,170,0.40) 50%,
    rgba(255,255,255,0.12) 85%,
    transparent 100%);
  box-shadow:0 0 18px rgba(0,255,170,0.14);
  opacity:1;
}

/* Responsive */
@media(max-width:992px){
  .at-grid{grid-template-columns:repeat(2, 1fr);}
  .at-h1{font-size:26px;}
  .at-help-shell{padding:18px;}
}

@media(max-width:576px){
  .at-grid{grid-template-columns:1fr;}
}

