/* === Basic Setup === */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #0d0d0d;
  color: #eee;
  font-family: 'Segoe UI', sans-serif;
}

/* === Navigation === */
nav {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  transition: box-shadow 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-left a {
  position: relative;
  font-weight: bold;
  margin-right: 25px;
  font-size: 1.1em;
  text-decoration: none;
  background: linear-gradient(90deg, #ffcc00, #ff6600, #ffcc00);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

.nav-left a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #ffcc00, #ff6600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-left a:hover::after,
.nav-left a:focus::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-right {
  color: #ccc;
  font-size: 1em;
  font-weight: 500;
}

.online-status {
  color: #00ff66;
  font-weight: bold;
  padding-left: 5px;
  animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 3px #00ff66; }
  50% { text-shadow: 0 0 10px #00ff66, 0 0 20px #00ff66; }
}

/* === Coming Soon Bar === */
.coming-soon-bar {
  background: linear-gradient(to right, #222, #000);
  color: #ffcc00;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 120px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 998;
  animation: flicker 1.8s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  47% { opacity: 0.6; }
  53% { opacity: 0.85; }
  60% { opacity: 1; }
}

/* === Hero Banner === */
.hero-banner {
  margin-top: 0;
  height: 90vh;
  background: url('banner.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#ffcc00 1px, transparent 1px);
  background-size: 20px 20px;
  animation: particles 10s linear infinite;
  opacity: 0.08;
  z-index: 1;
}

@keyframes particles {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.hero-banner .overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  color: #ffcc00;
  text-align: center;
  padding: 40px;
  max-width: 90%;
  border-radius: 10px;
}

/* === Overlay Titles & Button === */
.hero-banner h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-button {
  background: #ffcc00;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background: #e6b800;
}

/* === Info & Vote Sections === */
section.info {
  padding: 40px;
  text-align: center;
}

.vote-section h2 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.vote-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.vote-icons img {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px #ffcc00);
  border-radius: 8px;
}

.vote-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px #ffcc00);
}

/* === Footer === */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  font-size: 0.8em;
  color: #888;
}

/* === Animation === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
  animation-play-state: paused;
}

.fade-in.visible {
  animation-play-state: running;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Server Grid === */
.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.info-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

.info-block h3 {
  margin-top: 0;
  color: #ffcc00;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-block p,
.info-block li {
  color: #ddd;
  font-size: 0.95em;
  line-height: 1.5;
}

.info-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-block li::before {
  content: '✨';
  color: #ffcc00;
  margin-right: 8px;
}

/*