@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #2d2d2d;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  backdrop-filter: blur(12px);
  background: rgba(45, 45, 45, 0.6);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.logo h1 {
  font-size: 1.4rem;
  background: linear-gradient(90deg, #ffb300, #fe3a06);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 1.5s ease;
}

nav ul li a:hover {
  color: #fe3a06;
}

.discord-btn {
  background-color: #fe3a06;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.discord-btn:hover {
  background-color: #ff5722;
}

/* Not Found Section */
.notfound {
    text-align: center;
    padding: 150px 20px;
}

.notfound h1 {
    font-size: 2.5rem;
    color: #ffc400;
}

.notfound p {
    color: #ccc;
    margin: 10px 0 30px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #ffb400, #ff7c00);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
footer {
    background: #000;
    padding: 20px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Not Found Section */
.notfound {
    text-align: center;
    padding: 150px 20px;
}

.notfound h1 {
    font-size: 2.5rem;
    color: #ffc400;
}

.notfound p {
    color: #ccc;
    margin: 10px 0 30px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #ffb400, #ff7c00);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
footer {
    background: #000;
    padding: 20px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}
