body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url("images/background.jpg") center top / 100% auto no-repeat fixed;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

nav {
  background: rgba(0,0,0,0.6);
  padding: 10px 0;
  text-align: center;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
  font-size: 18px;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #00e0ff;
  border-color: rgba(0, 224, 255, 0.8);
  box-shadow: 0 0 12px rgba(0, 224, 255, 0.6);
  background: rgba(0, 224, 255, 0.15);
}

.status-container {
  position: absolute;
  top: 64px;
  right: 24px;
  background: rgba(0,0,0,0.6);
  padding: 10px 15px;
  border-radius: 10px;
}
.status {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 8px;
}
.online {
  background-color: #00ff00;
}
.offline {
  background-color: #ff0000;
}
.players {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 6px;
  font-weight: bold;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding-top: 60px;
}

table {
  border-collapse: collapse;
  background: rgba(0,0,0,0.6);
  border-radius: 10px;
  overflow: hidden;
  min-width: 320px;
}
th, td {
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
}
th {
  background: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}
tr:last-child td {
  border-bottom: none;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 40px;
  border-radius: 8px;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn:hover {
  background: rgba(0, 217, 255, 0.3);
  border-color: #00d9ff;
  transform: scale(1.05);
}

.form-container {
  width: 650px;
  margin: 60px auto;
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}
input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
}
textarea {
  width: 90%;
  max-width: 600px;
  height: 50vh;
  max-height: 500px;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  resize: vertical;
}
button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: #00cc99;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
button:hover {
  background: #00ffaa;
}
.message {
  margin-top: 10px;
  font-size: 14px;
}

.form-container.small {
  background: rgba(0, 0, 0, 0.6);
  width: 320px;
  margin: 120px auto;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  color: #2fd8c9;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  z-index: 1000;
}


@media (max-width: 768px) {

  nav {
    background: rgba(0,0,0,0.6);
    padding: 10px 0;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 20px;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-top: 40px;
  }

  .status-container {
    position: static;
    margin: 20px auto;
    text-align: center;
  }

  table {
    width: auto;
    margin: 0 auto;
    font-size: 16px;
    border-collapse: collapse;
    background: rgba(0,0,0,0.6);
    border-radius: 10px;
    overflow: hidden;
  }

  th, td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  th {
    background: rgba(255,255,255,0.1);
  }

  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
  }

  .btn {
    display: inline-block;
    width: 90%;
    max-width: 320px;
    text-align: center;
    padding: 14px 0;
    font-size: 18px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .btn:hover {
    background: rgba(0,217,255,0.3);
    border-color: #00d9ff;
  }

  .form-container {
    width: 90%;
    margin: 40px auto;
    background: rgba(0,0,0,0.6);
    box-shadow: none;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
  }

  input, textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 6px;
  }

  textarea {
    height: 250px;
  }

  button {
    width: 80%;
    max-width: 300px;
    font-size: 16px;
    background: #00cc99;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
  }

  button:hover {
    background: #00ffaa;
  }

  body {
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  textarea::placeholder {
    color: #aaa;
    opacity: 1;
  }

  textarea {
    color: #aaa;
    opacity: 1;
  }
 
  input::placeholder {
    color: #aaa;
    opacity: 1;
  }

  input {
    color: #aaa;
    opacity: 1;
  }
 
}
