/* UPDATED style.css - Natural Aquarium Theme */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#07120d;
  color:white;
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
  position:relative;
}

/* BACKGROUND */

.bg-noise{
  position:fixed;
  width:100%;
  height:100%;
  background-image:
  radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:18px 18px;
  opacity:.2;
  z-index:-5;
}

.scan-lines{
  position:fixed;
  width:100%;
  height:100%;
  background:linear-gradient(
    transparent 50%,
    rgba(255,255,255,.015) 50%
  );
  background-size:100% 5px;
  pointer-events:none;
  z-index:-4;
}

.water-glow{
  position:fixed;
  border-radius:50%;
  filter:blur(140px);
  z-index:-3;
}

.glow-left{
  width:500px;
  height:500px;
  background:#4fb58f;
  top:-120px;
  left:-120px;
  opacity:.18;
}

.glow-right{
  width:500px;
  height:500px;
  background:#c58b5b;
  bottom:-120px;
  right:-120px;
  opacity:.15;
}

/* NAV */

.navbar{
  width:100%;
  padding:22px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:sticky;
  top:0;
  z-index:999;
  backdrop-filter:blur(18px);
  background:rgba(0,0,0,.45);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.brand{
  display:flex;
  align-items:center;
  gap:18px;
}

.brand-ring{
  width:72px;
  height:72px;
  border-radius:50%;
  padding:3px;
  background:linear-gradient(to right,#4fb58f,#c58b5b);
}

.brand-ring img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

.brand-text h1{
  font-size:1rem;
  font-family:'Poppins',sans-serif;
  letter-spacing:.4px;
}

.brand-text p{
  color:#94a3b8;
  font-size:.82rem;
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:500;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-6px;
  background:#4fb58f;
  transition:.3s;
}

nav a:hover::after{
  width:100%;
}

/* HERO */

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:60px;
  padding:60px 7%;
}

.floating-badge{
  display:inline-block;
  padding:12px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:28px;
  color:#8fd8b3;
}

.hero h2{
  font-size:5.5rem;
  line-height:.95;
  margin-bottom:30px;
  font-family:'Poppins',sans-serif;
}

.hero h2 span{
  background:linear-gradient(to right,#4fb58f,#c58b5b);

  background-clip:text;
  -webkit-background-clip:text;

  color:transparent;
  -webkit-text-fill-color:transparent;
}

.hero-text{
  max-width:650px;
  line-height:1.9;
  color:#cbd5e1;
  font-size:1.05rem;
  margin-bottom:40px;
}

.hero-actions{
  display:flex;
  gap:20px;
  margin-bottom:40px;
}

.btn-main,
.btn-ghost{
  padding:18px 28px;
  border-radius:18px;
  text-decoration:none;
  font-weight:700;
  transition:.3s;
}

.btn-main{
  background:linear-gradient(to right,#4fb58f,#2f7d62);
  color:white;
  box-shadow:0 0 40px rgba(79,181,143,.25);
}

.btn-main:hover{
  transform:translateY(-4px);
}

.btn-ghost{
  border:1px solid rgba(255,255,255,.08);
  color:white;
  background:rgba(255,255,255,.04);
}

.btn-ghost:hover{
  background:rgba(255,255,255,.08);
}

.mini-panels{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.mini-card{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
  min-width:240px;
}

.mini-card h3{
  margin-bottom:10px;
  color:#8fd8b3;
}

/* ORBIT */

.orbital-container{
  position:relative;
  width:520px;
  height:520px;
  margin:auto;
}

.orb-ring{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
}

.ring-1{
  inset:0;
  animation:spin 16s linear infinite;
}

.ring-2{
  inset:35px;
  animation:spinReverse 14s linear infinite;
}

.logo-core{
  position:absolute;
  inset:80px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:
  0 0 80px rgba(79,181,143,.2),
  0 0 120px rgba(197,139,91,.15);
}

.logo-core img{
  width:90%;
  border-radius:50%;
}

/* TREND */

.trend-bar{
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
  padding:18px 0;
  background:rgba(255,255,255,.02);
}

.trend-track{
  display:flex;
  gap:80px;
  white-space:nowrap;
  animation:slide 18s linear infinite;
}

.trend-track span{
  color:#8fd8b3;
  font-weight:700;
}

/* SECTIONS */

.section{
  padding:120px 7%;
}

.alt{
  background:rgba(255,255,255,.02);
}

.section-heading{
  text-align:center;
  margin-bottom:70px;
}

.section-heading span{
  color:#8fd8b3;
  letter-spacing:.8px;
  font-size:.85rem;
}

.section-heading h2{
  margin-top:16px;
  font-size:3.3rem;
  font-family:'Poppins',sans-serif;
}

/* GUIDE LAYOUT */

.guide-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
}

.guide-large{
  min-height:520px;
  border-radius:32px;
  overflow:hidden;
  position:relative;
  background:
  linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.15)),
  url('jungle_tank_2.png');

  background-size:cover;
  background-position:center;
  border:1px solid rgba(255,255,255,.08);
}

.guide-large-content{
  position:absolute;
  bottom:40px;
  left:40px;
  max-width:500px;
}

.guide-large-content small{
  color:#8fd8b3;
  letter-spacing:.8px;
}

.guide-large-content h3{
  font-size:2.3rem;
  margin:14px 0;
}

.guide-large-content p{
  color:#dbeafe;
  line-height:1.8;
  margin-bottom:20px;
}

.guide-large-content a{
  color:#8fd8b3;
  text-decoration:none;
  font-weight:700;
}

.guide-side{
  display:grid;
  gap:20px;
}

.guide-box{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);

  border-radius:24px;

  padding:28px 32px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  gap:18px;

  transition:.3s;

  position:relative;
  overflow:hidden;
}

.guide-box::before{
  content:'';
  position:absolute;
  inset:0;

  background:linear-gradient(
    90deg,
    rgba(79,181,143,.04),
    transparent,
    rgba(197,139,91,.04)
  );

  opacity:0;
  transition:.3s;
}

.guide-box:hover{
  transform:translateX(8px);

  border-color:#4fb58f;

  box-shadow:
  0 0 30px rgba(79,181,143,.12);
}

.guide-box:hover::before{
  opacity:1;
}

.guide-left{
  display:flex;
  align-items:center;
  gap:18px;

  position:relative;
  z-index:2;
}

.guide-left span{
  font-size:2rem;
}

.guide-left h4{
  font-size:1.15rem;
  font-weight:600;
}

.guide-link{
  color:#8fd8b3;
  text-decoration:none;

  font-weight:700;

  white-space:nowrap;

  position:relative;
  z-index:2;

  transition:.3s;
}

.guide-link:hover{
  color:white;
  transform:translateX(4px);
}

/* BUILDS */

.build-grid{
  display:grid;

  grid-template-columns:
  repeat(2, minmax(380px, 1fr));

  gap:40px;

  align-items:start;

  max-width:1400px;

  margin:auto;
}

.build-card{
  width:100%;
}

.build-card{
  height:480px;
  border-radius:28px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}

.build-1{
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.88),
    rgba(0,0,0,.12)
  ),
  url('./glowfish_forest.png');

  background-size:cover;
  background-repeat:no-repeat;

  background-position:center center;

  background-color:#07120d;
}

.build-card{
  height:520px;
  overflow:hidden;
}

.build-2{
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.90),
    rgba(0,0,0,.08)
  ),
  url('./amazon_river.png');

  background-size:105% auto;

  background-repeat:no-repeat;

  background-position:center 35%;

  background-color:#07120d;
}

.build-card{
  height:420px;

  border-radius:28px;

  position:relative;

  overflow:hidden;

  border:1px solid rgba(255,255,255,.08);

  transition:.3s;
}

.build-card:hover{
  transform:translateY(-6px);
}

.build-3{
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.90),
    rgba(0,0,0,.08)
  ),
  url('./blue_neon.png');

  background-size:105% auto;

  background-repeat:no-repeat;

  background-position:center 40%;

  background-color:#07120d;
}

.build-info{
  position:absolute;
  bottom:30px;
  left:30px;
}

.build-info h3{
  font-size:2rem;

  line-height:1.08;

  letter-spacing:-0.04em;

  max-width:95%;

  margin-bottom:18px;
}

/* GEAR */

.gear-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.gear-card{
  padding:35px;
  border-radius:28px;
  background:
  linear-gradient(
    180deg,
    rgba(79,181,143,.08),
    rgba(255,255,255,.03)
  );

  border:1px solid rgba(255,255,255,.08);
}

.gear-top span{
  background:#4fb58f;
  color:black;
  padding:8px 14px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:700;
}

.gear-card h3{
  margin:24px 0 14px;
  font-size:1.7rem;
}

.gear-card p{
  color:#cbd5e1;
  line-height:1.8;
  margin-bottom:24px;
}

.gear-card a{
  color:#8fd8b3;
  text-decoration:none;
  font-weight:700;
}

/* CREATOR */

.creator-section{
  padding:120px 7%;
}

.creator-panel{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:40px;
  padding:60px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  backdrop-filter:blur(20px);
}

.creator-left span{
  color:#8fd8b3;
  letter-spacing:.8px;
}

.creator-left h2{
  font-size:3rem;
  margin:20px 0;
  font-family:'Poppins',sans-serif;
}

.creator-left p{
  color:#cbd5e1;
  line-height:1.9;
}

