.lang-switch {
  position: fixed;
  top: 20px;
  right: 20px;
}

.lang-switch select {
  background: black;
  color: gold;
  border: 1px solid gold;
  padding: 6px 10px;
  border-radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 35%),
    linear-gradient(135deg, #050505, #17120a);
  color: #f7f0df;
  line-height: 1.7;
}

.container {
  width: 100%;
  min-height: 100vh;
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 900px;
  background: rgba(18, 18, 18, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

.logo-area {
  text-align: center;
  margin-bottom: 38px;
}

.logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 28px;
  background: linear-gradient(145deg, #d4af37, #fff1a6, #8a6a12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 35px rgba(212, 175, 55, 0.35),
    inset 0 0 12px rgba(255, 255, 255, 0.35);
}

.logo span {
  font-size: 54px;
  font-weight: bold;
  color: #111;
  letter-spacing: -3px;
}

h1 {
  margin: 0;
  font-size: 40px;
  color: #d4af37;
}

.subtitle {
  margin-top: 4px;
  color: #b9a875;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h2 {
  margin-top: 34px;
  color: #f1d27a;
  font-size: 22px;
}

p {
  font-size: 16px;
  color: #eee4cc;
}

.date {
  color: #b9a875;
  font-size: 14px;
}

a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.contact {
  padding: 16px;
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid #d4af37;
  border-radius: 12px;
}

footer {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  color: #9f936f;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 600px) {
  .card {
    padding: 26px;
    border-radius: 18px;
  }

  .logo {
    width: 78px;
    height: 78px;
    border-radius: 22px;
  }

  .logo span {
    font-size: 44px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }
}
