/* Base Styles (Light Mode) */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.link-button {
  background: white;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  transition: all 0.3s ease;
}

.link-button i {
  font-size: 24px;
  margin-bottom: 10px;
}

.link-button span {
  font-size: 14px;
}

.link-button:hover {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.description {
  margin-top: 50px;
  font-size: 14px;
  color: #666;
  transition: color 0.3s;
}
.description-technical {
  /* margin-top: 20px; */
  font-size: 14px;
  color: #666;
  transition: color 0.3s;
}

/* 🌙 Dark Mode Support */
@media (prefers-color-scheme: dark) {
  body {
    background: #1e1e1e;
  }

  h1 {
    color: #f0f0f0;
  }

  .link-button {
    background: #2c2c2c;
    border-color: #444;
    color: #ccc;
  }

  .link-button:hover {
    background-color: #3399ff;
    border-color: #3399ff;
    color: white;
  }

  .description {
    color: #aaa;
  }
}
