* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #1d1f27;
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: #ffffff;
  color: black;
}

.logo {
  font-size: 25px;
  font-weight: bold;
  color: #29cb05;
}

.navbar nav a {
  margin: 0 5px;
  text-decoration: underline;
  font-size: 13px;
  color: #29cb05;
  font-weight: 1000;
}



/* Hero Section */
.hero {
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  color: #ffc107;
  margin-bottom: 30px;
}

/* Search Box */
.search-box {
  display: flex;
  width: 450px;
  max-width: 90%;
  margin-bottom: 20px;
}

.search-box input {
  flex: 1;
  padding: 15px;
  font-size: 16px;
  border-radius: 25px 0 0 25px;
  border: none;
  outline: none;
}

.search-box button {
  padding: 15px 25px;
  border-radius: 0 25px 25px 0;
  border: none;
  background: #04aa6d;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* Help link */
.help-link {
  margin-top: 15px;
  color: white;
  font-weight: bold;
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.875rem;
    }

    nav a {
        font-size: 0.75rem;
    }

    button {
        padding: 8px;
        font-size: 0.75rem;
    }
}

.game {
    margin-top: 30px;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown menu (hidden by default) */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 160px;
    border: 1px solid #ccc;
    z-index: 10;
    border-radius: 4px;
}

/* Dropdown menu links */
.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    font-size: 0.875rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effects for dropdown links */
.dropdown-menu a:hover {
    background-color: #8a2be2;
    color: #fff;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Adjust positioning */
nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

