* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #d1832a;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-navigation {
  display: flex;
  align-items: center;
  background-color: #3c3c3c;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-out;
}

.top-navigation .nav-logo {
  margin-right: 2rem;
  width: auto;
  height: 100px;
  object-fit: contain;
}

.top-navigation ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.top-navigation ul li a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 4px;
}

.top-navigation ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.top-navigation .dropdown {
  position: relative;
}

.top-navigation .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #9c5606;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.top-navigation .dropdown-games {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #9c5606;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.top-navigation .dropdown:hover .dropdown-content,
.top-navigation .dropdown:hover .dropdown-games {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-navigation .dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.top-navigation .dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.top-navigation .dropdown-games a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.top-navigation .dropdown-games a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #ffa726, #fb8c00);
}

.image-carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.image-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.image-carousel-item.active {
  opacity: 1;
}

.image-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  border-radius: 8px;
  max-width: 80%;
}

.carousel-text h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.carousel-text p {
  font-size: 1rem;
  opacity: 0.9;
}

.page-footer {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.welcome-note, .social-note {
  margin-bottom: 1rem;
}

.welcome-note h2, .social-note h2 {
  margin-bottom: 1rem;
  color: #333;
}

.welcome-note p, .social-note p {
  line-height: 1.6;
  color: #666;
}

.websim-link {
  color: #b06407;
  text-decoration: none;
  font-weight: bold;
}

.websim-link:hover {
  text-decoration: underline;
}

.reddit-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #888;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}