.creator-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.creator-form input,
.creator-form textarea{
  width:100%;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:18px;
  border-radius:18px;
  color:white;
  font-family:'Poppins',sans-serif;
}

.creator-form textarea{
  min-height:180px;
  resize:none;
}

.creator-form button{
  padding:18px;
  border:none;
  border-radius:18px;
  background:linear-gradient(to right,#4fb58f,#c58b5b);
  color:white;
  font-weight:700;
  cursor:pointer;
}

/* ARTICLES */

.article-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.article-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  overflow:hidden;
}

.article-image{
  height:240px;
  background:
  linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.2)),
  url('logo.png');

  background-size:cover;
  background-position:center;
}

.article-content{
  padding:30px;
}

.article-content small{
  color:#8fd8b3;
}

.article-content h3{
  margin:16px 0;
  font-size:1.5rem;
}

.article-content p{
  color:#cbd5e1;
  line-height:1.8;
}

/* FOOTER */

.footer{
  padding:90px 7%;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.06);
}

.footer-logo img{
  width:100px;
  border-radius:50%;
  margin-bottom:24px;
}

.footer h2{
  font-family:'Poppins',sans-serif;
  margin-bottom:12px;
}

.footer p{
  color:#94a3b8;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin:35px 0;
}

.footer-links a{
  text-decoration:none;
  color:white;
}

.footer small{
  color:#64748b;
}

/* ANIMATIONS */

@keyframes spin{
  from{
    transform:rotate(0deg);
  }

  to{
    transform:rotate(360deg);
  }
}

@keyframes spinReverse{
  from{
    transform:rotate(360deg);
  }

  to{
    transform:rotate(0deg);
  }
}

@keyframes slide{
  from{
    transform:translateX(0%);
  }

  to{
    transform:translateX(-50%);
  }
}

/* ARTICLE PAGE */

.article-hero{
  padding:140px 7% 80px;
  text-align:center;
}

.article-badge{
  display:inline-block;
  padding:12px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#8fd8b3;
  margin-bottom:30px;
}

.article-hero h1{
  font-size:5rem;
  line-height:1;
  margin-bottom:30px;
  font-family:'Poppins',sans-serif;
}

.article-hero p{
  max-width:850px;
  margin:auto;
  color:#cbd5e1;
  line-height:1.9;
  font-size:1.1rem;
}

.article-container{
  padding:40px 7% 120px;
  display:grid;
  grid-template-columns:1.2fr .5fr;
  gap:40px;
}

.article-content-main{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  border-radius:30px;
  padding:50px;
}

.article-content-main h2{
  font-size:2.5rem;
  margin-bottom:24px;
  margin-top:50px;
  font-family:'Poppins',sans-serif;
}

.article-content-main p{
  color:#cbd5e1;
  line-height:1.95;
  margin-bottom:24px;
}

.info-panel{
  margin:40px 0;
  padding:30px;
  border-radius:24px;
  background:rgba(79,181,143,.05);
  border:1px solid rgba(79,181,143,.15);
}

.info-panel h3{
  margin-bottom:18px;
}

.info-panel ul{
  padding-left:20px;
}

.info-panel li{
  margin-bottom:12px;
  color:#dbeafe;
}

.fish-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
  margin-top:30px;
}

.fish-card{
  padding:28px;
  border-radius:24px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.fish-card h3{
  margin-bottom:16px;
}

.fish-stats{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.fish-stats span{
  color:#8fd8b3;
  font-size:.92rem;
}

.tip-box{
  margin-top:30px;
  padding:35px;
  border-radius:24px;
  background:linear-gradient(
    135deg,
    rgba(79,181,143,.06),
    rgba(197,139,91,.05)
  );
  border:1px solid rgba(255,255,255,.08);
}

.plant-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

.plant-item{
  padding:24px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  font-weight:600;
}

.mistake-card{
  margin-top:24px;
  padding:28px;
  border-radius:22px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.article-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.sidebar-card{
  padding:30px;
  border-radius:24px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.sidebar-card h3{
  margin-bottom:18px;
}

.sidebar-card ul{
  padding-left:20px;
}

.sidebar-card li{
  margin-bottom:12px;
  color:#dbeafe;
}

.sidebar-card p{
  color:#cbd5e1;
  line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .hero,
  .guide-layout,
  .creator-panel,
  .article-container{
    grid-template-columns:1fr;
  }

  .hero{
    text-align:center;
  }

  .hero-actions,
  .mini-panels{
    justify-content:center;
  }

  .hero-text{
    margin:auto auto 40px;
  }

  .orbital-container{
    width:100%;
    max-width:500px;
    height:500px;
  }

  .article-hero h1{
    font-size:3.8rem;
  }

}

@media(max-width:768px){

  nav{
    display:none;
  }

  .hero h2{
    font-size:3.6rem;
  }

  .section-heading h2,
  .creator-left h2,
  .article-content-main h2{
    font-size:2.2rem;
  }

  .creator-panel{
    padding:35px;
  }

  .article-content-main{
    padding:30px;
  }

  .article-hero h1{
    font-size:3rem;
  }

  .guide-box{
    flex-direction:column;
    align-items:flex-start;
  }

}
.article-hero-content{
  max-width:1000px;
  margin:auto;
}

/* WHY FISH HIDE PAGE */

.hide-hero{
  position:relative;
  padding:160px 7% 120px;
  text-align:center;

  background:
  linear-gradient(to bottom,
  rgba(3,7,18,.3),
  rgba(3,7,18,.95)),
  url('logo.png');

  background-size:cover;
  background-position:center;

  overflow:hidden;
}

.hide-hero-overlay{
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top,
  rgba(79,181,143,.15),
  transparent 60%);
}

.hide-hero-content{
  position:relative;
  z-index:2;
  max-width:950px;
  margin:auto;
}

.hide-badge{
  display:inline-block;

  padding:12px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.08);

  color:#8fd8b3;

  margin-bottom:28px;
}

.hide-hero h1{
  font-size:5.5rem;
  line-height:.95;
  margin-bottom:30px;

  font-family:'Poppins',sans-serif;
}

.hide-hero p{
  color:#cbd5e1;
  line-height:1.9;
  font-size:1.1rem;
}

/* WARNING BAR */

.warning-bar{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:20px;

  padding:30px 7%;
}

.warning-item{
  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  border-radius:22px;

  padding:22px;

  color:#dbeafe;

  font-weight:600;
}

/* MAIN LAYOUT */

.hide-layout{
  display:grid;

  grid-template-columns:1.15fr .45fr;

  gap:40px;

  padding:60px 7% 120px;
}

/* MAIN CONTENT */

.hide-main{
  display:flex;
  flex-direction:column;
  gap:40px;
}

.hide-section{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:30px;
}

.section-number{
  font-size:4rem;
  font-weight:800;

  color:rgba(79,181,143,.2);

  font-family:'Poppins',sans-serif;
}

.hide-section-content{
  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.06);

  border-radius:30px;

  padding:45px;
}

.hide-section-content h2{
  font-size:2.4rem;

  margin-bottom:22px;

  font-family:'Poppins',sans-serif;
}

.hide-section-content p{
  color:#cbd5e1;

  line-height:1.95;

  margin-bottom:22px;
}

/* HIGHLIGHT BOX */

.highlight-box{
  margin-top:30px;

  padding:30px;

  border-radius:24px;

  background:
  linear-gradient(
    135deg,
    rgba(79,181,143,.08),
    rgba(197,139,91,.05)
  );

  border:1px solid rgba(255,255,255,.08);
}

.highlight-box h3{
  margin-bottom:18px;
}

.highlight-box ul{
  padding-left:20px;
}

.highlight-box li{
  margin-bottom:12px;
  color:#dbeafe;
}

/* REASON GRID */

.reason-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

  gap:24px;

  margin-top:30px;
}

.reason-card{
  padding:28px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);
}

.reason-card h3{
  margin-bottom:16px;
}

/* PROBLEM STACK */

.problem-stack{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-top:30px;
}

.problem-card{
  padding:28px;

  border-radius:22px;

  background:rgba(255,255,255,.04);

  border-left:4px solid #ff4d4d;

  border-top:1px solid rgba(255,255,255,.08);

  border-right:1px solid rgba(255,255,255,.08);

  border-bottom:1px solid rgba(255,255,255,.08);
}

.problem-card h3{
  margin-bottom:12px;
}

/* SOLUTIONS */

.solution-list{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

  gap:20px;

  margin-top:30px;
}

.solution-item{
  padding:24px;

  border-radius:20px;

  background:
  linear-gradient(
    135deg,
    rgba(79,181,143,.06),
    rgba(255,255,255,.03)
  );

  border:1px solid rgba(255,255,255,.08);

  font-weight:600;
}

.final-tip{
  margin-top:40px;

  padding:35px;

  border-radius:26px;

  background:
  linear-gradient(
    135deg,
    rgba(197,139,91,.08),
    rgba(79,181,143,.06)
  );

  border:1px solid rgba(255,255,255,.08);
}

.final-tip h3{
  margin-bottom:14px;
}

/* SIDEBAR */

.hide-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.sidebar-info{
  padding:30px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  position:sticky;
  top:120px;
}

.sidebar-info h3{
  margin-bottom:18px;
}

.sidebar-info ul{
  padding-left:20px;
}

