    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Open Sans', sans-serif;
      background: url('https://mystismagazine.adifferentpath.org/assets/img/background.png') no-repeat center center fixed;
      background-size: cover;
      color: white;
      scroll-padding-top: 80px; /* Prevents content from hiding under navbar */
    }

    /* Navbar styles */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(75, 0, 130, 0.95);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 2rem;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }

    nav a {
      color: silver;
      text-decoration: none;
      margin: 0 1rem;
      font-weight: bold;
      position: relative;
    }

    nav a:hover {
      color: hotpink;
    }

    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: rgba(75, 0, 130, 0.9);
      min-width: 150px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.4);
      border-radius: 8px;
      z-index: 1;
      margin-top: 0.5rem;
    }

    .dropdown-content a {
      color: silver;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
    }

    .dropdown-content a:hover {
      background-color: hotpink;
      color: white;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }
    
    .links {
      list-style-type: none;
      display: block;
      padding: 0.5em;
      margin: inherit;
      border: 1px solid #009;
      text-align: left;
      background: #fff;
    }
    
    a.links {
      list-style-type: none;
      display: block;
      max-width: 100%;
      padding: 0.5em;
      margin: inherit;
      margin-bottom: 0;
      color: #00f;
      border: 1px solid #009;
      font-size: 1em;
      line-height: 1.5em;
      background: #fff;
    }

    .banner {
      margin-top: 80px; /* Space for fixed navbar */
      background: linear-gradient(to bottom, hotpink, #e6ccff);"
      padding: 2rem;
      text-align: center;
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: #FF69B4;
      border-bottom: 2px solid silver;
      border-radius: 15px;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      padding: 2rem;
      background-color: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      margin: 2rem;
      border-radius: 15px;
    }

    .gallery img {
      width: 100%;
      border: 3px solid #C0C0C0;
      border-radius: 10px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .gallery img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px hotpink;
    }

    footer {
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: silver;
      margin-top: 2rem;
    }