.container {
  max-width: 1000px;
}

h1 {
  font-size: 2.5em;
}

.subtitle {
  margin-bottom: 50px;
  font-size: 14px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.tool-card {
  background: #16213e;
  border-radius: 15px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tool-card:hover {
  border-color: #c41e3a;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.tool-card .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c41e3a, #8b1428);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 36px;
}

.tool-card h2 {
  color: #fff;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.tool-card p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.5;
}

.tool-card .badge {
  margin-top: 15px;
  padding: 5px 12px;
  background: rgba(196, 30, 58, 0.2);
  border: 1px solid #c41e3a;
  border-radius: 20px;
  font-size: 11px;
  color: #c41e3a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-required {
  display: none;
}

.auth-required.is-visible {
  display: flex;
}

.coming-soon {
  opacity: 0.5;
  pointer-events: none;
}

.coming-soon .badge {
  background: rgba(136, 136, 136, 0.2);
  border-color: #666;
  color: #888;
}

footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #666;
  font-size: 12px;
}

footer a {
  color: #888;
  text-decoration: none;
}

footer a:hover {
  color: #c41e3a;
}

/* Wrapper pour pousser le footer en bas */
.page {
  padding: 40px 20px;
}
