@font-face {
  font-family: 'MinecraftRegular';
  src: url('MinecraftRegular-Bmg3.otf') format('opentype');
}
@font-face {
  font-family: 'MinecraftBold';
  src: url('MinecraftBold-nMK1.otf') format('opentype');
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'MinecraftRegular', sans-serif;
  background-color: #000;
  color: #fff;
  height: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

header {
  background-color: #5c5c5c;
  padding: 40px 20px;
  text-align: center;
  background-image: linear-gradient(to right, #5c5c5c, #333);
}

header h1 {
  margin: 0;
  color: #2596be;
  font-size: 3em;
  font-family: 'MinecraftBold', sans-serif;
  padding: 0.5em;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #2596be;
  padding: 60px 20px;
  backdrop-filter: blur(12px);
}

.hero img {
  width: 500px;
  max-width: 95%;
  margin: 20px;
  border: 6px solid #7a38a1;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  background-color: #2596be;
}

.hero .text {
  max-width: 600px;
  margin: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.hero .text h2 {
  color: #ffffff;
  font-size: 2em;
  margin-bottom: 10px;
  font-family: 'MinecraftBold', sans-serif;
}

.hero .text p {
  font-size: 1.1em;
  line-height: 1.6em;
  color: #e6e6e6;
}

.button {
  display: inline-block;
  margin-top: 20px;
  margin-right: 10px;
  padding: 12px 24px;
  background-color: #5c5c5c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
  font-family: 'MinecraftBold', sans-serif;
}

.button:hover {
  background-color: #3d3d3d;
}

.more-info {
  padding: 60px 20px;
  background: #101010;
  color: #ccc;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'MinecraftRegular', sans-serif;
  backdrop-filter: blur(6px);
}

.more-info h3, .more-info h4 {
  color: #7a38a1;
  font-size: 1.8em;
  margin-bottom: 10px;
  font-family: 'MinecraftBold', sans-serif;
}

.more-info p, .more-info ul {
  margin-bottom: 20px;
  line-height: 1.6em;
  color: #bbb;
}

.more-info ul {
  padding-left: 20px;
}

.more-info li {
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #5c5c5c;
  color: #aaa;
  font-family: 'MinecraftRegular', sans-serif;
}
