body {
  background: url('https://i.imgur.com/4M7IWwP.png') repeat;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #3e3e3e;
  margin: 0;
  padding: 0;
}

header {
  background: #4caf50 url('https://i.imgur.com/2yaf2wb.png') repeat-x bottom;
  color: #fff;
  padding: 32px 0 16px 0;
  text-align: center;
  box-shadow: 0 4px 0 #388e3c;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px #222;
}

nav {
  background: #388e3c;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 2px 0 #2e7031;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-size: 1rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #ffd700;
}

main {
  max-width: 800px;
  margin: 32px auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 8px 32px #2226;
  padding: 24px;
}

.forum-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.forum {
  border-bottom: 2px solid #cfcfcf;
  padding: 18px 0;
  display: flex;
  align-items: center;
}

.forum:last-child {
  border-bottom: none;
}

.forum-icon {
  width: 48px;
  height: 48px;
  margin-right: 24px;
  background: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.forum-info {
  flex: 1;
}

.forum-title {
  font-size: 1.2rem;
  color: #388e3c;
  margin: 0 0 4px 0;
}

.forum-desc {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

footer {
  text-align: center;
  padding: 16px 0;
  background: #222;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 32px;
}

/* Minecraft button style */
.mc-btn {
  background: #8bc34a;
  border: 2px solid #388e3c;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 8px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px #388e3c;
  transition: background 0.2s, box-shadow 0.2s;
}

.mc-btn:hover {
  background: #388e3c;
  box-shadow: 0 2px #2e7031;
}

.dev-popup {
  position: fixed;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #222;
  color: #fff;
  padding: 24px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px #222a;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.3s cubic-bezier(.4,2,.6,1), transform 0.3s cubic-bezier(.4,2,.6,1);
}

.dev-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.05);
}

@media (max-width: 600px) {
  main {
    padding: 8px;
  }

  .forum-icon {
    margin-right: 10px;
  }
}