@font-face {
  font-family: 'Minecraft';
  src: url('fonts/minecraft.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body{
    background-image: url("images/Dirt_background_JE2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: darkgrey;
    margin: 0;
    padding-bottom: 80px; /* space for fixed footer so content isn't hidden */
    min-height: 100vh;
    box-sizing: border-box;
}
header{
    background-color: lightgrey;
    border-style: outset;
    border-radius: 10px;
    text-shadow: 3px 3px 4px hsl(0, 1%, 36%);
    font-family: 'Minecraft', sans-serif;
}
footer{
    background-color: lightgrey;
    border-style: outset;
    border-radius: 10px 10px 0 0;
    text-shadow: 3px 3px 4px hsl(0, 1%, 36%);
    font-family: 'Minecraft', sans-serif;
    position: static;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding: 12px 10px;
    z-index: 1000;
}
#logo{
    float: left;
    margin-right: 15px;
}
div{
    background-color: lightgrey;
    border-style: outset;
    border-radius: 10px;
    font-family: Minecraft, sans-serif; 
}
#user-status {
  font-weight: bold;
}
#splash-message {
  position: absolute;
  top: 20px;
  right: 20px;
  width: auto;
  max-width: 350px;
  background: #202020f2;
  color: #ffd700;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'Minecraft', Arial, sans-serif;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: none;
  animation: minecraft-pulse 1.2s infinite cubic-bezier(.68,-0.55,.27,1.55);
  transform-origin: center;
  z-index: 9999;
}
#forums-header {
  background-color: lightgrey;  
  border-style: outset;  
  border-radius: 10px;  
  font-family: 'Minecraft', sans-serif;
  text-shadow: 3px 3px 4px hsl(0, 1%, 36%);
  margin-top: 20px;
  color: #000000;
}
#forums-table {
  background-color: lightgrey;
  border-style: outset;    
  border-radius: 10px;  
  font-family: 'Minecraft', sans-serif;
  margin-top: 20px;
  color: #000000;
}
#sign-in-forums {
  background-color: lightgrey;
  border-style: outset;    
  border-radius: 10px;  
  font-family: 'Minecraft', sans-serif;
  margin-top: 20px;
  color: #000000;
}
/* Style for form containers */
form {

  border-radius: 10x;
  max-width: 250px;
  text-align: left;
}

/* Style for labels */
form label {
  display: block;
  margin-bottom: 6px;
  text-shadow: 3px 3px 4px hsl(0, 1%, 36%);
  color: #000000;
  font-family: 'Minecraft', sans-serif;
  font-size: 1.20em;
}

/* Style for input fields */
form input[type="text"],
form input[type="password"],
form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border: outset 2px solid black;
  border-radius: 10px;
  background: #333333;
  color: #d3d3d3;
  font-family: 'Minecraft', sans-serif;
  font-size: 1em;
  outline: none;
  transition: border-color 0.2s;
}

form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="email"]:focus {
  border-color: #000000;
  background: #333333;
}

/* Style for buttons */
form button,
form input[type="submit"],
form input[type="reset"] {
  background: #929292;
  color: #000000;
  border: outset 2px black;
  border-radius: 10px;
  padding: 10px 22px;
  font-family: 'Minecraft', sans-serif;
  font-size: 1.15em;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.2s, color 0.2s;
}

form button:hover,
form input[type="submit"]:hover,
form input[type="reset"]:hover {
  background: #757575;
  color: #000;
}
.nav-links a {
  background: #202020f2;
  color: #ffd700;           /* Default gold color */
  font-size: 1.15em;        /* Bigger text */
  font-family: 'Minecraft', sans-serif;
  text-decoration: none;
  padding: 1.5px;
  border-radius: 6px;
  border: 3px solid transparent;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-bottom: -5;
  display: inline-block;
}

.nav-links a:hover {
  background: #ffd700;
  color: #222;
  border: 2px solid #ffd700;
}

.nav-links a:active,
.nav-links a:focus {
  background: #222;
  color: #ffd700;
  outline: none;
}
.support-choice-box {
  color: #ffd700;
  background: rgba(32,32,32,0.97);
  border-radius: 12px;
  padding: 32px 40px;
  text-align: center;
  max-width: 300px;
}
.support-choice-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.support-choice-btn {
  padding: 10px 25px;
  border-radius: 10px;
  font-size: 1.2em;
  font-family: 'Minecraft', sans-serif;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.support-choice-btn.patreon {
  background: #ff424d;
  color: #fff;
}
.support-choice-btn.patreon:hover {
  background: #ff6f61;
  color: #fff700;
}
.support-choice-btn.kofi {
  background: #29abe0;
  color: #fff;
}
.support-choice-btn.kofi:hover {
  background: #6fd3f7;
  color: #ffd700;
}
@keyframes minecraft-pulse {
  0%, 100% {
    transform: scale(1)
  }
  50% {
    transform: scale(1.04)
  }
}
#otherside-root {
  display: none;
}
.tox.tox-silver-sink.tox-tinymce-aux {
  display: hidden;
}
.badge-admin {
  background: #ff424d;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.9em;
  margin-left: 6px;
}
.badge-mod {
  background: #29abe0;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.9em;
  margin-left: 6px;
}
.create-topic-btn {
  display: inline-block;
  background: #ffd700;
  color: #222;
  font-family: 'Minecraft', 'Pixelify Sans', Arial, sans-serif;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 18px;
  margin-top: 10px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.create-topic-btn:hover {
  background: #fff700;
  color: #000;
  transform: scale(1.05);
}
.bluemap-embed {
  margin: auto;
  width: 900px;
  height: 640px;
  border: 0;
  border-radius: 10px;
  display: inline-block;
  background: #202020f2;
  border: outset;
}