.sidebar-info li{
  margin-bottom:12px;
  color:#dbeafe;
}

/* COMPARE BOX */

.compare-box{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.good-side,
.bad-side{
  padding:20px;

  border-radius:18px;
}

.good-side{
  background:rgba(0,255,140,.08);

  border:1px solid rgba(0,255,140,.15);
}

.bad-side{
  background:rgba(255,70,70,.08);

  border:1px solid rgba(255,70,70,.15);
}

.good-side h4,
.bad-side h4{
  margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .hide-layout{
    grid-template-columns:1fr;
  }

  .warning-bar{
    grid-template-columns:1fr;
  }

  .hide-hero h1{
    font-size:4rem;
  }

}

@media(max-width:768px){

  .hide-section{
    grid-template-columns:1fr;
  }

  .section-number{
    font-size:3rem;
  }

  .hide-hero h1{
    font-size:3rem;
  }

  .hide-section-content{
    padding:30px;
  }

}

/* NEON TANK PAGE */

.neon-page{
  background:#07120d;
}

/* BACKGROUND */

.neon-bg-grid{
  position:fixed;
  inset:0;

  background-image:
  linear-gradient(rgba(79,181,143,.05) 1px, transparent 1px),
  linear-gradient(90deg, rgba(79,181,143,.05) 1px, transparent 1px);

  background-size:40px 40px;

  opacity:.2;

  z-index:-5;
}

.neon-orb{
  position:fixed;

  border-radius:50%;

  filter:blur(140px);

  z-index:-4;
}

.orb-1{
  width:400px;
  height:400px;

  background:#4fb58f;

  top:-100px;
  left:-100px;

  opacity:.18;
}

.orb-2{
  width:500px;
  height:500px;

  background:#c58b5b;

  right:-120px;
  top:20%;

  opacity:.14;
}

.orb-3{
  width:400px;
  height:400px;

  background:#2f6655;

  bottom:-100px;
  left:30%;

  opacity:.14;
}

/* NAV */

.neon-nav{
  background:rgba(0,0,0,.55);
  border-bottom:1px solid rgba(79,181,143,.12);
}

/* HERO */

.neon-hero{
  min-height:100vh;

  display:grid;
  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:60px;

  padding:80px 7%;
}

.neon-tag{
  display:inline-block;

  padding:12px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(79,181,143,.2);

  color:#8fd8b3;

  margin-bottom:30px;
}

.neon-hero h1{
  font-size:6rem;

  line-height:.9;

  margin-bottom:30px;

  font-family:'Poppins',sans-serif;

  background:linear-gradient(
    to right,
    #4fb58f,
    #c58b5b
  );

  background-clip:text;
  -webkit-background-clip:text;

  color:transparent;
  -webkit-text-fill-color:transparent;
}

.neon-hero p{
  color:#cbd5e1;

  line-height:1.9;

  font-size:1.1rem;

  max-width:650px;

  margin-bottom:40px;
}

.neon-buttons{
  display:flex;
  gap:20px;
}

.neon-btn-main,
.neon-btn-secondary{
  padding:18px 28px;

  border-radius:18px;

  text-decoration:none;

  font-weight:700;

  transition:.3s;
}

.neon-btn-main{
  background:linear-gradient(
    to right,
    #4fb58f,
    #2f7d62
  );

  color:white;

  box-shadow:
  0 0 40px rgba(79,181,143,.25);
}

.neon-btn-main:hover{
  transform:translateY(-4px);
}

.neon-btn-secondary{
  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  color:white;
}

/* TANK PREVIEW */

.neon-tank-preview{
  position:relative;

  width:520px;
  height:520px;

  margin:auto;

  border-radius:40px;

  overflow:hidden;

  background:
  linear-gradient(
    to bottom,
    rgba(79,181,143,.08),
    rgba(0,0,0,.9)
  );

  border:1px solid rgba(255,255,255,.08);

  box-shadow:
  0 0 80px rgba(79,181,143,.18),
  0 0 120px rgba(197,139,91,.12);
}

.tank-light{
  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:120px;

  background:
  linear-gradient(
    to bottom,
    rgba(79,181,143,.6),
    transparent
  );
}

/* GLOW FISH */

.glow-fish{
  position:absolute;

  width:80px;
  height:35px;

  border-radius:999px;

  filter:blur(.3px);
}

.fish-1{
  top:160px;
  left:120px;

  background:#4fb58f;

  box-shadow:
  0 0 25px #4fb58f;

  animation:swim1 8s ease-in-out infinite;
}

.fish-2{
  top:240px;
  right:140px;

  background:#c58b5b;

  box-shadow:
  0 0 25px #c58b5b;

  animation:swim2 9s ease-in-out infinite;
}

.fish-3{
  bottom:170px;
  left:180px;

  background:#74c69d;

  box-shadow:
  0 0 25px #74c69d;

  animation:swim3 10s ease-in-out infinite;
}

.fish-4{
  bottom:120px;
  right:120px;

  background:#5fae9d;

  box-shadow:
  0 0 25px #5fae9d;

  animation:swim4 7s ease-in-out infinite;
}

/* STATS */

.neon-stats{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:20px;

  padding:0 7% 80px;
}

.neon-stat{
  padding:30px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  text-align:center;
}

.neon-stat h3{
  color:#8fd8b3;

  margin-bottom:10px;

  font-size:2rem;
}

/* LAYOUT */

.neon-layout{
  display:grid;

  grid-template-columns:1.15fr .45fr;

  gap:40px;

  padding:0 7% 120px;
}

.neon-main{
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* SECTION */

.neon-section{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.neon-section-header{
  display:flex;
  align-items:center;
  gap:20px;
}

.neon-section-header span{
  font-size:4rem;

  color:rgba(79,181,143,.15);

  font-family:'Poppins',sans-serif;
}

.neon-section-header h2{
  font-size:2.6rem;

  font-family:'Poppins',sans-serif;
}

.neon-panel{
  padding:40px;

  border-radius:30px;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.08);
}

.neon-panel p{
  color:#cbd5e1;

  line-height:1.9;

  margin-bottom:30px;
}

/* BUILD GRID */

.build-grid-neon{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

  gap:20px;
}

.build-item{
  padding:22px;

  border-radius:20px;

  background:
  linear-gradient(
    135deg,
    rgba(79,181,143,.08),
    rgba(255,255,255,.03)
  );

  border:1px solid rgba(255,255,255,.08);

  font-weight:600;
}

/* FISH PAIRS */

.fish-pair-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

  gap:24px;
}

.pair-card{
  overflow:hidden;

  border-radius:26px;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.08);
}

.pair-top{
  padding:24px;

  font-size:1.4rem;

  font-weight:700;
}

.blue-glow{
  background:
  linear-gradient(
    to right,
    rgba(79,181,143,.25),
    transparent
  );
}

.pink-glow{
  background:
  linear-gradient(
    to right,
    rgba(197,139,91,.25),
    transparent
  );
}

.cyan-glow{
  background:
  linear-gradient(
    to right,
    rgba(0,255,204,.25),
    transparent
  );
}

.pair-content{
  padding:30px;
}

.pair-content p{
  color:#cbd5e1;

  line-height:1.8;

  margin-bottom:20px;
}

.pair-tags{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.pair-tags span{
  padding:8px 14px;

  border-radius:999px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.08);

  font-size:.82rem;
}

/* LIGHTING */

.lighting-stack{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.lighting-card{
  padding:28px;

  border-radius:22px;

  background:rgba(255,255,255,.04);

  border-left:4px solid #4fb58f;

  border-top:1px solid rgba(255,255,255,.08);

  border-right:1px solid rgba(255,255,255,.08);

  border-bottom:1px solid rgba(255,255,255,.08);
}

.lighting-card h3{
  margin-bottom:12px;
}

/* MISTAKES */

.mistake-neon-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

  gap:20px;
}

.mistake-neon{
  padding:24px;

  border-radius:22px;

  background:
  linear-gradient(
    135deg,
    rgba(197,139,91,.08),
    rgba(255,255,255,.03)
  );

  border:1px solid rgba(255,255,255,.08);

  font-weight:600;
}

/* SIDEBAR */

.neon-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.neon-sidebar-card{
  padding:30px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);
}

.neon-sidebar-card h3{
  margin-bottom:18px;
}

.neon-sidebar-card ul{
  padding-left:20px;
}

.neon-sidebar-card li{
  margin-bottom:12px;

  color:#dbeafe;
}

.neon-sidebar-card p{
  color:#cbd5e1;

  line-height:1.8;
}

/* FOOTER */

.neon-footer{
  border-top:1px solid rgba(79,181,143,.12);
}

/* ANIMATIONS */

@keyframes swim1{

  0%{
    transform:translateX(0px);
  }

  50%{
    transform:translateX(40px);
  }

  100%{
    transform:translateX(0px);
  }

}

@keyframes swim2{

  0%{
    transform:translateX(0px);
  }

  50%{
    transform:translateX(-40px);
  }

  100%{
    transform:translateX(0px);
  }

}

@keyframes swim3{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-20px);
  }

  100%{
    transform:translateY(0px);
  }

}

