body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f6f8;
  color: #333;
}

.header {
  background-color: #e0e4e7;
  padding: 15px 20px;
  border-bottom: 2px solid #ccc;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.header-title {
  display: flex;
  align-items: center;
}

.header-title h1 {
  font-size: 2.5em;
  margin: 0;
  display: flex;
  gap: 5px;
}

.header-title h1 .title-live {
  color: #edb53b;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.header-title h1 .title-map {
  color: #b2b6b8;
  font-weight: normal;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.nav-menu {
  margin-top: 0;
  flex: 1;
  display: flex;
  justify-content: center;
  margin-right: 22%;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
}

.nav-menu li a:hover {
  background-color: #dce3e7;
  color: #000;
}

.content {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 15px;
}

.info-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-card h2,
.info-card h3 {
  color: #444;
  margin-top: 0;
}

.info-card a {
  color: #0066cc;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 7px;
  background-color: #e0e4e7;
  color: #666;
}




@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-title {
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .header-title h1 {
    justify-content: center;
    font-size: 2.2em;
    width: 100%;
	margin-right: 20%;
  }

  .nav-menu {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
  }

  .nav-menu li {
    display: inline;
  }

  .nav-menu li a {
    font-size: 1em;
    padding: 6px 10px;
  }
}



