body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffe600 0%, #020066 100%);
    background-attachment: fixed;
    color: #020066;
    animation: fadeInBody 1s ease-in-out;
  }

  @keyframes fadeInBody {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .logo {
    width: 120px;
    animation: scaleIn 0.8s ease-in-out;
  }

  .hamburger {
    font-size: 24px;
    cursor: pointer;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 20px;
    background: #fff;
    color: #003366;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 100;
  }

  .dropdown-menu a {
    display: block;
    text-decoration: none;
    padding: 10px;
    color: #003366;
    font-weight: 500;
  }

  .dropdown-menu a:hover {
    background-color: #f0f0f0;
  }

  .main-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
  }

  .save-button {
    display: block;
    margin: 0 auto 20px auto;
    background-color: #0046ff;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
  }
  .save-button:hover {
    background-color: #002fb3;
  }
  

  .news-banner {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  h1 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 1rem;
  }

  .summary {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
  }

  .content-body {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #333;
  }

  .content-body img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
  }

  .video-section {
    margin-top: 2rem;
  }

  .video-section video {
    width: 100%;
    border-radius: 12px;
  }
  
  body.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 50; /* Behind the menu, but above body */
}