
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background: #000;
  color: #fff;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5rem;
  padding: 6rem 4rem 6rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}


nav {
  position: fixed;
  top: 1.75rem;
  right: 3rem;
  z-index: 100;
  background: rgba(255 255 255 / 0.06);
  padding: 0.5rem 1.25rem;
  border-radius: 40px;
  box-shadow: 0 0 8px rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  user-select: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2.8rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-list a {
  color: #ddd;
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  transition: 
    color 0.3s ease, 
    background-color 0.3s ease,
    transform 0.2s ease;
  display: inline-block;
}

.nav-list a:hover,
.nav-list a:focus {
  color: #000;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255,255,255,0.3);
}

.try-btn {
  background: #fff;
  color: #000;
  padding: 0.65rem 1.8rem;
  border-radius: 9999px;
  box-shadow: 0 0 15px #fff, 0 0 25px #bbb;
  font-weight: 700;
  font-size: 1.15rem;
  transition:
    background-color 0.3s ease,
    box-shadow 0.4s ease,
    transform 0.25s ease;
  user-select: none;
}

.try-btn:hover {
  background: #f1f1f1;
  box-shadow: 0 0 30px #fff, 0 0 50px #eee;
  transform: scale(1.1);
}

.try-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 18px #aaa;
}


.title {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
  cursor: default;
  user-select: none;
  position: relative;
  overflow: hidden;
  animation: slideInTitle 1.2s ease forwards;
  padding: 0 1rem;
  background:
    linear-gradient(135deg, #fff, #bbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  max-width: 600px;
  color: #ccc;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
  cursor: default;
  user-select: none;
  position: relative;
  padding-bottom: 0.8rem;
  transition: color 0.3s ease;
  animation: fadeIn 1.8s ease forwards;
  max-width: 720px;
}

.description:hover {
  color: #fff;
}

.description::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: white;
  border-radius: 10px;
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.description:hover::after {
  width: 50%;
}


.search-btn {
  padding: 1rem 4.25rem;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow:
    0 0 10px #fff,
    0 0 20px #bbb;
  transition:
    background-color 0.3s ease,
    box-shadow 0.35s ease,
    transform 0.2s ease;
  user-select: none;
  animation: fadeIn 2.2s ease forwards;
  max-width: 300px;
  width: 100%;
  text-decoration: none;
}

.search-btn:hover {
  background: #eee;
  box-shadow:
    0 0 20px #fff,
    0 0 30px #eee;
  transform: scale(1.1);
}

.search-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 16px #aaa;
}

.info-section {
  max-width: 720px;
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
  margin-top: 4rem;
  color: #eee; 
  user-select: none;
  text-align: left;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4), 
    inset 0 0 0 1px rgba(255, 255, 255, 0.05); 
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08); 
}

.info-section:hover {
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.info-section h2 {
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff; 
  font-size: 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6); 
}


.learn-more-btn {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.learn-more-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #fff;
  color: #000;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.learn-more-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

footer {
  margin-top: 4rem;
  padding: 1.5rem 0;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.socials {
  margin-bottom: 1rem;
}

.socials a {
  margin: 0 0.8rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.socials a:hover {
  transform: scale(1.2);
}

.socials img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 720px;
  margin-top: 2rem;
  width: 100%;
}

.counter {
  font-size: 1rem;
  color: #ccc;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.counter.fade-up {
  opacity: 0;
  transform: translateY(-10px);
}

@keyframes slideInTitle {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.info-item h3 {
  margin-top: 0;
  color: #fff;
}

.info-item p {
  color: #ccc;
}

.result-card {
  background: #333232;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.result-card h3,
.result-card ul,
.result-card li {
  word-break: break-word;   
  overflow-wrap: anywhere;  
  list-style: none;
}



.input-field {
  width: 100%;
  max-width: 320px;
  margin: 0.6rem 0;
  padding: 0.85rem 1.2rem;
  padding-left: 10px;
  font-size: 1.1rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field::placeholder {
  color: #ccc;
}

.input-field:focus {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px #fff;
  color: #fff;
}

.search-btn {
  padding: 1rem 4.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 0 10px #fff, 0 0 20px #bbb;
  transition: background-color 0.3s ease, box-shadow 0.35s ease, transform 0.2s ease;
  user-select: none;
  max-width: 320px;
  width: 100%;
  margin-top: 1rem;
}

.search-btn:hover {
  background: #eee;
  box-shadow: 0 0 20px #fff, 0 0 30px #eee;
  transform: scale(1.1);
}

.search-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 16px #aaa;
}


.darkweb-card,
.pastebin-card,
.stealer-logs-card,
.phone-lookup-card,
.email-lookup-card,
.holehe-card,
.databreach-card,
.result-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  margin-bottom: 1.5rem;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card {
  background: rgba(0, 0, 0, 1);
  padding: 2rem 2.5rem;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  margin: 3rem auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 10px rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eee;
  font-family: 'Rajdhani', sans-serif;
  animation: fadeInUp 0.8s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6), 0 0 15px rgba(255,255,255,0.05);
}

.info-card p {
  font-size: 1.1rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ddd;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.info-button {
  display: inline-block;
  padding: 0.45rem 0.8rem; 
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ddd; 
  background: rgba(255, 255, 255, 0.06); 
  border-radius: 10px; 
  text-decoration: none;
  transition: 
    color 0.3s ease, 
    background-color 0.3s ease,
    transform 0.2s ease;
  display: inline-block;
}

.info-button:hover,
.info-button:focus {
  color: #000;
  background: #fff;
  transform: translateY(-2px); 
}


@media (max-width: 768px) {

  /* Main container */
  main {
    padding: 3rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Titles & description */
  .title {
    padding-top: 30px;
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    text-align: center;
  }

  .description {
    font-size: clamp(1rem, 3vw, 1.2rem);
    text-align: center;
  }

  .info-section {
    padding: 1.5rem;
  }

  .info-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  /* Buttons */
  .try-btn {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }

  .learn-more-btn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }

  .search-btn {
    padding: 0.7rem 2.5rem;
    font-size: clamp(1rem, 3vw, 1.4rem);
    width: 100%;
    max-width: 300px;
  }

  .small-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  /* Navigation */
  nav {
    right: 1rem;
    top: 1rem;
  }

  .nav-list {
    gap: 1.2rem;
    font-size: 0.9rem;
  }

  /* Cards */
  .result-card,
  .darkweb-card,
  .pastebin-card,
  .stealer-logs-card,
  .phone-lookup-card,
  .email-lookup-card,
  .holehe-card,
  .databreach-card {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    box-sizing: border-box;
    font-size: 0.95rem;
    word-break: break-word;    
    overflow-wrap: anywhere;   
  }

  .result-card h3,
  .card-header {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .card-content {
    font-size: 0.9rem;
    word-break: break-word;
    width: 100%;
  }

  .darkweb-card .section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .result-card li {
    font-size: 0.9rem;
    padding: 0.2rem 0;
  }

  /* Inputs */
  input[type="text"],
  input[type="email"] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    box-sizing: border-box;
  }
}
