header {
  text-align: center;
  padding: 10px;
}

.mainTitle {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #1e3a8a, #72a8ff);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 10px;
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
}

.mainTitle:hover {
  transform: scale(1.05);
}

/* Tab Menu Styling */
.tabmenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 8px;
  padding: 4px;
  margin: 0;
  list-style: none;
  gap: 4px; /* smaller gap */
}

.tabmenu li {
  flex: 1 1 auto;
  text-align: center;
}

.tabmenu a {
  display: block;
  padding: 8px 14px; /* tighter spacing */
  color: #2d2d2d;
  background-color: #f5f5f5;
  text-align: center;
  font-size: 15px; /* slightly smaller */
  font-weight: 500;
  border-radius: 6px; /* tighter corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18); /* darker, crisper shadow */
  white-space: nowrap;
  transition: all 0.25s ease;
  border: 1px solid rgb(0, 119, 204);
}

.tabmenu a:hover {
  background-color: #1c2f6e;
  color: #fff;
  transform: translateY(-1px); /* smaller lift */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.tabmenu a.active {
  background-color: #1c2f6e;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .tabmenu {
    justify-content: space-around;
    padding: 3px;
    gap: 3px;
  }

  .tabmenu a {
    font-size: 14px;
    padding: 7px 12px;
    border-radius: 5px;
  }
} 
/* Tab Menu Styling End */

/*GIF Ad Style*/
.gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: min-content;
  }
  
  .centered-gif {
    width: 100%;
    max-width: 350px;
    max-height: 125px;
    border: 1px solid #555;
    border-radius: 5px;
  }