body {
  margin: 0;
  background: #111;
  color: #fff;
  font-family: 'Play', sans-serif;
  overflow-x: hidden;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}
 @keyframes fadeIn {
    to {
    opacity: 1;
      }
    }
/* Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content:space-between;
  padding: 20px;
  gap: 10px;
}

#logo {
  width: 150px;
  height: auto;
}


.menu-item {
  position: relative;
  font-size: 24px;
  cursor: pointer;
  gap: 20px;
}

.submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #222;
  border: 1px solid crimson;
  padding: 10px;
  border-radius: 10px;
  min-width: 200px;
  z-index: 100;
}

.menu-item:hover .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 5px 10px;
  color: white;
  text-decoration: none;
}

.submenu a:hover {
  background: crimson;
}

/* What's New */
.whats-new {
  padding: 40px;
  background: #1a1a1a;
}

.whats-new h2 {
  margin-bottom: 10px;
  font-size: 32px;
}

.whats-new ul li {
  margin: 10px 0;
}

/* Footer */
.footer {
  background: #000;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

.footer .social img {
  width: 30px;
  margin: 0 10px;
  filter: invert(1);
}


.nav-menu {
  display: flex;
  gap: 40px;
}

.dropdown {
  position: relative;
}

.dropbtn {
  background-color: #111;
  color: white;
  padding: 10px 20px;
  font-size: 20px;
  font-family: 'Play', sans-serif;
  border: 2px solid rgb(255, 0, 0);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dropbtn:hover {
  background-color: rgb(255, 0, 0);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  border: 1px solid rgb(196, 0, 0);
  min-width: 180px;
  box-shadow: 0 0 10px rgba(255,0,0,0.4);
  z-index: 100;
  border-radius: 8px;
  top: 101%;
  left: 0;
  overflow: hidden;
}

.dropdown-content a,
.dropdown-content span {
  color: white;
  padding: 10px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-family: 'Play', sans-serif;
}

.dropdown-content a:hover {
  background-color: rgb(196, 0, 0);
}

.dropdown:hover .dropdown-content {
  display: block;
}