@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #2d2d2d;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  backdrop-filter: blur(12px);
  background: rgba(45, 45, 45, 0.6);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.logo h1 {
  font-size: 1.4rem;
  background: linear-gradient(90deg, #ffb300, #fe3a06);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 1.5s ease;
}

nav ul li a:hover {
  color: #fe3a06;
}

.discord-btn {
  background-color: #fe3a06;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.discord-btn:hover {
  background-color: #ff5722;
}

/* Server Section */
.server-status {
    text-align: center;
    padding: 70px 20px;
}

.server-status h1 {
    color: #ffc400;
    margin-bottom: 40px;
}

.status-box {
    background: #111;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    width: 400px;
    margin: 0 auto;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dot {
    height: 14px;
    width: 14px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.green {
    background-color: #00c851;
}

.red {
    background-color: #ff4444;
}

.red-text {
    color: #ff4444;
}

.status-text {
    font-weight: 600;
}

.progress-section {
    margin-top: 20px;
}

.progress-bar {
    background: #333;
    border-radius: 10px;
    width: 100%;
    height: 20px;
    overflow: hidden;
}

#progressFill {
    background: linear-gradient(90deg, #ffb400, #ff7c00);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease-in-out;
}

#playerCount {
    margin-top: 10px;
    font-weight: 600;
    color: #ccc;
}

/* Quick Actions */
.quick-actions {
    margin-top: 60px;
    background: #111;
    padding: 40px;
    border-radius: 15px;
    width: 400px;
    margin-inline: auto;
}

.quick-actions h2 {
    color: #ffc400;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn.yellow {
    background: linear-gradient(90deg, #ffb400, #ff7c00);
    color: #fff;
}

.btn.gray {
    background: #222;
    color: #fff;
}

/* Footer */
footer {
    background: #000;
    padding: 20px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}
