/* ==== Blurred Background ==== */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('background.jpg') no-repeat center center / cover;
  filter: blur(6px) brightness(0.4);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(18, 18, 18, 0.75);
  z-index: -1;
}

/* ==== Base Setup ==== */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #f0f0f0;
  background-color: #121212;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* ==== Card Layout ==== */
.tool-container {
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool-box {
  background-color: rgba(28, 28, 28, 0.95);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  max-width: 450px;
  width: 100%;
  text-align: center;
}

/* ==== Headings and Text ==== */
.tool-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.tool-box p {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 30px;
}

/* ==== Main Tool Buttons ==== */
.tool-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.tool-buttons button {
  padding: 14px;
  background-color: #2d89ef;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tool-buttons button:hover {
  background-color: #1b5dab;
}

/* ==== Upcoming Tools ==== */
.upcoming-tools h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.upcoming-tool {
  background-color: #1e1e1e;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  position: relative;
  text-align: left;
  font-size: 0.95rem;
  border-left: 4px solid #2d89ef;
  opacity: 0.85;
}

.upcoming-tool:hover {
  opacity: 1;
  background-color: #2a2a2a;
}

.badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background-color: #2d89ef;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==== Mobile Responsive ==== */
@media (max-width: 480px) {
  .tool-box {
    padding: 30px 20px;
  }

  .tool-box h2 {
    font-size: 1.6rem;
  }

  .tool-box p {
    font-size: 0.9rem;
  }

  .tool-buttons button {
    font-size: 0.95rem;
    padding: 12px;
  }

  .upcoming-tool {
    font-size: 0.9rem;
  }
}