@keyframes swim4{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(20px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* RESPONSIVE */

@media(max-width:1100px){

  .neon-hero,
  .neon-layout{
    grid-template-columns:1fr;
  }

  .neon-stats{
    grid-template-columns:1fr;
  }

  .neon-hero{
    text-align:center;
  }

  .neon-buttons{
    justify-content:center;
  }

  .neon-tank-preview{
    width:100%;
    max-width:520px;
  }

}

@media(max-width:768px){

  .neon-hero h1{
    font-size:3.5rem;
  }

  .neon-section-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .neon-section-header h2{
    font-size:2rem;
  }

  .neon-panel{
    padding:30px;
  }

}

.neon-amazon-btn{
  display:inline-block;

  margin-top:22px;

  padding:14px 22px;

  border-radius:14px;

  background:
  linear-gradient(
    to right,
    #4fb58f,
    #2f7d62
  );

  color:white;

  text-decoration:none;

  font-weight:700;

  transition:.3s;

  box-shadow:
  0 0 25px rgba(79,181,143,.18);
}

.neon-amazon-btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 0 35px rgba(79,181,143,.32);
}

/* PLANT POPUP */

.plant-popup-overlay{
  position:fixed;

  inset:0;

  background:rgba(0,0,0,.75);

  backdrop-filter:blur(8px);

  display:none;

  align-items:center;
  justify-content:center;

  z-index:9999;
}

.plant-popup{
  width:90%;
  max-width:700px;

  padding:40px;

  border-radius:30px;

  background:
  linear-gradient(
    135deg,
    rgba(79,181,143,.08),
    rgba(197,139,91,.06)
  );

  border:1px solid rgba(255,255,255,.08);

  position:relative;

  box-shadow:
  0 0 80px rgba(79,181,143,.18);
}

.plant-popup h2{
  font-size:2.4rem;

  margin-bottom:30px;

  font-family:'Poppins',sans-serif;
}

.popup-section{
  margin-bottom:28px;
}

.popup-section h3{
  margin-bottom:14px;

  color:#8fd8b3;
}

.popup-section ul{
  padding-left:20px;
}

.popup-section li{
  margin-bottom:10px;

  color:#dbeafe;
}

.close-popup{
  position:absolute;

  top:20px;
  right:20px;

  width:42px;
  height:42px;

  border:none;

  border-radius:50%;

  background:rgba(255,255,255,.08);

  color:white;

  cursor:pointer;

  font-size:1rem;

  transition:.3s;
}

.close-popup:hover{
  background:#ff4d4d;
}

/* JUNGLE TANK PAGE */

.jungle-page{
  background:#04110a;
}

/* HERO */

.jungle-hero{
  position:relative;

  min-height:100vh;

  padding-bottom:120px;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.55),
    rgba(4,17,10,.95)
  ),
  url('./amazon_river.png');

  background-size:cover;

  background-position:center;

  overflow:hidden;
}

.jungle-overlay{
  position:absolute;
  inset:0;

  background:
  radial-gradient(
    circle at top,
    rgba(0,255,140,.12),
    transparent 60%
  );
}

.jungle-nav{
  position:relative;
  z-index:5;

  background:rgba(0,0,0,.35);
}

.jungle-hero-content{
  position:relative;
  z-index:5;

  max-width:900px;

  padding:120px 7% 0;
}

.jungle-badge{
  display:inline-block;

  padding:12px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.08);

  color:#9ee6b5;

  margin-bottom:30px;
}

.jungle-hero h1{
  font-size:6rem;

  line-height:.92;

  margin-bottom:30px;

  font-family:'Poppins',sans-serif;
}

.jungle-hero p{
  max-width:700px;

  color:#d1fae5;

  line-height:1.9;

  font-size:1.1rem;

  margin-bottom:40px;
}

.jungle-buttons{
  display:flex;
  gap:20px;
}

.jungle-btn-main,
.jungle-btn-secondary{
  padding:18px 28px;

  border-radius:18px;

  text-decoration:none;

  font-weight:700;

  transition:.3s;
}

.jungle-btn-main{
  background:
  linear-gradient(
    to right,
    #4fb58f,
    #8fd8b3
  );

  color:#02150b;

  box-shadow:
  0 0 40px rgba(0,255,157,.18);
}

.jungle-btn-main:hover{
  transform:translateY(-4px);
}

.jungle-btn-secondary{
  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.08);

  color:white;
}

/* QUICK BAR */

.jungle-quick-bar{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:20px;

  padding:0 7% 90px;
}

.quick-box{
  padding:24px;

  border-radius:22px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  text-align:center;

  font-weight:600;
}

/* LAYOUT */

.jungle-layout{
  display:grid;

  grid-template-columns:1.1fr .45fr;

  gap:40px;

  padding:0 7% 120px;
}

.jungle-main{
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* SECTION */

.jungle-section{
  display:grid;

  grid-template-columns:90px 1fr;

  gap:24px;
}

.jungle-number{
  font-size:4rem;

  font-family:'Poppins',sans-serif;

  color:rgba(0,255,157,.15);
}

.jungle-card{
  padding:45px;

  border-radius:30px;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.06);
}

.jungle-card h2{
  font-size:2.5rem;

  margin-bottom:24px;

  font-family:'Poppins',sans-serif;
}

.jungle-card p{
  color:#d1fae5;

  line-height:1.9;

  margin-bottom:22px;
}

/* HIGHLIGHT */

.jungle-highlight{
  margin-top:35px;

  padding:30px;

  border-radius:24px;

  background:
  linear-gradient(
    135deg,
    rgba(0,255,157,.08),
    rgba(255,255,255,.03)
  );

  border:1px solid rgba(255,255,255,.08);
}

.jungle-highlight h3{
  margin-bottom:18px;
}

.jungle-highlight ul{
  padding-left:20px;
}

.jungle-highlight li{
  margin-bottom:12px;

  color:#d1fae5;
}

/* PLANT GRID */

.jungle-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

  gap:24px;

  margin-top:30px;
}

.jungle-plant-card{
  padding:28px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);
}

.jungle-plant-card h3{
  margin-bottom:14px;
}

/* HARDSCAPE */

.hardscape-stack{
  display:flex;
  flex-direction:column;
  gap:22px;

  margin-top:30px;
}

.hardscape-item{
  padding:28px;

  border-radius:22px;

  background:
  linear-gradient(
    135deg,
    rgba(0,255,157,.06),
    rgba(255,255,255,.03)
  );

  border-left:4px solid #8fd8b3;

  border-top:1px solid rgba(255,255,255,.08);

  border-right:1px solid rgba(255,255,255,.08);

  border-bottom:1px solid rgba(255,255,255,.08);
}

.hardscape-item h3{
  margin-bottom:12px;
}

/* LIGHTING */

.lighting-jungle-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

  gap:22px;

  margin-top:30px;
}

.lighting-jungle-card{
  padding:28px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);
}

.lighting-jungle-card h3{
  margin-bottom:14px;
}

/* MISTAKES */

.mistake-jungle-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

  gap:20px;

  margin-top:30px;
}

.mistake-jungle{
  padding:24px;

  border-radius:20px;

  background:
  linear-gradient(
    135deg,
    rgba(255,70,70,.08),
    rgba(255,255,255,.03)
  );

  border:1px solid rgba(255,255,255,.08);

  font-weight:600;
}

/* SIDEBAR */

.jungle-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.jungle-sidebar-card{
  padding:30px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);
}

.jungle-sidebar-card h3{
  margin-bottom:18px;
}

.jungle-sidebar-card ul{
  padding-left:20px;
}

.jungle-sidebar-card li{
  margin-bottom:12px;

  color:#d1fae5;
}

/* FOOTER */

.jungle-footer{
  border-top:1px solid rgba(0,255,157,.12);
}

/* RESPONSIVE */

@media(max-width:1100px){

  .jungle-layout{
    grid-template-columns:1fr;
  }

  .jungle-quick-bar{
    grid-template-columns:1fr 1fr;
  }

  .jungle-hero h1{
    font-size:4.5rem;
  }

}

@media(max-width:768px){

  .jungle-section{
    grid-template-columns:1fr;
  }

  .jungle-hero h1{
    font-size:3.2rem;
  }

  .jungle-quick-bar{
    grid-template-columns:1fr;
  }

  .jungle-card{
    padding:30px;
  }

}

/* UPLOAD INPUT */

.upload-label{
  display:block;

  margin-bottom:12px;

  color:#dbeafe;

  font-weight:600;
}

.upload-input{
  width:100%;

  padding:18px;

  border-radius:18px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  color:white;

  margin-bottom:24px;

  cursor:pointer;
}

.upload-input::file-selector-button{
  padding:12px 18px;

  border:none;

  border-radius:12px;

  margin-right:18px;

  background:
  linear-gradient(
    to right,
    #4fb58f,
    #c58b5b
  );

  color:white;

  font-weight:700;

  cursor:pointer;
}

/* ===================================== */
/* FULL MOBILE RESPONSIVE IMPROVEMENTS */
/* ===================================== */

img{
  max-width:100%;
  display:block;
}

body{
  overflow-x:hidden;
}

/* MOBILE NAV */

@media(max-width:768px){

  .navbar{
    padding:18px 5%;
  }

  .brand{
    gap:12px;
  }

  .brand-ring{
    width:56px;
    height:56px;
  }

  .brand-text h1{
    font-size:.8rem;
  }

  .brand-text p{
    font-size:.7rem;
  }

  nav{
    display:none;
  }

}

/* HERO MOBILE */

