body {
  margin: 0;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #0e162e;
}
.main {
  flex: 1;
}
header {
/* color: #fff; */
text-align: center;
}
.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #90ee90; /* Light green background */
    padding: 10px;
}
.banner a {
    color: #333; /* Dark text for contrast */
    text-decoration: none;
    font-size: 1.2rem;
}
.domain {
  /* padding: 5px 10px 5px 10px; */
  overflow: hidden;
  text-align: center;
}
h1 {
  font-size: 1.5rem;
  color: #949494;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.content {
  display: flex;
  justify-content: center;
  padding: 0px 20px 20px;
  /* REMOVE flex: 1 */
}
.category-box {
  /* background-color: #fff; */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 1000px;
  width: 100%;
}
.category-box h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: #333;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.link-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background-color: #02198b;
  border: 1px solid #02198b;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.2s;
}

.link-item a:hover {
  background-color: #2a56c6;
}
.arrow {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}
@media (max-width: 768px) {
  .link-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
footer {
  text-align: center;
  padding: 15px;
  background-color: #0e162e;
  font-size: 14px;
  color: #949494;
}
footer a {
  color: #949494;
  text-decoration: none;
  font-size: 10px;
}
footer a:hover {
  text-decoration: underline;
}