@import url('https://fonts.googleapis.com/css?family=Google+Sans:400,500,700&display=swap');

html, body {
  overflow-x: hidden;
  font-family: 'Google Sans', sans-serif !important;
  margin: 0;
  padding: 0;
}

/* Fonts */
body {
  font-family: 'Google Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === Header Styles === */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* Logo Section */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  color: #202124;
}

.logo img {
  height: 36px;
  width: auto;
}

/* Navigation Links */
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  color: #202124;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #2d72d9;
}

/* Highlighted Button */
.download-app-btn {
  background: #2d72d9;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
}

/* === Hamburger Menu === */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease-in-out;
}

/* === Responsive Menu === */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    position: absolute;
    right: 16px;
    top: 64px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 16px;
    border-radius: 8px;
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}



/* =========================================================
   HERO SECTION (for 10-0-0-1.ph)
   ========================================================= */
/* =========================================================
   HERO SECTION (10-0-0-1.ph)
   ========================================================= */
.hero {
  padding: 40px 0 50px;         /* reduced top space */
  background: #ffffff;           /* light clean background */
  text-align: center;
}

.hero__inner {
  width: min(760px, 92%);
  margin: 0 auto;
}

/* Title */
.hero__title {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: #0a0f1c;                /* dark visible text */
  margin: 0 0 0.75rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Description */
.hero__subtitle {
  color: #444b5e;                /* readable dark gray */
  font-size: clamp(15px, 2.3vw, 18px);
  margin: 0 0 1.8rem;
  line-height: 1.6;
}

/* Tool Box */
.hero-tool {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0a0f1c;           /* dark glossy box */
  border: 1px solid #1d2540;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 12px 16px;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 22px;
}

.hero-tool input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #0b5cff, #4b84ff);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Trust Badges */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0a0f1c;
  font-size: 0.95rem;
  padding: 8px 14px;
  border: 1px solid #e1e5f0;
  border-radius: 999px;
  background: #f5f7fb;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

.badge:hover {
  transform: translateY(-2px);
  background: #e9ecf6;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b5cff, #4b84ff);
}

/* Hint text */
.hero__hint {
  margin-top: 10px;
  color: #5a6275;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 40px;
  }
  .hero__title {
    font-size: 30px;
  }
  .hero__subtitle {
    font-size: 15px;
  }
  .hero-tool {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .btn--primary {
    width: 100%;
  }
  .hero__badges {
    flex-direction: column;
    gap: 10px;
  }
  .badge {
    width: 80%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px 0 32px;
  }
  .hero__title {
    font-size: 24px;
  }
  .hero__subtitle {
    font-size: 14px;
  }
  .hero-tool input {
    font-size: 16px;
  }
  .badge {
    font-size: 0.9rem;
    padding: 7px 10px;
  }
}


/* --- Center trust badges on mobile --- */
.hero__badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;   /* center on desktop/tablet too */
  gap:12px;
  padding-left:0;
}

@media (max-width: 768px){
  .hero__badges{
    flex-direction:column;
    align-items:center;     /* center the column */
  }
  .badge{
    margin:0 auto;          /* auto-center each item */
    width:100%;
    max-width:420px;         /* nice readable width */
    justify-content:center;  /* center text & dot inside */
  }
}



/* Default Username & Password Section */
/* ===========================
   Default Username & Password
   =========================== */
.defaults {
  margin: 24px auto 36px;      /* reduced top & bottom spacing */
  max-width: 900px;
  text-align: left;            /* left aligned (not centered) */
}

.section-title {
  font-size: 22px;
  color: #0a0f1c;
  margin-bottom: 10px;
  font-weight: 700;
}

.muted-note {
  color: #5a6275;
  margin-bottom: 14px;
  font-size: 0.96rem;
}

/* Table wrapper */
.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
}

/* Table */
.defaults-table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.defaults-table th,
.defaults-table td {
  border: 1px solid #e7ebf4;
  padding: 10px 14px;
  text-align: left;
}

.defaults-table thead th {
  background: #f3f6fb;
  color: #0a0f1c;
  font-weight: 700;
}

.defaults-table tbody td {
  color: #1d2433;
  font-size: 0.95rem;
  line-height: 1.5;
}

.note.small {
  color: #475066;
  margin-top: 14px;
  background: #fbfdff;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #eef4ff;
  font-size: 0.93rem;
}

