body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}
body header {
  background-color: #69181d;
  color: white;
  padding: 20px;
  text-align: center;
}
body header h1 {
  margin: 0;
  font-size: 2.5em;
}
body header nav {
  margin-top: 2px;
}
body header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}
body header nav li {
  margin: 0 15px;
}
body header nav li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}
body header nav li a:hover {
  text-decoration: underline;
}
body header .search-container {
  position: relative;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
}
body header .search-container .search-label {
  font-size: 1.2em;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
body header .search-container .search-input {
  width: 100%;
  padding: 12px;
  font-size: 1.2em;
  border: 2px solid #69181d;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: white;
  text-align: center;
}
body header .search-container .suggestions-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ddd;
  border-top: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: none;
}
body header .search-container .suggestions-list.visible {
  display: block;
}
body header .search-container .suggestions-list li {
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: black;
}
body header .search-container .suggestions-list li:hover {
  background-color: #f1f1f1;
}
body footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  font-size: 1.1em;
}
body footer p {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
}
body footer a:hover {
  text-decoration: underline;
  color: #ac931a;
}
body footer p a {
  margin: 0 10px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 600px) {
  body footer p {
    flex-direction: column;
    align-items: center;
  }
  body footer p a {
    margin-bottom: 5px;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
.discord-button {
  margin: 10px;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #7289DA;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.discord-button .button-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.discord-button:hover {
  background-color: rgb(73.6011235955, 103.191011236, 207.3988764045);
  transform: scale(1.05);
  animation: pulse 1s infinite;
}
.discord-button:active {
  background-color: rgb(47.808988764, 77.5280898876, 182.191011236);
  transform: scale(0.98);
}

.map-button {
  margin: 10px;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #8fbe79;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.map-button .button-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.map-button:hover {
  background-color: rgb(114.2964824121, 173.3417085427, 86.6582914573);
  transform: scale(1.05);
  animation: pulse 1s infinite;
}
.map-button:active {
  background-color: rgb(91.3718592965, 140.7336683417, 68.2663316583);
  transform: scale(0.98);
}

.directbtn {
  margin: 10px;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #69181d;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.directbtn:hover {
  background-color: rgb(63.488372093, 14.511627907, 17.5348837209);
  transform: scale(1.05);
  animation: pulse 1s infinite;
}
.directbtn:active {
  background-color: rgb(21.976744186, 5.023255814, 6.0697674419);
  transform: scale(0.98);
}

.last-saluted-commune {
  background-color: #69181d;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  margin: 20px auto;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
  max-width: 75%;
  width: auto;
}
.last-saluted-commune:hover {
  background-color: rgb(63.488372093, 14.511627907, 17.5348837209);
  transform: scale(1.05);
}
.last-saluted-commune:active {
  background-color: rgb(21.976744186, 5.023255814, 6.0697674419);
  transform: scale(0.98);
}
.last-saluted-commune span {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-container {
  margin: 20px auto;
  max-width: 500px;
  position: relative;
}
.search-container input {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #69181d;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}
.search-container input:focus {
  border-color: rgb(63.488372093, 14.511627907, 17.5348837209);
  box-shadow: 0 0 5px rgba(105, 24, 29, 0.3);
}

.suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0 0 5px 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
}
.suggestions-list li {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}
.suggestions-list li:hover {
  background-color: #f5f5f5;
}
.suggestions-list li:last-child {
  border-bottom: none;
}/*# sourceMappingURL=index.css.map */