/* Free Resources Hub styles */
.resources-hub {
  background: linear-gradient(120deg, #181818 60%, #232323 100%);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255,45,45,0.08), 0 2px 12px rgba(255,255,255,0.06);
  padding: 48px 24px;
  max-width: 1100px;
  margin: 48px auto;
}
.resources-hub h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #fbf9f9;
}
.resources-hub p {
  text-align: left;
  font-size: 1.08rem;
  color: #bbb;
  margin: 0 auto 32px auto;
  max-width: 700px;
  line-height: 1.7;
  padding-left: 12px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  justify-content: center;
}
.tool-card {
  background: linear-gradient(120deg, #232323 60%, #181818 100%);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(255,45,45,0.10), 0 1.5px 8px rgba(255,255,255,0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 340px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.tool-card:hover {
  box-shadow: 0 12px 48px rgba(255,45,45,0.18), 0 2px 12px rgba(255,255,255,0.10);
  transform: translateY(-2px) scale(1.03);
}
.tool-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.premium-header {
  background: linear-gradient(90deg, #232323 60%, #ff2d2d 100%);
  border-radius: 16px 16px 0 0;
  padding: 16px 18px 10px 18px;
  box-shadow: 0 2px 8px rgba(255,45,45,0.10);
  margin-bottom: 0;
}
.tool-icon {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  vertical-align: middle;
}
.tool-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ff2d2d;
  margin: 0;
}
.tool-desc {
  font-size: 1.08rem;
  color: #f3f3f3;
  margin-bottom: 18px;
}
.premium-form {
  max-width: 480px;
  margin: 0 auto 24px auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.premium-form label {
  font-weight: 600;
  color: #fff;
}
.premium-form input,
.premium-form select {
  font-size: 1.08rem;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: #232323;
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,45,45,0.08);
  margin-bottom: 2px;
}
.premium-btn {
  background: linear-gradient(90deg, #ff2d2d 0%, #232323 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,45,45,0.12);
  transition: background 0.2s, transform 0.2s;
}
.premium-btn:hover {
  background: linear-gradient(90deg, #232323 0%, #ff2d2d 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.premium-result {
  max-width: 480px;
  margin: 0 auto 24px auto;
  padding: 18px 16px;
  background: #232323;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(255,45,45,0.10);
  display: flex;
  align-items: center;
  gap: 12px;
}
.copy-btn {
  background: #ff2d2d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-left: 8px;
  box-shadow: 0 2px 8px rgba(255,45,45,0.10);
  transition: background 0.2s, transform 0.2s;
}
.copy-btn:hover {
  background: #fff;
  color: #ff2d2d;
  transform: translateY(-2px) scale(1.04);
}
.copy-success {
  color: #ffb347;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 8px;
}
@media (max-width: 700px) {
  .resources-hub {
    padding: 18px 8px;
  }
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tool-card {
    padding: 18px 8px;
    min-height: 220px;
  }
}
