.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(135deg, #1e1e2f, #2c3e50);
}

.header {
  height: 250px;
  background: linear-gradient(135deg, #1e1e2f, #2c3e50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  font-weight: bold;
}

.menu {
  height: 100px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.content {
  flex: 1;
  display: flex;
  border: 2px solid #999;
  background-color: #e6f0ff;
  gap: 20px;
  padding: 10px;
  justify-content: center; 
}

.sidebar {
  background-color: #1e1e2f;
  color: #f0f0f0;
  padding: 20px;
  border-radius: 10px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 4px 12px rgba(180, 70, 70, 0.3);
  width: 250px;
  min-height: calc(100vh - 150px - 70px - 50px);
  position: sticky;
  top: 180px;
  }

.sidebar h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  Color: #00bcd4;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 5px;
  }

.sidebar ul {
  list-style-type: none;
  padding-left: 0;
  }

.sidebar li {
  margin-bottom: 10px;
  line-height: 1.5;
  }

.sidebar a {
  color: #ffffff;
  }

.sidebar li strong {
  color: #ffd700;
  }

.sidebar ul ul {
  margin-top: 5px;
  padding-left: 15px;
  border-left: 2px solid #444;
  }

.sidebar ul ul li {
  font-size: 0.95em;
  color: #ccc;
  }

.main {
  display: flex;
  flex-wrap: wrap;     
  gap: 15px;           
  justify-content: center;
  align-items: flex-start;
  flex: 1;           
  background-color: #ffffff;
  color: #333;
  font-size: 20px;
  padding: 10px;
  min-width: 300px;    
}

.gundam-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border: 3px solid #4a90e2; 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gundam-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.footer {
  background: linear-gradient(135deg, #1e1e2f, #2c3e50);
  color: #f0f0f0;
  padding: 20px;
  text-align: center;
  font-size: 15px;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.2);
}

.footer a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer a:hover {
  color: #4a90e2;
}

.footer small {
  font-size: 13px;
  opacity: 0.8;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 15px 30px;
  border-bottom: 2px solid #007BFF;
}

.nav {
  list-style: none;
  display: flex;
  gap: 150px;
}

.creator-profile {
  text-align: center;
}

.creator-profile img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #4CAF50;
}

.creator-profile p {
  font-size: 14px;
  color: #fdfdfd;
  margin: 5px 0;
}

.creator-profile a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
}

.creator-profile a:hover {
  text-decoration: underline;
}