body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #f8f8f8;
  color: #222;
}

/* ----- HEADER ----- */
header {
  background-color: #c0c0c0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header h1 {
  font-size: 1.8em;
  margin: 0;
}

#login-btn {
  background-color: #555;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s;
}

#login-btn:hover {
  background-color: #333;
}

/* ----- MAIN CONTENT ----- */
main {
  padding: 80px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----- MENU ----- */
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}

.menu-top {
  display: flex;
  gap: 100px;
  margin-bottom: 40px;
}

.menu-button {
  background-color: #c0c0c0;
  border: none;
  width: 180px;
  height: 100px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-button:hover {
  background-color: #999;
}

.menu-bottom .menu-button span {
  font-size: 12px;
  color: #333;
}

.hidden {
  display: none;
}

/* ----- DESCRIPTION ----- */
.description {
  background-color: #c0c0c0;
  width: 80%;
  max-width: 900px;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

.description h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.description p {
  font-size: 1.1em;
  line-height: 1.5;
}

.login-container {
  background-color: #c0c0c0;
  padding: 40px 60px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-container h2 {
  margin-bottom: 25px;
  font-size: 1.8em;
}

form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

label {
  text-align: left;
  font-weight: bold;
  margin-bottom: 5px;
}

input {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #999;
  font-size: 16px;
}

button {
  background-color: #555;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #333;
}

.back-link {
  margin-top: 15px;
}

.back-link a {
  color: #222;
  text-decoration: none;
  transition: 0.2s;
}

.back-link a:hover {
  text-decoration: underline;
}

/* ----- PATCH NOTES LISTE ----- */
.patch-list-container {
  margin-top: 60px;
  width: 80%;
  max-width: 900px;
}

.patch-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.patch-list li {
  width: 100%;
}

.patch-card {
  background-color: #c0c0c0;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  border: 1px solid #999;
}

.patch-card:hover {
  background-color: #999;
  transform: scale(1.01);
}

footer {
  background-color: #c0c0c0;
  display: flex;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #222;
}

footer a {
  text-decoration: none;
  color: inherit;
}

footer button {
  background-color: #555;
  color: white;
  border: none;
  margin-left: 1%;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s;
}

footer button:hover {
  background-color: #333;
}