/* Modern dark stylesheet matching landing page */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    sans-serif;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px;
  background: #141428;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

h1 {
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.4em;
  font-weight: 300;
  letter-spacing: 1px;
}

h2 {
  color: #daa520;
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 500;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  padding-bottom: 8px;
}

h3 {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 500;
}

p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.75);
}

ul,
ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

a {
  color: #daa520;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f0c14b;
  text-decoration: underline;
}

.contact-info {
  background: rgba(218, 165, 32, 0.1);
  padding: 25px;
  border-radius: 12px;
  margin-top: 35px;
  border-left: 4px solid #daa520;
}

.contact-info h2 {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info strong {
  color: #fff;
}

.language-switch {
  text-align: center;
  margin-bottom: 35px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.language-switch a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.language-switch a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.language-switch a.current {
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.last-updated {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9em;
}

/* Emphasis styling */
em {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

strong {
  color: #fff;
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .container {
    margin: 20px 15px;
    padding: 25px 20px;
    border-radius: 12px;
  }

  h1 {
    font-size: 1.9em;
  }

  h2 {
    font-size: 1.15em;
  }

  .language-switch {
    padding: 0;
  }

  .language-switch a {
    padding: 8px 16px;
    font-size: 13px;
  }
}
