body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

.page-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.card {
  width: 90%;
  max-width: 1000px;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.image-wrap img {
  width: 100%;
}

.badge {
  background: #38bdf8;
  padding: 6px 12px;
  border-radius: 999px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch input {
  display: none;
}

.slider {
  width: 50px;
  height: 25px;
  background: #ccc;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}

.slider::before {
  content: "";
  width: 20px;
  height: 20px;
  background: white;
  position: absolute;
  top: 2.5px;
  left: 3px;
  border-radius: 50%;
  transition: 0.2s;
}

input:checked + .slider::before {
  transform: translateX(24px);
}

.lang-label {
  opacity: 0.5;
}

.lang-label.active {
  opacity: 1;
}