/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #060B16;
  color: white;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;

  background: rgba(6, 11, 22, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 40px;
}

.gradient-text {
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  background: linear-gradient(to right, #5FE2C5, #89E1CE, #C2DFD9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text:visited {
  color: inherit;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  font-weight: 500;
  opacity: 0.85;
}

.nav-links li {
  cursor: pointer;
  transition: 0.3s;
}

.nav-links li:hover {
  opacity: 1;
  color: #5FE2C5;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.nav-links a:visited {
  color: white;
}

.nav-links a:hover {
  color: #5FE2C5;
}

/* ================= SERVER STATS ================= */

.server-stats {
  display: flex;
  align-items: center;
  margin-left: 30px;
  padding-left: 25px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
}

.stat i {
  font-size: 14px;
  opacity: 0.8;
}

.stat span {
  font-weight: 700;
  color: white;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 20px 120px;
  background: url("bghome.gif") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-mascot {
  width: 450px;
}

.hero h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: clamp(14px, 1.5vw, 16px);
  opacity: 0.75;
  margin-bottom: 35px;
}
/* ================= BUTTONS ================= */

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.btn-play {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 50px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #3B82F6, #22D3EE);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.4);
  transition: 0.3s ease;
}

.btn-play:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.6);
}

.secondary-buttons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-glass {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.btn-glass:hover {
  border-color: #5FE2C5;
  background: rgba(95,226,197,0.15);
}

.btn-play {
  padding: 14px 40px;
  font-size: 16px;
}

.btn-glass {
  padding: 12px 28px;
  font-size: 14px;
}
/* ================= COPY POPUP ================= */

.copy-popup {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(90deg, #16A34A, #22C55E);
  padding: 16px 30px;
  border-radius: 14px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
}

.copy-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ================= VOTE MODAL ================= */

.vote-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.vote-box {
  width: 420px;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(to right, #060B16, #0A1426, #0D1F3A);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 50px rgba(0,0,0,0.6);
  text-align: center;
  position: relative;
}

.vote-box h2 {
  font-size: 32px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #9FD3FF, #C2E9FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  opacity: 0.7;
}

.close-btn:hover {
  opacity: 1;
}

.vote-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vote-btn {
  padding: 16px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, #7FFFD4, #66CDAA);
  transition: 0.3s ease;
}

.vote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.4);
}

/* ================= ABOUT & FEATURES ================= */

.about,
.features {
  padding: 100px 10%;
  background: linear-gradient(90deg, #060B16, #0A1426);
  text-align: center;
}

.about-text {
  max-width: 700px;
  margin: 20px auto;
  opacity: 0.8;
  line-height: 1.7;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  background: linear-gradient(to right, #5FE2C5, #89E1CE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-card {
  width: 320px;
  padding: 25px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0B1625, #0F1F33);
  text-align: center;
  transition: 0.3s ease;
}

.feature-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  opacity: 0.7;
  font-size: 14px;
}

.feature-card.green {
  border: 1.5px solid #5FE2C5;
  box-shadow: 0 0 25px rgba(95, 226, 197, 0.2);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 40px rgba(95, 226, 197, 0.4);
}

/* ================= FOOTER ================= */

.footer {
  background: linear-gradient(90deg, #0A1426, #0F1F33);
  padding: 80px 10%;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col.center {
  text-align: center;
}

.footer-col.right {
  text-align: right;
}

.footer h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer p {
  opacity: 0.7;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #5FE2C5;
  opacity: 1;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.social {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social.ig { background: #E1306C; }
.social.yt { background: #FF0000; }
.social.dc { background: #5865F2; }
.social.gm { background: #EA4335; }

.social:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.join-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: 16px;
  margin-top: 20px;
  transition: 0.35s ease;
  cursor: pointer;
}

.join-card img {
  width: 120px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.35s ease;
}

.join-card:hover {
  background: linear-gradient(90deg, #1E3A5F, #134E4A);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.25);
  transform: translateY(-4px);
}

.join-card:hover img {
  transform: scale(1.05);
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 14px;
  opacity: 0.6;
}

.btn-discord { 
  display: inline-flex;
  margin-top: 20px; 
  align-items: center;
  gap: 8px; 
  background: linear-gradient(90deg, #3B82F6, #22D3EE); 
  padding: 12px 22px; border-radius: 12px; 
  text-decoration: none; 
  color: white; 
  font-weight: 600; 
  transition: 0.3s ease; }

.btn-discord:hover { 
transform: translateY(-3px); 
box-shadow: 0 8px 25px rgba(34, 211, 238, 0.4); }

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
  }

  .server-stats {
    font-size: 12px;
    gap: 10px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col.right {
    text-align: center;
  }
}