@media(max-width:768px){

  .hero{
    padding:40px 5% 80px;

    gap:40px;
  }

  .hero h2{
    font-size:2.9rem;

    line-height:1.05;
  }

  .hero-text{
    font-size:.96rem;

    line-height:1.8;
  }

  .hero-actions{
    flex-direction:column;

    width:100%;
  }

  .btn-main,
  .btn-ghost{
    width:100%;

    text-align:center;
  }

}

/* ORBITAL */

@media(max-width:768px){

  .orbital-container{
    width:100%;
    max-width:340px;

    height:340px;
  }

  .logo-core{
    inset:55px;
  }

}

/* GUIDE SECTION */

@media(max-width:768px){

  .guide-layout{
    gap:20px;
  }

  .guide-large{
    min-height:420px;

    background-position:center;
  }

  .guide-large-content{
    left:24px;
    right:24px;
    bottom:24px;
  }

  .guide-large-content h3{
    font-size:2rem;
  }

  .guide-box{
    padding:22px;
  }

  .guide-left h4{
    font-size:1rem;
  }

  .guide-link{
    font-size:.9rem;
  }

}

/* BUILD CARDS */

@media(max-width:768px){

  .build-grid{
    grid-template-columns:1fr;
  }

  .build-card{
    height:320px;
  }

  .build-info{
    left:22px;
    bottom:22px;
  }

  .build-info h3{
    font-size:1.6rem;
  }

}

/* GEAR */

@media(max-width:768px){

  .gear-grid{
    grid-template-columns:1fr;
  }

  .gear-card{
    padding:28px;
  }

}

/* CREATOR FORM */

@media(max-width:768px){

  .creator-section{
    padding:80px 5%;
  }

  .creator-panel{
    padding:28px;

    gap:30px;

    border-radius:28px;
  }

  .creator-left h2{
    font-size:2.2rem;

    line-height:1.1;
  }

  .creator-form input,
  .creator-form textarea{
    padding:16px;
  }

}

/* ARTICLES */

@media(max-width:768px){

  .article-grid{
    grid-template-columns:1fr;
  }

  .article-image{
    height:200px;
  }

  .article-content{
    padding:24px;
  }

}

/* ARTICLE PAGES */

@media(max-width:768px){

  .article-container{
    padding:20px 5% 80px;
  }

  .article-content-main{
    padding:24px;
  }

  .article-content-main h2{
    font-size:2rem;
  }

  .fish-grid,
  .plant-list{
    grid-template-columns:1fr;
  }

}

/* WHY FISH HIDE */

@media(max-width:768px){

  .hide-hero{
    padding:120px 5% 80px;
  }

  .hide-hero h1{
    font-size:2.5rem;

    line-height:1.1;
  }

  .hide-layout{
    padding:40px 5% 80px;
  }

  .hide-section-content{
    padding:24px;
  }

}

/* NEON PAGE */

@media(max-width:768px){

  .neon-hero{
    padding:120px 5% 80px;
  }

  .neon-hero h1{
    font-size:3rem;

    line-height:1;
  }

  .neon-tank-preview{
    height:360px;
  }

  .neon-layout{
    padding:0 5% 80px;
  }

  .neon-panel{
    padding:24px;
  }

  .fish-pair-grid{
    grid-template-columns:1fr;
  }

}

/* JUNGLE PAGE */

@media(max-width:768px){

  .jungle-hero{
    padding-bottom:80px;
  }

  .jungle-hero-content{
    padding:120px 5% 0;
  }

  .jungle-hero h1{
    font-size:2.8rem;

    line-height:1.05;
  }

  .jungle-buttons{
    flex-direction:column;
  }

  .jungle-btn-main,
  .jungle-btn-secondary{
    width:100%;

    text-align:center;
  }

  .jungle-layout{
    padding:0 5% 80px;
  }

  .jungle-card{
    padding:24px;
  }

}

/* FOOTER */

@media(max-width:768px){

  .footer{
    padding:60px 5%;
  }

  .footer-links{
    gap:18px;
  }

}

/* EXTRA SMALL DEVICES */

@media(max-width:480px){

  .hero h2,
  .article-hero h1,
  .hide-hero h1,
  .neon-hero h1,
  .jungle-hero h1{
    font-size:2.3rem;
  }

  .section-heading h2{
    font-size:2rem;
  }

  .guide-large-content h3{
    font-size:1.7rem;
  }

  .creator-left h2{
    font-size:1.8rem;
  }

  .build-card{
    height:280px;
  }

}

/* ===================================== */
/* NATURAL AQUARIUM THEME REFINEMENTS    */
/* Less futuristic, more warm jungle tank */
/* ===================================== */

:root{
  --bg-deep:#07120d;
  --bg-soft:#0c1b13;
  --panel:rgba(255,255,255,.045);
  --panel-strong:rgba(255,255,255,.07);
  --line:rgba(210,230,210,.10);
  --text:#f5f7ef;
  --muted:#bfd0c2;
  --soft:#93c5a3;
  --green:#4fb58f;
  --green-dark:#2f7d62;
  --wood:#c58b5b;
  --water:#5fae9d;
}

body,
.neon-page,
.jungle-page{
  background:
    radial-gradient(circle at top left, rgba(79,181,143,.12), transparent 34%),
    linear-gradient(180deg, #07120d 0%, #0b1812 45%, #07120d 100%);
  color:var(--text);
}

.scan-lines,
.neon-bg-grid{
  display:none !important;
}

.bg-noise{
  background-image:radial-gradient(rgba(180,210,170,.06) 1px, transparent 1px);
  background-size:28px 28px;
  opacity:.12;
}

.water-glow,
.neon-orb{
  filter:blur(120px);
  opacity:.10 !important;
}

.glow-left,
.orb-1{
  background:var(--green);
}

.glow-right,
.orb-2,
.orb-3{
  background:var(--wood);
}

.navbar,
.neon-nav,
.jungle-nav{
  background:rgba(7,18,13,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.brand-ring{
  background:linear-gradient(135deg,var(--green),var(--wood));
  box-shadow:0 8px 24px rgba(0,0,0,.22);
}

.brand-text h1,
.hero h2,
.section-heading h2,
.creator-left h2,
.article-hero h1,
.article-content-main h2,
.hide-hero h1,
.hide-section-content h2,
.neon-hero h1,
.neon-section-header h2,
.jungle-hero h1,
.jungle-card h2,
.footer h2{
  font-family:'Poppins',sans-serif;
  font-weight:800;
  letter-spacing:-.04em;
}

.brand-text p,
.hero-text,
.gear-card p,
.creator-left p,
.article-content p,
.article-content-main p,
.sidebar-card p,
.hide-hero p,
.hide-section-content p,
.neon-hero p,
.neon-panel p,
.jungle-hero p,
.jungle-card p,
.footer p{
  color:var(--muted);
}

.floating-badge,
.article-badge,
.hide-badge,
.neon-tag,
.jungle-badge{
  background:rgba(143,216,179,.09);
  border:1px solid rgba(143,216,179,.16);
  color:#b7f0c6;
  box-shadow:none;
}

.hero h2 span,
.neon-hero h1{
  background:linear-gradient(135deg,#b7f0c6,#73c49a 50%,#d2a679);
  background-clip:text;
  -webkit-background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
}

.btn-main,
.neon-btn-main,
.jungle-btn-main,
.neon-amazon-btn,
.creator-form button,
.upload-input::file-selector-button{
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:#f8fff9;
  box-shadow:0 12px 28px rgba(47,125,98,.22);
}

.btn-main:hover,
.neon-btn-main:hover,
.jungle-btn-main:hover,
.neon-amazon-btn:hover,
.build-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 32px rgba(47,125,98,.20);
}

.btn-ghost,
.neon-btn-secondary,
.jungle-btn-secondary,
.mini-card,
.guide-box,
.gear-card,
.creator-panel,
.article-card,
.article-content-main,
.fish-card,
.sidebar-card,
.warning-item,
.hide-section-content,
.reason-card,
.solution-item,
.final-tip,
.sidebar-info,
.neon-panel,
.neon-stat,
.neon-sidebar-card,
.pair-card,
.build-item,
.lighting-card,
.mistake-neon,
.plant-popup,
.jungle-card,
.quick-box,
.jungle-plant-card,
.jungle-highlight,
.hardscape-item,
.lighting-jungle-card,
.jungle-sidebar-card,
.upload-input{
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border:1px solid var(--line);
  box-shadow:0 16px 40px rgba(0,0,0,.16);
}

.gear-card,
.info-panel,
.tip-box,
.highlight-box{
  background:linear-gradient(135deg,rgba(79,181,143,.10),rgba(197,139,91,.045));
  border-color:rgba(143,216,179,.16);
}

.guide-box::before{
  background:linear-gradient(90deg,rgba(79,181,143,.07),transparent,rgba(197,139,91,.06));
}

.guide-box:hover{
  border-color:rgba(143,216,179,.42);
  box-shadow:0 14px 32px rgba(47,125,98,.16);
}

nav a::after{
  background:var(--green);
}

.mini-card h3,
.section-heading span,
.guide-large-content small,
.guide-large-content a,
.guide-link,
.gear-card a,
.creator-left span,
.article-content small,
.fish-stats span,
.popup-section h3{
  color:#9ee6b5;
}

.trend-bar{
  background:rgba(143,216,179,.045);
  border-color:var(--line);
}

.trend-track span{
  color:#b7f0c6;
}

.orb-ring{
  display:none;
}

.logo-core{
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.orbital-container{
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.25));
}

.build-card,
.guide-large,
.neon-tank-preview{
  border-color:var(--line);
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}

.neon-tank-preview{
  background:linear-gradient(to bottom,rgba(79,181,143,.12),rgba(7,18,13,.94));
}

.tank-light{
  background:linear-gradient(to bottom,rgba(95,174,157,.38),transparent);
}

.glow-fish{
  filter:none;
  opacity:.95;
}

.fish-1,.fish-2,.fish-3,.fish-4{
  box-shadow:0 0 14px currentColor;
}

.problem-card{
  border-left-color:#c97a67;
}

.good-side{
  background:rgba(79,181,143,.10);
  border-color:rgba(79,181,143,.20);
}

.bad-side{
  background:rgba(201,122,103,.10);
  border-color:rgba(201,122,103,.20);
}

.creator-form input,
.creator-form textarea{
  background:rgba(255,255,255,.055);
  border:1px solid var(--line);
  color:var(--text);
}

.creator-form input::placeholder,
.creator-form textarea::placeholder{
  color:rgba(191,208,194,.72);
}

.section-number,
.neon-section-header span,
.jungle-number{
  color:rgba(143,216,179,.18);
}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation:none !important;
    transition:none !important;
  }
}

