:root {
  --primary-bg: #13111C;
	--secondary-bg: #1E1B2E;
}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

.sidebar {
  position: fixed;
  top: 70px; 
  left: -100%; 
  width: 300px;
  height: calc(100vh - 70px); 
  background: linear-gradient(180deg, var(--primary-bg), var(--secondary-bg));
  color: #fff;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.7);
  transition: left 0.4s ease, opacity 0.3s ease;
  z-index: 1000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
}

.sidebar.active {
  left: 0; 
  opacity: 1; 
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


hr {
	border: none;
	height: 1px;
	background-color: #bcbcbc;
	margin: 40px 0;
}

.sidebar ul li {
  padding: 10px 15px;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar ul li:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


.language__dropdown ul.dropdown {
  display: none;
  background: var(--secondary-bg);
  padding: 10px;
  border-radius: 5px;
  margin-top: 5px;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  position: absolute;
	top: 100%;
  left: 15px;
  width: calc(100% - 30px);
}

.language__dropdown:hover ul.dropdown {
  display: flex;
}

.language__dropdown ul.dropdown li {
  padding: 5px 10px;
  margin: 5px 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.language__dropdown ul.dropdown li:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.language__dropdown {
  position: relative;
}
