body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #050816, #0a0f25);
  color: white;
}
@media (max-width: 768px) {

  .hero {
  padding: 130px 20px 60px;
}

  .hero h1 {
    font-size: 2.5rem;
  }

  .tools-grid {
    padding: 40px 5%;
    grid-template-columns: 1fr;
  }

  .tool-card {
    padding: 20px;
  }

}

/* HERO */
.hero {
  text-align: center;
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2ea8ff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(46,168,255,0.8);
}
@keyframes glow {
  from {
    text-shadow: 0 0 5px #1fa2ff;
  }
  to {
    text-shadow: 0 0 20px #1fa2ff, 0 0 30px #007bff;
  }
}

.hero p {
  color: #cccccc;
  margin-top: 10px;
}

/* GRID */
.tools-grid {
  padding: 60px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
/* ================= NAVBAR ================= */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:60px;
  background:rgba(5,10,25,0.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,195,255,0.2);
  z-index:1000;
}

.nav-container{
  max-width:1100px;
  margin:auto;
  height:100%;
  padding:0 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.nav-brand a{
  font-size:20px;
  font-weight:700;
  color:#00c3ff;
  text-decoration:none;
}

/* ===== DESKTOP LINKS ===== */

.nav-links{
  display:flex;
  gap:26px;
}

.nav-links a{
  text-decoration:none;
  color:white;
  opacity:0.85;
  transition:0.3s ease;
}

.nav-links a:hover{
  color:#00c3ff;
  opacity:1;
}

/* ===== HAMBURGER ===== */

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:3px;
  background:white;
  border-radius:3px;
  transition:0.3s ease;
}

.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* ===== MOBILE MENU ===== */

@media (max-width:768px){

  .hamburger{
    display:flex;
  }

  .nav-links{
    position:fixed;
    top:60px;
    left:0;
    width:100%;
    background:linear-gradient(180deg,#06133a,#030a2b);
    backdrop-filter:blur(20px);
    flex-direction:column;
    align-items:center;
    gap:22px;
    padding:35px 0;

    transform:translateY(-30px);
    opacity:0;
    pointer-events:none;
    transition:all 0.35s ease;
  }

  .nav-links.active{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
}

/* ===== NAV OVERLAY ===== */

.nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,20,60,0.6);
  backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:0.3s ease;
  z-index:900;
}

.nav-overlay.active{
  opacity:1;
  pointer-events:auto;
}

body.nav-open{
  overflow:hidden;
}


/* CARD */
/* Make cards slightly glass */
.tool-card {
  background: rgba(15, 25, 60, 0.35);
  border: 1px solid rgba(46,168,255,0.3);
  padding: 25px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(46,168,255,0.6);
  border-color: #2ea8ff;
}
.tool-card h3 {
  margin-bottom: 10px;
}

.tool-card p {
  color: #bbbbbb;
  font-size: 14px;
  margin-bottom: 15px;
}
.tools-grid {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* BUTTON */
.btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: #00c3ff;
  color: black;
  text-decoration: none;
  font-weight: bold;
 /* transition: 0.3s;*/
  box-shadow: 0 0 10px rgba(0,195,255,0.6);
}
/* Premium Hover Upgrade */
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px #00bfff;
}
.btn:hover {
  background: white;
/*  box-shadow: 0 0 20px rgba(0,195,255,1); */
}

/* COMING BADGE */
.coming {
  display: inline-block;
  padding: 5px 12px;
  background: orange;
  color: black;
  border-radius: 15px;
  font-size: 12px;
}
/* PARTICLES BACKGROUND */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, #0f2a6b 0%, #060b1f 50%, #030712 100%);
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
}
/* CHECKER BOX */
.checker-box {
  max-width: 400px;
  margin: 40px auto;
  text-align: center;
}

/* PASSWORD INPUT */
#passwordInput {
  width: 100%;
  max-width: 350px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #2ea8ff;
  background: rgba(15,25,60,0.6);
  color: white;
  font-size: 14px;
  outline: none;
  margin: 15px auto;
  display: block;
}

#passwordInput::placeholder {
  color: #aaa;
}

.strength-bar {
  width: 100%;
  max-width: 350px;
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  margin: 10px auto;
  overflow: hidden;
}

#strengthFill {
  height: 100%;
  width: 0%;
  border-radius: 5px;
  transition: width 0.4s ease, background 0.4s ease;
}
#suggestions {
  margin-top: 10px;
  font-size: 13px;
  color: #ffcc00;
  text-shadow: 0 0 5px rgba(255,204,0,0.4);
}
#crackTime {
  font-size: 13px;
  margin-top: 5px;
  color: #2ea8ff;
}
.tool-section {
    padding: 50px 20px;
}

.tool-section h2 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #00e0ff;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tool-card {
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,255,255,0.2);
    transition: 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0,255,255,0.5);
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #00d9ff;
    color: black;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.disabled {
    opacity: 0.5;
}

.coming {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #00ff88;
}
.install-btn {
  background: linear-gradient(45deg, #00f0ff, #0077ff);
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 15px #00f0ff;
  margin: 20px auto;
  display: block;
  transition: 0.3s;
}

.install-btn:hover {
  transform: scale(1.05);
}
/* =========================
   SEO INFO BLOCK STYLE
========================= */

.seo-content {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  text-align: left;
}

.seo-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00c3ff;
}

.seo-content p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}