/* Responsive Layout (mobile screens) */
@media (max-width: 640px) {
  .defaults {
    margin: 18px auto 28px;     /* tighter spacing */
    width: 94%;
  }

  .defaults-table th,
  .defaults-table td {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .defaults-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 8px;
  }

  .note.small {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}

/* --- Fix extra space between hero and defaults section --- */
.hero {
  padding-bottom: 30px;      /* was 50px+; reduced */
  margin-bottom: 0;          /* remove default extra margin */
}

.defaults {
  margin-top: 16px;          /* was 24–40px; reduced */
}

/* If your site uses section spacing globally, this keeps all tight but clean */
section + section {
  margin-top: 20px;
}



/* =========================================================
   ARTICLE SECTION (10-0-0-1.ph)
   ========================================================= */
.article {
  margin: 28px auto 48px;           /* balanced top/bottom space */
  max-width: 900px;
  padding: 0 16px;
  line-height: 1.7;
  color: #1d2433;
  font-size: 1rem;
}

/* Headings inside article */
.article h2, 
.article h3 {
  color: #0a0f1c;
  font-weight: 700;
  line-height: 1.3;
  margin: 22px 0 10px;
}

.article h2 {
  font-size: 22px;
}

.article h3 {
  font-size: 19px;
}

/* Paragraphs */
.article p {
  margin: 10px 0 14px;
  color: #333c4f;
}

/* Lists */
.article ul {
  margin: 10px 0 18px 20px;
  padding: 0;
}

.article ul li {
  margin-bottom: 6px;
  color: #333c4f;
}

/* Code or IP highlight */
.article code {
  background: #f3f6fb;
  padding: 2px 6px;
  border-radius: 5px;
  font-family: "Courier New", monospace;
  color: #0b5cff;
  font-weight: 600;
}

/* Note box */
.article .note-box {
  background: #f8fbff;
  border-left: 4px solid #0b5cff;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 18px 0;
  color: #333c4f;
  font-size: 0.97rem;
}

/* Table (if used inside article) */
.article table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid #e7ebf4;
  border-radius: 8px;
}

.article th, 
.article td {
  border: 1px solid #e7ebf4;
  padding: 10px 12px;
  text-align: left;
}

.article th {
  background: #f3f6fb;
  color: #0a0f1c;
  font-weight: 700;
}

/* Links inside article */
.article a {
  color: #0b5cff;
  text-decoration: none;
  font-weight: 600;
}

.article a:hover {
  text-decoration: underline;
}

/* Responsive (mobile optimization) */
@media (max-width: 640px) {
  .article {
    padding: 0 12px;
    font-size: 0.96rem;
  }

  .article h2 {
    font-size: 20px;
  }

  .article h3 {
    font-size: 18px;
  }

  .article table {
    font-size: 0.9rem;
  }
}












/* === Footer Styles === */
.site-footer {
  background-color: #f5f5f5;
  padding: 40px 20px 20px;
  color: #333;
  font-size: 0.95rem;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: #222;
}

.footer-logo img {
  height: 36px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #444;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #4a00e0;
}

.footer-bottom {
  text-align: center;
  color: #777;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-nav ul {
    gap: 16px;
  }
}


/* === Back to Top Button === */
#backToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 100;
  font-size: 22px;
  background-color: #4a00e0;
  color: white;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease, opacity 0.3s ease;
}

#backToTopBtn:hover {
  background-color: #3700b3;
}

@media (max-width: 600px) {
  #backToTopBtn {
    bottom: 20px;
    right: 16px;
    padding: 10px 14px;
    font-size: 18px;
  }
}


/* === 404 Page === */
.error-404 {
  padding: 80px 20px;
  text-align: center;
  background: #f8f8f8;
}

.error-container {
  max-width: 700px;
  margin: 0 auto;
}

.error-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a00e0;
  margin-bottom: 16px;
}

.error-container p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 32px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.back-home-btn,
.back-btn {
  background: #4a00e0;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.back-home-btn:hover,
.back-btn:hover {
  background: #3700b3;
}

@media (max-width: 600px) {
  .error-container h1 {
    font-size: 2rem;
  }

  .back-home-btn,
  .back-btn {
    width: 100%;
    text-align: center;
  }
}


/* === Static Content Pages (About, Contact, Terms, Privacy) === */
.content-section {
  padding: 60px 20px;
  background: #ffffff;
  color: #111;
  line-height: 1.7;
}

.content-section .container {
  max-width: 850px;
  margin: 0 auto;
}

.content-section h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #222;
}

.content-section p,
.content-section li {
  font-size: 1rem;
  margin-bottom: 16px;
}

.content-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}





.speed-box {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
}

.result-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.metric h3 {
  margin-bottom: 10px;
  color: #333;
}

.metric div {
  font-size: 2rem;
  font-weight: 700;
  color: #1976d2;
}

#progressBar {
  width: 100%;
  background: #f1f1f1;
  height: 8px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 10px;
}

#progressBar span {
  display: block;
  height: 100%;
  width: 0%;
  background: #1976d2;
  transition: width 0.3s linear;
}

.btn-primary {
  padding: 12px 24px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary:hover {
  background: #0d47a1;
}

#progressText {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #555;
}





.ip-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #eee;
  margin-top: 20px;
  line-height: 1.8;
}

.ip-box p {
  margin: 8px 0;
  font-size: 1.1rem;
}

.note {
  color: #666;
  margin-top: 15px;
  font-size: 0.95rem;
}
