/* --- WordPress Plugin Detector (Rubik + All Black Text) --- */
.wp-plugin-detector {
  font-family: 'Rubik', sans-serif;
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 45px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  color: #000;
}

.wpd-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

.wpd-input-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

#wpd-url {
  flex: 1;
  min-width: 260px;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  color: #000;
  transition: border-color 0.3s ease;
  font-family: 'Rubik', sans-serif;
}

#wpd-url:focus {
  outline: none;
  border-color: #1a73e8;
}

#wpd-scan {
  background: #f1f3f4;
  color: #000;
  border: 1px solid #d1d1d1;
  padding: 14px 26px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Rubik', sans-serif;
  transition: all 0.25s ease;
}

#wpd-scan:hover {
  background: #e8eaed;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Loader */
#wps-loader {
  margin: 25px auto;
  width: 45px;
  height: 45px;
  border: 4px solid #ddd;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Plugin Cards */
.wpd-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fafafa;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 16px 0;
  text-align: left;
  transition: all 0.2s ease;
  font-family: 'Rubik', sans-serif;
  color: #000;
}

.wpd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.wpd-card img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #f0f0f0;
  flex-shrink: 0;
}

.wpd-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #000;
}

.wpd-card-content p {
  font-size: 14px;
  margin: 3px 0;
  line-height: 1.5;
  color: #000;
}

.wpd-card-content a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
}

.wpd-card-content a:hover {
  text-decoration: none;
}
