body {
  font-family: "Khmer OS Battambang", sans-serif;
  background: linear-gradient(135deg, #000000, #000000);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.login-box,
.room {
  background: rgb(0, 0, 0);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 330px;
  animation: fadeIn 0.6s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
input {
  color: rgb(216, 0, 0);
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #000000;
  background-color: #313131;
}
button {
  background: #000000;
  color: rgb(255, 255, 255);
  border: none;
  padding: 10px 20px;
  border-radius: 9px;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #0056b3;
}
.room img {
  width: 100%;
  border-radius: 12px;
  margin-top: 15px;
}
.links {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /*  background: #f9fafb;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  color: #333;*/
}
.link-card:hover {
  transform: translateY(-4px);
  /*  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);*/
}
.icon-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 22px;
  color: white;
}
.telegram {
  background: #0088cc;
}
.map {
  background: #34a853;
}
img {
  width: 100%;
  height: 50%;
  align-items: center;
}