/* FIX SIDE PANELS MOVING / OVERLAPPING */

.sidebar-info,
.article-sidebar,
.sidebar-card,
.hide-sidebar,
.neon-sidebar,
.neon-sidebar-card,
.jungle-sidebar,
.jungle-sidebar-card{
  position:static !important;
  top:auto !important;
  align-self:start;
}

/* GUIDES CTA */

.guides-cta{
  padding:100px 7%;
}

.guides-cta-content{
  max-width:1100px;

  margin:auto;

  padding:70px;

  border-radius:36px;

  background:
  linear-gradient(
    135deg,
    rgba(22,34,26,.95),
    rgba(18,24,20,.95)
  );

  border:1px solid rgba(255,255,255,.06);

  text-align:center;

  position:relative;

  overflow:hidden;

  box-shadow:
  0 20px 60px rgba(0,0,0,.35);
}

.guides-cta-content::before{
  content:'';

  position:absolute;

  inset:0;

  background:
  radial-gradient(
    circle at top,
    rgba(0,255,140,.08),
    transparent 60%
  );

  pointer-events:none;
}

.guides-cta span{
  color:#7ee7a8;

  letter-spacing:2px;

  font-size:.85rem;

  font-weight:600;
}

.guides-cta h2{
  font-size:3.5rem;

  line-height:1.05;

  margin:22px 0;

  color:white;
}

.guides-cta p{
  max-width:700px;

  margin:auto;

  color:#cbd5e1;

  line-height:1.9;

  font-size:1.05rem;

  margin-bottom:34px;
}

.guides-cta-btn{
  display:inline-block;

  padding:18px 30px;

  border-radius:18px;

  background:
  linear-gradient(
    to right,
    #00c76a,
    #00ff9d
  );

  color:#04110a;

  text-decoration:none;

  font-weight:700;

  transition:.3s;
}

.guides-cta-btn:hover{
  transform:translateY(-4px);
}

/* MOBILE */

@media(max-width:768px){

  .guides-cta{
    padding:70px 5%;
  }

  .guides-cta-content{
    padding:40px 26px;
  }

  .guides-cta h2{
    font-size:2.4rem;
  }

}

/* ========================================= */
/* GUIDES PAGE */
/* ========================================= */

.guides-page{
  background:
  linear-gradient(
    to bottom,
    #06110b,
    #08150d
  );

  min-height:100vh;
}

/* HERO */

.article-hero{
  padding:150px 7% 90px;

  text-align:center;

  position:relative;

  overflow:hidden;
}

.article-hero::before{
  content:'';

  position:absolute;

  inset:0;

  background:
  radial-gradient(
    circle at top,
    rgba(0,255,140,.08),
    transparent 60%
  );

  pointer-events:none;
}

.article-hero-content{
  position:relative;

  z-index:2;

  max-width:950px;

  margin:auto;
}

.article-badge{
  display:inline-block;

  padding:12px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.08);

  color:#7ee7a8;

  margin-bottom:28px;

  font-weight:600;

  letter-spacing:1px;
}

.article-hero h1{
  font-size:5rem;

  line-height:1;

  margin-bottom:28px;

  color:white;
}

.article-hero p{
  color:#cbd5e1;

  line-height:1.9;

  font-size:1.08rem;

  max-width:760px;

  margin:auto;
}

/* GUIDE GRID */

.build-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:30px;
}

/* GUIDE CARDS */

.build-card{
  position:relative;

  min-height:420px;

  border-radius:30px;

  overflow:hidden;

  transition:.35s ease;

  border:1px solid rgba(255,255,255,.06);

  box-shadow:
  0 15px 40px rgba(0,0,0,.28);
}

.build-card::after{
  content:'';

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.88),
    rgba(0,0,0,.12)
  );
}

.build-card:hover{
  transform:translateY(-8px);

  box-shadow:
  0 25px 60px rgba(0,0,0,.4);
}

/* GUIDE BACKGROUNDS */

.build-1{
  background:
  url('./glowfish_forest.png');

  background-size:cover;
  background-position:center;
}

.build-2{
  background:
  url('./amazon_river.png');

  background-size:cover;
  background-position:center;
}

.build-3{
  background:
  url('./blue_neon.png');

  background-size:cover;
  background-position:center;
}

/* GUIDE INFO */

.build-info{
  position:absolute;

  bottom:30px;
  left:30px;
  right:30px;

  z-index:5;
}

.build-info h3{
  font-size:2rem;

  margin-bottom:14px;

  color:white;
}

.build-info p{
  color:#dbeafe;

  line-height:1.8;

  margin-bottom:22px;
}

/* GUIDE BUTTON */

.guide-link{
  display:inline-block;

  padding:14px 22px;

  border-radius:14px;

  background:
  linear-gradient(
    to right,
    #00c76a,
    #00ff9d
  );

  color:#04110a;

  text-decoration:none;

  font-weight:700;

  transition:.3s;
}

.guide-link:hover{
  transform:translateY(-3px);

  box-shadow:
  0 10px 30px rgba(0,255,157,.2);
}

/* CTA PANEL */

.creator-panel{
  background:
  linear-gradient(
    135deg,
    rgba(20,30,24,.95),
    rgba(12,18,14,.95)
  );

  border:1px solid rgba(255,255,255,.06);

  box-shadow:
  0 20px 60px rgba(0,0,0,.3);
}

/* FOOTER */

.footer{
  border-top:1px solid rgba(255,255,255,.06);
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:768px){

  .article-hero{
    padding:120px 5% 70px;
  }

  .article-hero h1{
    font-size:3rem;

    line-height:1.05;
  }

  .article-hero p{
    font-size:.98rem;
  }

  .build-grid{
    grid-template-columns:1fr;

    gap:28px;
  }

  .build-card{
    min-height:440px;

    border-radius:28px;
  }

  .build-info{
    left:22px;
    right:22px;
    bottom:24px;
  }

  .build-info h3{
    font-size:2rem;

    line-height:1.05;

    margin-bottom:14px;

    max-width:95%;
  }

.build-info p{
  font-size:1rem;

  line-height:1.8;

  color:#d7e5dc;

  max-width:92%;

  margin-bottom:24px;
}

/* Better spacing specifically for crystal clear card */

  .guide-link{
    padding:14px 22px;

    font-size:1rem;
  }

}

@media(max-width:480px){

  .article-hero h1{
    font-size:2.4rem;
  }

  .build-card{
    min-height:470px;
  }

  .build-info h3{
    font-size:1.75rem;
  }

  .build-info p{
    font-size:.96rem;
  }

}
/* ===================================== */
/* GLOFISH GUIDE PAGE */
/* ===================================== */

.glofish-hero{
  position:relative;

  min-height:100vh;

  display:grid;

  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:60px;

  padding:120px 7% 100px;

  overflow:hidden;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.45),
    rgba(2,4,15,.95)
  ),
  url('./blue_neon.png');

  background-size:cover;

  background-position:center;
}

.glofish-overlay{
  position:absolute;

  inset:0;

  background:
  radial-gradient(
    circle at top,
    rgba(0,217,255,.14),
    transparent 60%
  );
}

.glofish-hero-content{
  position:relative;

  z-index:2;
}

.glofish-badge{
  display:inline-block;

  padding:12px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.08);

  color:#67e8f9;

  margin-bottom:28px;
}

.glofish-hero h1{
  font-size:6rem;

  line-height:.92;

  margin-bottom:30px;

  font-family:'Orbitron',sans-serif;

  background:
  linear-gradient(
    to right,
    #00d9ff,
    #ff00f7
  );

  background-clip:text;
  -webkit-background-clip:text;

  color:transparent;
  -webkit-text-fill-color:transparent;
}

.glofish-hero p{
  color:#cbd5e1;

  line-height:1.9;

  font-size:1.08rem;

  max-width:700px;

  margin-bottom:40px;
}

/* BUTTONS */

