.wiki-container {
  display: flex;
  margin-top: 60px;
  min-height: calc(100vh - 60px);
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url('https://www.pixground.com/wp-content/uploads/2023/12/GTA-6-Sunset-4K-Wallpaper-1081x608.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.wiki-sidebar {
  width: 300px;
  background-color: rgba(26, 26, 26, 0.95);
  padding: 2rem;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  backdrop-filter: blur(5px);
  border-right: 1px solid rgba(255, 51, 51, 0.2);
}

.search-box {
  margin-bottom: 2rem;
}

.search-box input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(255, 51, 51, 0.3);
  border-radius: 5px;
  background-color: rgba(10, 10, 10, 0.8);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(255, 51, 51, 0.5);
}

.wiki-nav ul {
  list-style: none;
}

.wiki-nav ul li {
  margin-bottom: 1rem;
}

.wiki-nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 0.5rem;
  border-radius: 5px;
}

.wiki-nav ul li a:hover {
  color: var(--primary-color);
  background-color: rgba(255, 51, 51, 0.1);
}

.wiki-content {
  margin-left: 300px;
  padding: 2rem;
  max-width: 900px;
  background-color: rgba(10, 10, 10, 0.9);
  min-height: calc(100vh - 60px);
}

.wiki-content section {
  margin-bottom: 4rem;
  background-color: rgba(26, 26, 26, 0.95);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.wiki-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.wiki-content h3 {
  margin: 1.5rem 0 1rem;
  color: #ff6666;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.job-card {
  background-color: rgba(26, 26, 26, 0.95);
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 51, 51, 0.2);
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .wiki-sidebar {
    width: 100%;
    position: relative;
    height: auto;
    top: 0;
  }
  
  .wiki-content {
    margin-left: 0;
  }
  
  .wiki-container {
    flex-direction: column;
  }
}