body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(120deg, #0f2027, #203a43, #2c5364); /* ألوان خلفية جديدة جذابة */
  color: #ffffff;
}

header {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

nav a {
  margin: 10px;
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #ff6f61;
  text-shadow: 0 0 5px #fff;
}

.hero {
  text-align: center;
  padding: 50px;
}

.info {
  padding: 30px;
  text-align: center;
}

.store {
  padding: 20px;
  text-align: center;
}

.card {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  margin: 15px auto;
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  transition: 0.4s;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-weight: bold;
}

.card:hover {
  background: linear-gradient(135deg, #ff6f61, #ffd700);
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 0 20px #ffd700;
}

.login-box {
  text-align: center;
  margin-top: 150px;
}

input {
  padding: 12px;
  width: 220px;
  border-radius: 10px;
  border: none;
  margin-right: 5px;
  outline: none;
  font-size: 16px;
}

button {
  padding: 12px;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background: linear-gradient(45deg, #ff6f61, #ffd700);
  color: black;
  transform: scale(1.05);
}

/* Minecraft blocks animation */
.minecraft-animation {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.block {
  width: 30px;
  height: 30px;
  margin: 5px;
  animation: bounce 1s infinite alternate;
}

.blue { background: #6a11cb; }
.cyan { background: #2575fc; }
.darkblue { background: #ff6f61; }

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}

.server-status {
  margin-top: 20px;
  font-size: 18px;
  color: #ffd700;
  text-shadow: 0 0 5px #fff;
}

footer {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  padding: 15px;
  text-align: center;
}

footer a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

footer a:hover {
  color: #ff6f61;
  text-shadow: 0 0 5px #fff;
}