/*FONTS*/
@font-face {
  font-family: 'Aldo the Apache';
  src: url("AldotheApache.ttf") format('truetype');
}

@font-face {
  font-family: 'Gotham';
  src: url("GothamBold.otf") format('truetype');
}

/* Styles de base */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Aldo the Apache', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/lobby_screen_shaders.png") no-repeat center center/cover;
  filter: blur(8px);
  z-index: -1;
}


.content {
  background-color: #103844;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
}

.warning {
  margin-bottom: 40px;
}

.content p {
  font-family: 'Gotham';
  color: #ffffff
}

.greentext {
  color: #ddac20;
}

a {
  color: #4ea8c7;
}

h2 {
  margin-bottom: 30px;
  margin-top: 5px;
  color: #333;
  font-size: 62px;
}


.card-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Gotham';
}

.card p {
  margin: 0;
  font-size: 18px;
  color: #333;
  text-align: left;
}

.card button {
  margin-left: 10px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Gotham';
}

h2 {
  color: #ffffff;
}

button:hover {
  background-color: #45a049;
}

#message {
  margin-top: 30px;
  font-weight: bold;
  color: #72aa39;
  font-size: 16px;
  font-family: 'Gotham';
}
