@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  height: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0,0,0,0.6);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  height: 30px;
  margin-right: 10px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00aaff;
}

.hero {
  background: url('img/backround.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.xpink {
  color: #ff00aa;
}

.xblue {
  color: #00aaff;
}

.desc {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

#highlight {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  min-height: 2rem;
}

.btn {
  background: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #0056b3;
}

.support {
  margin-top: 15px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.8);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 20px;
    border-radius: 8px;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links li {
    margin: 10px 0;
  }
}


/* Custom tweaks added by assistant */
body { font-family: 'Poppins', 'Roboto', system-ui, Arial, sans-serif; }

.header .logo img { width: 46px; height:46px; object-fit:cover; margin-left:6px; }

/* Make nav text white, top XPIXEL white already but ensure contrast */
.header .brand { color: #fff !important; }

/* Hamburger on top */
.hamburger { z-index: 9999; position: relative; }

/* Hero title and description box constraints */
.hero .container { max-width: 960px; margin: 0 auto; padding: 20px; text-align:center; }
.hero h1 { font-size: 44px; line-height:1.05; margin: 10px 0; }
.hero p { max-width: 720px; margin: 10px auto 20px auto; font-size:18px; line-height:1.45; color: #fff; }

/* Limit highlight text */
.highlight { font-weight:700; font-size:22px; color:#00a8ff; margin-bottom:14px; }

/* Footer background - translucent similar to top */
footer { background: rgba(0,0,0,0.6); color:#fff; }

/* Make small screens adjust */
@media (max-width:480px) {
  .hero h1 { font-size:32px; }
  .header .brand { font-size:18px; }
  .header .logo img { width:40px; height:40px; }
}

/* Hotbar-like server status */
.server-status {
  display:inline-block;
  background:rgba(0,0,0,0.6);
  color:#fff;
  padding:12px 18px;
  border-radius:10px;
  font-family: 'Roboto', sans-serif;
  margin-top:18px;
}

/* Buttons */
.btn { display:inline-block; padding:14px 26px; background:#0b86ff; color:#fff; border-radius:12px; text-decoration:none; box-shadow:0 14px 30px rgba(11,134,255,0.18); }

/* Menu dropdown */
.nav-dropdown { background: rgba(0,0,0,0.65); padding:12px; border-radius:10px; color:#fff; }



/* Show nav links when .open is toggled (mobile) */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  padding: 10px 20px;
  z-index: 999;
}

/* Highlight rotating word */
#highlight {
  font-size: 1.6rem;
  margin: 14px 0;
  height: 1.8em; /* reserve space to avoid layout jump */
  text-align: center;
  color: #fff;
  opacity: 0;
}

/* Ensure menu toggle visible on mobile */
.menu-toggle {
  cursor: pointer;
  user-select: none;
}