.glofish-buttons{
  display:flex;

  gap:20px;

  flex-wrap:wrap;
}

.glofish-btn-main,
.glofish-btn-secondary{
  padding:18px 28px;

  border-radius:18px;

  text-decoration:none;

  font-weight:700;

  transition:.3s;
}

.glofish-btn-main{
  background:
  linear-gradient(
    to right,
    #00d9ff,
    #008cff
  );

  color:white;

  box-shadow:
  0 0 40px rgba(0,217,255,.18);
}

.glofish-btn-main:hover{
  transform:translateY(-4px);
}

.glofish-btn-secondary{
  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  color:white;
}

/* PREVIEW TANK */

.glofish-preview{
  position:relative;

  width:520px;
  height:520px;

  margin:auto;

  border-radius:40px;

  overflow:hidden;

  border:1px solid rgba(255,255,255,.08);

  background:
  linear-gradient(
    to bottom,
    rgba(0,217,255,.08),
    rgba(0,0,0,.92)
  );

  box-shadow:
  0 0 80px rgba(0,217,255,.18),
  0 0 120px rgba(255,0,247,.12);
}

.glofish-preview::before{
  content:'';

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:120px;

  background:
  linear-gradient(
    to bottom,
    rgba(0,217,255,.45),
    transparent
  );
}

/* INFO STRIP */

.glofish-strip{
  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:20px;

  padding:0 7% 90px;
}

.glofish-strip-box{
  padding:24px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  text-align:center;

  font-weight:600;
}

/* MAIN LAYOUT */

.glofish-layout{
  display:grid;

  grid-template-columns:1.15fr .45fr;

  gap:40px;

  padding:0 7% 120px;
}

.glofish-main{
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* SECTION */

.glofish-section{
  display:grid;

  grid-template-columns:90px 1fr;

  gap:24px;
}

.glofish-number{
  font-size:4rem;

  font-family:'Orbitron',sans-serif;

  color:rgba(0,217,255,.14);
}

.glofish-card{
  padding:45px;

  border-radius:30px;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.06);
}

.glofish-card h2{
  font-size:2.5rem;

  margin-bottom:24px;

  font-family:'Orbitron',sans-serif;
}

.glofish-card p{
  color:#cbd5e1;

  line-height:1.95;

  margin-bottom:22px;
}

/* HIGHLIGHT */

.glofish-highlight{
  margin-top:35px;

  padding:30px;

  border-radius:24px;

  background:
  linear-gradient(
    135deg,
    rgba(0,217,255,.08),
    rgba(255,0,247,.05)
  );

  border:1px solid rgba(255,255,255,.08);
}

.glofish-highlight h3{
  margin-bottom:18px;
}

.glofish-highlight ul{
  padding-left:20px;
}

.glofish-highlight li{
  margin-bottom:12px;

  color:#dbeafe;
}

/* GRID */

.glofish-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

  gap:24px;

  margin-top:30px;
}

.glofish-item{
  padding:28px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);
}

.glofish-item h3{
  margin-bottom:14px;
}

/* STACK */

.glofish-stack{
  display:flex;

  flex-direction:column;

  gap:22px;

  margin-top:30px;
}

.glofish-stack-card{
  padding:28px;

  border-radius:22px;

  background:
  linear-gradient(
    135deg,
    rgba(0,217,255,.06),
    rgba(255,255,255,.03)
  );

  border-left:4px solid #00d9ff;

  border-top:1px solid rgba(255,255,255,.08);

  border-right:1px solid rgba(255,255,255,.08);

  border-bottom:1px solid rgba(255,255,255,.08);
}

.glofish-stack-card h3{
  margin-bottom:12px;
}

/* SIDEBAR */

.glofish-sidebar{
  display:flex;

  flex-direction:column;

  gap:24px;
}

.glofish-sidebar-card{
  padding:30px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);
}

.glofish-sidebar-card h3{
  margin-bottom:18px;
}

.glofish-sidebar-card ul{
  padding-left:20px;
}

.glofish-sidebar-card li{
  margin-bottom:12px;

  color:#dbeafe;
}

/* FOOTER */

.glofish-footer{
  border-top:1px solid rgba(0,217,255,.12);
}

/* MOBILE */

@media(max-width:1100px){

  .glofish-hero,
  .glofish-layout{
    grid-template-columns:1fr;
  }

  .glofish-strip{
    grid-template-columns:1fr 1fr;
  }

  .glofish-hero{
    text-align:center;
  }

  .glofish-buttons{
    justify-content:center;
  }

  .glofish-preview{
    width:100%;
    max-width:520px;
  }

}

@media(max-width:768px){

  .glofish-hero{
    padding:120px 5% 80px;
  }

  .glofish-hero h1{
    font-size:3rem;

    line-height:1;
  }

  .glofish-strip{
    grid-template-columns:1fr;
  }

  .glofish-layout{
    padding:0 5% 80px;
  }

  .glofish-section{
    grid-template-columns:1fr;
  }

  .glofish-card{
    padding:28px;
  }

  .glofish-card h2{
    font-size:2rem;
  }

  .glofish-preview{
    height:360px;
  }

}

@media(max-width:480px){

  .glofish-hero h1{
    font-size:2.4rem;
  }

}

/* GLOFISH GUIDE CARD */

.build-4{
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.90),
    rgba(0,0,0,.10)
  ),
  url('./glofishaq.png');

  background-size:cover;

  background-repeat:no-repeat;

  background-position:center center;

  background-color:#050816;
}

/* ===================================== */
/* PROFESSIONAL GUIDE CARD REFINEMENT */
/* ===================================== */

.build-card{
  position:relative;

  border-radius:34px;

  overflow:hidden;

  border:2px solid rgba(0,0,0,.88);

  background-color:#050816;

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;

  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.03) inset;

  isolation:isolate;
}

/* Smooth glass overlay */

.build-card::before{
  content:'';

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.06),
      transparent 22%
    );

  opacity:.7;

  z-index:1;

  pointer-events:none;
}

/* Dark cinematic fade */

.build-card::after{
  content:'';

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.92) 8%,
      rgba(0,0,0,.55) 45%,
      rgba(0,0,0,.08) 100%
    );

  z-index:2;
}

/* Hover */

.build-card:hover{
  transform:
    translateY(-10px)
    scale(1.015);

  border-color:
    rgba(25,25,25,1);

  box-shadow:
    0 30px 70px rgba(0,0,0,.65),
    0 0 35px rgba(79,181,143,.12);
}

.build-card::after{
  content:'';

  position:absolute;

  inset:0;

  border-radius:34px;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03);

  pointer-events:none;
}

/* Background zoom effect */

.build-1,
.build-2,
.build-3,
.build-4{
  transition:
    transform .7s ease,
    filter .7s ease;
}

.build-card:hover .build-1,
.build-card:hover .build-2,
.build-card:hover .build-3,
.build-card:hover .build-4{
  transform:scale(1.04);
}

/* Content */

.build-info{
  position:absolute;

  bottom:34px;
  left:34px;
  right:34px;

  z-index:5;
}

/* Better title */

.build-info h3{
  font-size:2rem;

  font-weight:700;

  letter-spacing:-0.03em;

  margin-bottom:14px;

  color:white;

  text-shadow:
    0 3px 12px rgba(0,0,0,.5);
}

/* Better paragraph */

.build-info p{
  color:#d7e5dc;

  font-size:.98rem;

  line-height:1.8;

  max-width:90%;
}

/* Premium button */

.guide-link{
  display:inline-flex;

  align-items:center;

  gap:10px;

  margin-top:12px;

  padding:14px 22px;

  border-radius:16px;

  background:
    linear-gradient(
      135deg,
      rgba(79,181,143,.95),
      rgba(47,125,98,.95)
    );

  color:white;

  font-weight:600;

  text-decoration:none;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;

  box-shadow:
    0 10px 25px rgba(47,125,98,.25);
}

.guide-link:hover{
  transform:translateY(-3px);

  box-shadow:
    0 18px 30px rgba(47,125,98,.35);

  background:
    linear-gradient(
      135deg,
      #66d3a6,
      #3b8d70
    );
}

/* Make cards feel less cramped */

.build-grid{
  gap:45px;
}

/* Mobile polish */

@media(max-width:768px){

  .build-card{
    border-radius:28px;
  }

  .build-info{
    left:24px;
    right:24px;
    bottom:24px;
  }

  .build-info h3{
    font-size:1.6rem;
  }

}

/* ===================================== */
/* PREMIUM GUIDES BOTTOM SECTION */
/* ===================================== */

.guides-bottom-panel{
  padding:120px 7%;

  position:relative;

  overflow:hidden;
}

.guides-bottom-glow{
  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(79,181,143,.14),
      transparent 65%
    );

  top:-300px;
  right:-200px;

  filter:blur(80px);

  pointer-events:none;
}

.guides-bottom-content{
  position:relative;

  z-index:2;

  display:grid;

  grid-template-columns:1.1fr .75fr;

  gap:40px;

  max-width:1450px;

  margin:auto;

  padding:70px;

  border-radius:42px;

  background:
    linear-gradient(
      135deg,
      rgba(14,22,17,.96),
      rgba(9,16,12,.98)
    );

  border:1px solid rgba(255,255,255,.06);

  box-shadow:
    0 30px 80px rgba(0,0,0,.35),
    0 1px 0 rgba(255,255,255,.04) inset;

  overflow:hidden;
}

