body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('bg.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

/* OVERLAY */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;

  background: radial-gradient(
      circle at center,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.6)
    ),
    linear-gradient(
      rgba(0,0,0,0.4),
      rgba(0,0,0,0.5)
    );

  top: 0;
  left: 0;
  z-index: 1;
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;

  padding-top: 120px;
  text-align: center;

  margin-left: 0; /* 🔥 IMPORTANT - scoate offset */
}

/* LOGO */
/* LOGO ANIMATION */
.logo {
  width: 260px;
  margin-bottom: 20px;

  animation: floatLogo 4s ease-in-out infinite;
}

/* FLOAT */
@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* GLOW subtil */
.logo {
  filter: drop-shadow(0 0 10px rgba(34,197,94,0.4));
}

/* TITLU */
h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  color: #aaa;
  margin-bottom: 40px;
}

/* VOTE BOXES */
.buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.vote-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 25px;
  border-radius: 16px;
  width: 220px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.25s;
}

.vote-box:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(0, 0, 0, 0.75);
}

.vote-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.vote-btn {
  display: inline-block;
  background: linear-gradient(45deg, #22c55e, #4ade80);
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: 0.25s;
}

.vote-btn:hover {
  background: linear-gradient(45deg, #38bdf8, #0ea5e9);
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 30;
}

/* SIDEBAR CARD */
.sidebar-content {
  width: 85%;
  padding: 25px;
  border-radius: 20px;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,0,0,0.6);

  text-align: left;
}

.sidebar-content h2 {
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* STATUS */
.status {
  color: #22c55e;
  font-weight: bold;
  margin-bottom: 5px;
}

/* PLAYERS */
#players {
  color: #aaa;
  margin-bottom: 20px;
}

/* DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px 0;
}

/* 🔥 MENU ITEMS */
.menu-item {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 14px;
  border-radius: 14px;

  margin-bottom: 12px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);

  text-decoration: none;
  color: white;
  cursor: pointer;

  transition: 0.25s;
}

/* ICON */
.menu-item .icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: rgba(34,197,94,0.15);
  color: #22c55e;

  transition: 0.3s;
}

/* SVG */
.menu-item .icon svg {
  width: 24px;
  height: 24px;
}

/* TEXT */
.menu-item .small {
  font-size: 12px;
  color: #aaa;
}

.menu-item .big {
  font-size: 15px;
  font-weight: 600;
}

/* HOVER */
.menu-item:hover {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);

  transform: translateX(5px);
  box-shadow: 0 0 20px rgba(34,197,94,0.2);
}

.menu-item:hover .icon {
  background: #22c55e;
  color: black;
  box-shadow: 0 0 15px #22c55e;
}

.menu-item:hover .small {
  color: rgba(0,0,0,0.7);
}

/* 🔥 PANEL JOS */
.bottom-panel {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 20px;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);

  border-radius: 24px;
  padding: 20px 25px;

  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 50px rgba(0,0,0,0.7);

  z-index: 999; /* 🔥 IMPORTANT */
}

/* MENU ITEM (adaptat pentru row) */
.menu-item {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 16px 22px;
  border-radius: 18px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  color: white;
  text-decoration: none;

  cursor: pointer;
  transition: 0.3s;
}

/* ICON */
.menu-item .icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.menu-item .icon svg {
  width: 22px;
  height: 22px;
}

/* TEXT */
.menu-item .small {
  font-size: 12px;
  color: #aaa;
}

.menu-item .big {
  font-size: 16px;
  font-weight: 700;
}

/* HOVER */
.menu-item:hover {
  background: linear-gradient(45deg, #22c55e, #4ade80);
  color: black;

  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 25px rgba(34,197,94,0.5);
}

.menu-item:hover .icon {
  background: black;
  color: #22c55e;
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  pointer-events: none;
  z-index: 1;
}

/* fiecare punct */
.particles::before,
.particles::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;

  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 50px 50px;

  opacity: 0.15;

  animation: moveParticles 60s linear infinite;
}

/* layer 2 (mai slow) */
.particles::after {
  background-size: 80px 80px;
  opacity: 0.08;
  animation-duration: 120s;
}

/* animatie */
@keyframes moveParticles {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1000px);
  }
}

.server-status-bar {
  position: fixed;
  bottom: 130px; /* 🔥 deasupra panelului */
  left: 50%;
  transform: translateX(-50%);

  padding: 10px 20px;
  border-radius: 20px;

  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 500;

  z-index: 60;

  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* DOT verde */
.server-status-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: #22c55e;

  box-shadow: 0 0 10px #22c55e, 0 0 20px #22c55e;

  animation: pulseDot 2s infinite;
}

/* animatie puls */
@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}