* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #c0c0c0;
  font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #000;
  line-height: 1.5;
  padding: 1.5rem 1rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: transparent;
}
.header {
  text-align: center;
  margin-bottom: 1rem;
}
.logo {
  max-width: 100%;
  width: 506px;
  height: auto;
  margin-bottom: 0.5rem;
}
.top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0.8rem;
}
.lang-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lang-links a, .translate-btn {
  font-weight: bold;
  background-color: #d4d4d4;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  text-decoration: none;
  color: #1a3e6f;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lang-links a:hover, .translate-btn:hover {
  background-color: #b0b0b0;
  color: #000;
}
.translate-wrapper {
  position: relative;
  display: inline-block;
}
.translate-menu {
  display: none;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e0e0e0;
  min-width: 230px;
  border-radius: 12px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.25);
  padding: 10px 6px;
  z-index: 200;
  border: 1px solid #888;
  max-height: 600px;
  overflow-y: auto;
}
.translate-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.85rem;
  border-radius: 20px;
  transition: 0.1s;
}
.translate-menu a:hover {
  background-color: #b0b0b0;
}
.translate-menu .separator {
  border-top: 1px solid #aaa;
  margin: 6px 0;
}
.flag-icon {
  font-size: 1rem;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 1.5rem 0;
  padding: 0.5rem 0.8rem;
  background: #a0a0a0;
  border-radius: 50px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.main-nav a {
  font-weight: 600;
  text-decoration: none;
  color: #000066;
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
  transition: all 0.2s;
  font-size: 0.85rem;
  background: #c8c8c8;
}
.main-nav a:hover {
  background-color: #2c6e2c;
  color: white;
  text-decoration: none;
}
.img-center {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.feature-image {
  max-width: 100%;
  height: auto;
  border: 1px solid #555;
  background: #b0b0b0;
  padding: 4px;
  border-radius: 10px;
}
.image-caption {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 1.2rem;
  color: #2c2c2c;
}
a {
  color: #000099;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #006600;
}
h1 {
  font-size: 1.6rem;
  text-align: center;
  color: #006600;
  margin: 1rem 0;
  font-weight: 600;
}
.text-boxl {
  text-align: left;
  background: #a9a9a9;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  margin: 1rem 0;
}
.text-boxc {
  text-align: center;
  background: #a9a9a9;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  margin: 1rem 0;
}
.text-boxc li {
  margin: 0.5rem 0;
}
.updates-list {
  background: #a9a9a9;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  margin: 1rem 0;
}
.updates-list li {
  margin: 0.5rem 0;
}
.footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #777;
  font-size: 0.8rem;
}
hr {
  border: 0.5px solid #888;
  margin: 1rem 0;
}
.ya-share2, .b-iframe, .translate-banner {
  display: none !important;
}
@media (max-width: 768px) {
  .main-nav {
    border-radius: 20px;
    gap: 0.3rem;
  }
  .main-nav a {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
  }
}