/* subtle top glass */

.guides-bottom-content::before{
  content:'';

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.05),
      transparent 18%
    );

  pointer-events:none;
}

.guides-mini-tag{
  display:inline-flex;

  align-items:center;

  gap:10px;

  padding:10px 18px;

  border-radius:999px;

  background:rgba(79,181,143,.08);

  border:1px solid rgba(79,181,143,.14);

  color:#9ee6b5;

  font-size:.82rem;

  letter-spacing:1px;

  font-weight:700;

  margin-bottom:26px;
}

.guides-bottom-left h2{
  font-size:4rem;

  line-height:1;

  letter-spacing:-0.05em;

  margin-bottom:28px;

  max-width:700px;
}

.guides-bottom-left p{
  color:#c7d7ce;

  font-size:1.04rem;

  line-height:1.95;

  max-width:720px;
}

/* stats */

.guides-stats{
  display:flex;

  gap:20px;

  flex-wrap:wrap;

  margin-top:42px;
}

.guide-stat-box{
  min-width:180px;

  padding:26px;

  border-radius:24px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.025)
    );

  border:1px solid rgba(255,255,255,.06);

  transition:.35s ease;
}

.guide-stat-box:hover{
  transform:translateY(-6px);

  border-color:rgba(79,181,143,.22);

  box-shadow:
    0 18px 35px rgba(0,0,0,.25);
}

.guide-stat-box h3{
  font-size:2rem;

  color:#9ee6b5;

  margin-bottom:8px;
}

.guide-stat-box span{
  color:#b8c8be;
}

/* right panel */

.topic-panel{
  height:100%;

  padding:36px;

  border-radius:32px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.02)
    );

  border:1px solid rgba(255,255,255,.06);
}

.topic-list{
  display:flex;

  flex-direction:column;

  gap:18px;

  margin-top:14px;
}

.topic-item{
  display:flex;

  align-items:center;

  gap:18px;

  padding:20px 22px;

  border-radius:20px;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.04);

  transition:.3s ease;
}

.topic-item:hover{
  transform:translateX(6px);

  border-color:rgba(79,181,143,.18);

  background:rgba(79,181,143,.05);
}

.topic-item span{
  font-size:1.3rem;
}

.topic-item p{
  color:#e6f1eb;

  font-weight:500;
}

/* MOBILE */

@media(max-width:1100px){

  .guides-bottom-content{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .guides-bottom-panel{
    padding:80px 5%;
  }

  .guides-bottom-content{
    padding:36px 26px;

    border-radius:30px;
  }

  .guides-bottom-left h2{
    font-size:2.6rem;

    line-height:1.05;
  }

  .guides-stats{
    flex-direction:column;
  }

  .guide-stat-box{
    width:100%;
  }

}

/* ===================================== */
/* PAGE TRANSITIONS */
/* ===================================== */

body{
  animation:pageFade .55s ease;
}

@keyframes pageFade{

  from{
    opacity:0;

    transform:
      translateY(10px)
      scale(.995);

    filter:blur(8px);
  }

  to{
    opacity:1;

    transform:
      translateY(0px)
      scale(1);

    filter:blur(0px);
  }

}

/* Smooth click effect */

a,
button{
  transition:
    opacity .25s ease,
    transform .25s ease;
}

a:active,
button:active{
  transform:scale(.97);
}

/* ===================================== */
/* CRYSTAL CLEAR PAGE */
/* ===================================== */

.crystal-page{
  background:
    radial-gradient(
      circle at top left,
      rgba(79,181,143,.12),
      transparent 35%
    ),

    linear-gradient(
      180deg,
      #07120d 0%,
      #0b1812 45%,
      #07120d 100%
    );

  color:var(--text);
}

/* HERO */

.crystal-hero{
  position:relative;

  min-height:90vh;

  display:flex;

  align-items:center;

  padding:140px 7% 100px;

  overflow:hidden;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.45),
      rgba(7,18,13,.94)
    ),
    url('./crystalclearbg.png');

  background-size:cover;

  background-position:center;
}

.crystal-overlay{
  position:absolute;

  inset:0;

  background:
    radial-gradient(
      circle at top,
      rgba(79,181,143,.10),
      transparent 60%
    );
}

.crystal-content{
  position:relative;

  z-index:2;

  max-width:850px;
}

.crystal-tag{
  display:inline-block;

  padding:12px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);

  color:#9ee6b5;;

  margin-bottom:28px;
}

.crystal-content h1{
  font-size:5.5rem;

  line-height:.95;

  margin-bottom:28px;

  font-family:'Orbitron',sans-serif;
}

.crystal-content p{
  font-size:1.08rem;

  line-height:1.9;

  color:#dbeafe;

  max-width:700px;

  margin-bottom:40px;
}

/* BUTTONS */

.crystal-buttons{
  display:flex;

  gap:20px;

  flex-wrap:wrap;
}

.crystal-btn-main,
.crystal-btn-secondary{
  padding:18px 28px;

  border-radius:18px;

  text-decoration:none;

  font-weight:700;
}

.crystal-btn-main{
  background:
    linear-gradient(
      to right,
      #4fb58f,
      #2f7d62
    );

  color:white;
}

.crystal-btn-secondary{
  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  color:white;
}

/* STRIP */

.crystal-strip{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:20px;

  padding:0 7% 90px;
}

.crystal-strip-box{
  padding:28px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  text-align:center;
}

/* MAIN */

.crystal-layout{
  display:grid;

  grid-template-columns:1fr .4fr;

  gap:40px;

  padding:0 7% 100px;
}

.crystal-main{
  display:flex;

  flex-direction:column;

  gap:40px;
}

/* CARDS */

.crystal-card{
  position:relative;

  padding:42px;

  border-radius:32px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  border:1px solid rgba(255,255,255,.06);
}

.crystal-number{
  position:absolute;

  top:24px;
  right:30px;

  font-size:4rem;

  color:rgba(79,181,143,.10);

  font-family:'Orbitron',sans-serif;
}

.crystal-card h2{
  font-size:2.4rem;

  margin-bottom:22px;

  font-family:'Orbitron',sans-serif;
}

.crystal-card p{
  color:#dbeafe;

  line-height:1.9;

  margin-bottom:20px;
}

/* WARNING */

.crystal-warning{
  margin-top:28px;

  padding:28px;

  border-radius:24px;

  background:
    linear-gradient(
      135deg,
      rgba(255,0,0,.06),
      rgba(255,255,255,.03)
    );

  border:1px solid rgba(255,255,255,.06);
}

/* GRID */

.clarity-grid{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

  gap:24px;

  margin-top:30px;
}

.clarity-item{
  padding:28px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.06);
}

/* FILTER */

.filter-stack{
  display:flex;

  flex-direction:column;

  gap:20px;

  margin-top:30px;
}

.filter-layer{
  padding:28px;

  border-radius:22px;

  background:
    linear-gradient(
      135deg,
      rgba(0,217,255,.05),
      rgba(255,255,255,.03)
    );

  border-left:4px solid #00d9ff;
}

/* MISTAKES */

.mistake-list{
  display:grid;

  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

  gap:20px;

  margin-top:30px;
}

.mistake-box{
  padding:22px;

  border-radius:20px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.06);
}

/* ECOSYSTEM */

.ecosystem-panel{
  display:flex;

  flex-direction:column;

  gap:18px;

  margin-top:30px;
}

.eco-item{
  padding:22px;

  border-radius:20px;

  background:
    linear-gradient(
      135deg,
      rgba(0,217,255,.05),
      rgba(255,255,255,.03)
    );
}

/* SIDEBAR */

.crystal-sidebar{
  display:flex;

  flex-direction:column;

  gap:24px;
}

.sidebar-card-crystal{
  padding:30px;

  border-radius:24px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.06);
}

.sidebar-card-crystal h3{
  margin-bottom:18px;
}

.sidebar-card-crystal ul{
  padding-left:20px;
}

.sidebar-card-crystal li{
  margin-bottom:12px;

  color:#dbeafe;
}

/* MOBILE */

@media(max-width:1100px){

  .crystal-layout{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .crystal-hero{
    padding:120px 5% 80px;
  }

  .crystal-content h1{
    font-size:3rem;
  }

  .crystal-strip{
    grid-template-columns:1fr;
  }

  .crystal-layout{
    padding:0 5% 80px;
  }

  .crystal-card{
    padding:28px;
  }

  .crystal-card h2{
    font-size:2rem;
  }

}

/* CRYSTAL CLEAR GUIDE CARD */

.build-5::before{
  content:'';

  position:absolute;

  inset:0;

  background:
    radial-gradient(
      circle at top right,
      rgba(79,181,143,.14),
      transparent 45%
    );

  pointer-events:none;
}

@media(max-width:480px){

  .build-5{
    min-height:460px;
  }

  .build-5 .build-info{
    bottom:26px;
  }

  .build-5 .build-info h3{
    font-size:1.7rem;
  }

  .build-5 .build-info p{
    font-size:.95rem;

    line-height:1.7;
  }

}

/* CRYSTAL CLEAR GUIDE CARD */

.build-5{
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.88),
      rgba(0,0,0,.15)
    ),
    url('./crystealclear.png');

  background-size:cover;

  background-position:center;

  background-repeat:no-repeat;

  background-color:#07120d;
}