
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('../assets/background.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: red;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.join-button {
  background-color: #5865F2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

a {
  all: unset;
  display: inline;
  cursor: pointer;
}

.gallery-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 1000;
  padding: 10px 0;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.gallery img {
  width: 100px;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.slide-popup {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, 0.95);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  width: 600px;
  max-width: 100%;
}

.slide-popup.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
  pointer-events: all;
}

.slide-popup img {
  width: 100px;
  border-radius: 4px;
}

.slide-text h3 {
  margin: 0 0 8px 0;
}

.slide-text p {
  margin: 0;
  color: #ccc;
}

.hero-box {
  padding: 120px 20px 60px;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px #000;
}


.status-toggle {
  background: #111;
  border-radius: 8px 0 0 8px;
  width: 40px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 5px;
}

.status-label {
  color: white;
  font-size: 15px;
  font-weight: bold;
  margin-top: 8px;
  font-family: 'Segoe UI', sans-serif;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: all 0.3s ease;
  text-align: center;
}

.server-status-bar:hover .status-label {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
  margin-left: 8px;
  margin-top: 0;
}

.server-status-bar {
  position: fixed;
  top: 45%;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  height: 100;
}

.status-toggle {
  border-radius: 8px 0 0 8px;
  width: 40px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 5px;
  background: rgba(0, 0, 0, 0.95);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.status-dot.online { background-color: #00cc44; }
.status-dot.offline { background-color: #cc0000; }

.status-label {
  color: white;
  font-size: 15px;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.95);
}

.server-status-bar:hover .status-label {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
}

.status-panel {
  display: none;
  position: absolute;
  right: 50px;
  border-radius: 8px;
  padding: 10px;
  width: 230px;
  background: rgba(0, 0, 0, 0.95);
}

.server-status-bar:hover .status-panel {
  display: block;
}

.status-title {
  color: white;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  text-align: center;
}

.status-panel img {
  width: 100%;
  border-radius: 10px;

}

.footer {
  text-align: center;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 20px;
}
