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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a1628;
  color: #fff;
  min-height: 100vh;
}

.lang-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
}

.lang-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(196,30,58,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0,98,51,0.2) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 10L43 30H63L47 42L51 62L40 51L29 62L33 42L17 30H37L40 10Z' fill='%23D4AF37' fill-opacity='0.04'/%3E%3C/svg%3E");
}

.lang-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 520px;
  width: 100%;
}

.lang-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.lang-logo {
  width: 50px;
  height: 50px;
}

.lang-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.lang-brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.lang-brand-suffix {
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
}

.lang-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.lang-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 36px;
}

.lang-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease;
}

.lang-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(6px);
}

.lang-flag {
  font-size: 1.6rem;
}

.lang-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.lang-footer {
  margin-top: 32px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
