<style>
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
    body, html {
      height: 100%;
      width:  100%;
      margin: 0;
      padding: 0;
      font-family: 'Arial', sans-serif;
    }

    .background {
      background-image: url('Banner_new.png'); /* your background image */
      background-size: cover;
      background-position: center;
      background-color: black; /* fallback color */
      background-attachment: fixed;
    
      min-height: 100vh;   /* ensures it covers full screen initially */
      height: auto;        /* allows the background to grow with content */
    
      display: flex;
      flex-direction: column;  /* stack header, nav, content vertically */
      align-items: center;     /* center horizontally */
      justify-content: flex-start; /* start content from top */
      text-align: center;
      position: relative;
    }
    
    .content-wrapper {
      width: 100%;
      max-width: 1100px;       /* prevents content from stretching too wide */
      margin: 0 auto;
      display: flex;
      flex-direction: column;  /* stack items inside vertically */
      align-items: center;     /* center inner items */
      padding: 40px 24px;
      z-index: 10;
      position: relative;
    }
    .site-title {
      font-family: 'Audiowide', cursive;
      font-size: 56px;
      margin-bottom: 24px;
      text-align: center;
      background: linear-gradient(90deg, #00f0ff, #ff00f0, #a200ff);
      background-size: 200% auto;
      color: transparent;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 2s linear infinite;
      letter-spacing: 2px;
    }
     .nav-menu {
      display: flex;
      padding-bottom: 50px;
      padding-top: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .neon-button {
      color: #fff;
      text-decoration: none;
      width: 150px;
      height: 50px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      margin: 10px;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 8px;
      background-color: rgba(0, 0, 0, 0.6); /* NEW: black transparent background */
      border: 2px solid transparent;
      border-image: linear-gradient(to right, #00f0ff, #ff00f0, #a200ff) 1;
      position: relative;
      transition: 0.3s ease;
      box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    
      /* Glow text effect */
      font-family: 'Orbitron', sans-serif;
      color: #fff;
      text-shadow: 0 0 5px #ff00ff, 0 0 10px #00f0ff, 0 0 20px #ff00f0;
    }
    
    .neon-button:hover {
      background-color: rgba(255, 0, 255, 0.1);
      box-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff, 0 0 60px #ff00ff;
      transform: scale(1.05);
    }
    /* Dropdown container */
    .dropdown {
      position: relative;
      display: inline-block;
    }
    
    /* Dropdown content */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.9);
      min-width: 150px;
      border-radius: 8px;
      box-shadow: 0 0 10px #ff00ff;
      z-index: 30;
      top: 60px; /* spacing under button */
    }
    
    /* Dropdown links */
    .dropdown-content a {
      display: block;
      text-align: center;
      color: #fff;
      padding: 12px 0;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 0, 255, 0.2);
      transition: 0.3s;
    }
    
    .dropdown-content a:hover {
      background-color: rgba(255, 0, 255, 0.1);
      box-shadow: 0 0 10px #ff00ff;
    }
    
    /* Show dropdown on hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }

    .overlay {
      position: relative;
      background: linear-gradient(135deg, rgba(0, 0, 10, 0.85), rgba(20, 0, 40, 0.85));
      padding: 10px;
      border-radius: 10px;
      color: white;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
      z-index: 1;
    }
    .overlay::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 200%;
      height: 200%;
      background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
      background-size: 300px 300px;
      animation: twinkle 2s linear infinite;
      opacity: 0.6;
      z-index: 0;
    }
    @keyframes twinkle {
      0% { opacity: 0.2; transform: scale(1); }
      50% { opacity: 0.3; transform: scale(1.02); }
      100% { opacity: 0.5; transform: scale(1); }
    }


    h1 {
      font-family: 'Audiowide', cursive;    
      font-size: 48px;
      background: linear-gradient(90deg, #00f0ff, #ff00f0, #a200ff);
      background-size: 200% auto;
      color: transparent;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 1.5s linear infinite;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: bold;
    }
    

    .glow-box {
      max-width: 750px;
      margin: 15px auto;
      padding: 40px;
      background-color: rgba(0, 0, 0, 0.6); /* translucent black */
      border: 2px solid transparent;
      border-radius: 12px;
      box-shadow:
        0 0 10px #00f0ff,
        0 0 20px #ff00f0,
        0 0 30px #a200ff;
      text-align: center;
      color: white;
      font-family: 'Orbitron', sans-serif;
    }
    
    .glow-box h2 {
      font-size: 36px;
      margin-bottom: 20px;
      background: linear-gradient(90deg, #00f0ff, #ff00f0, #a200ff);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
      animation: shimmer 3s linear infinite;
    }
    
    .glow-box p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 15px;
    }
    
    .glow-box .coming-soon {
      font-weight: bold;
      color: #ff00ff;
      text-shadow: 0 0 10px #ff00ff;
    }
    
    @keyframes shimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
      z-index: 2;
    }
    
    .media-card {
      overflow: hidden;
      border-radius: 10px;
      background-color: rgba(0, 0, 0, 0.7);
      box-shadow: 0 0 8px #00f0ff, 0 0 16px #ff00f0, 0 0 24px #a200ff;
      transition: transform 0.3s ease;
    }
    
    .media-card:hover {
      transform: scale(1.02);
    }
    
    .media-card img,
    .media-card video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      cursor: pointer;
    }
    /* About Us Page Specific */
    #about-us h1, .content-wrapper h1 {
    margin-bottom: 20px;
    }
    
    
    .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    }
    
    
    .media-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 8px #00f0ff, 0 0 16px #ff00f0, 0 0 24px #a200ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 350px;
    height: 600px;
    cursor: pointer;
    }
    
    
    .media-card img {
    width: 100%;
    display: block;
    border-radius: 8px;
    filter: grayscale(100%);
    width: 350px;
    height: 600px;
    transition: filter 0.3s ease;
    }
    
    
    .media-card:hover img {
    filter: grayscale(0%);
    }
    
    
    .overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 0, 255, 0.35);
    border-radius: 10px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    }
    
    
    .overlay p {
    margin: 0;
    font-weight: 600;
    }
    
    
    .overlay small {
    font-size: 12px;
    opacity: 0.85;
    }
    
    
    .glow-box {
    margin-top: 28px;
    max-width: 900px;
    text-align: left;
    }
    
    
    .glow-box h2 {
    font-size: 28px;
    margin-bottom: 8px;
    }
    
    
    .glow-box em {
    color: #aaa;
    }

    /* ==== Media page additions ==== */
    
    /* Filters row (inside .glow-box) */
    .media-filters{
      display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;
      justify-content:center;
    }
    .media-filter{
      cursor:pointer; border:1px solid rgba(255,0,255,0.35);
      background: rgba(0,0,0,0.6);
      padding:10px 14px; border-radius:8px;
      font-family:'Orbitron', sans-serif; color:#fff;
      box-shadow: 0 0 10px rgba(255,0,255,0.25);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .media-filter:hover{ transform: translateY(-1px); }
    .media-filter.active{
      background: rgba(255,0,255,0.12);
      box-shadow: 0 0 14px #ff00ff, 0 0 26px #a200ff;
    }
    
    /* Reuse fixed sizing if desired (comment out if you want auto heights) */
    .media-card{
      position:relative; cursor:pointer;
    }
    .media-card img{
      width:100%; display:block; border-radius:8px; object-fit:cover;
    }
    
    /* Optional: fixed card sizing for uniform grid (match About Us if used) */
    /* Uncomment to enforce consistent tiles
    .media-card{ width: 250px; height: 350px; margin: 0 auto; }
    .media-card img{ width:100%; height:100%; object-fit: cover; }
    */
    
    /* Name/role pill reused */
    .team-label{
      position:absolute; left:10px; right:10px; bottom:10px;
      padding:10px 12px; border-radius:10px;
      background: rgba(0,0,0,0.65); backdrop-filter:blur(4px);
      border: 1px solid rgba(255, 0, 255, 0.35);
      color:#fff; font-family:'Orbitron', sans-serif;
    }
    .team-name{ font-weight:700; }
    .team-role{ font-size:12px; color: rgba(255,255,255,0.85); }
    
    /* Play badge on video thumbnails */
    .is-video{ overflow:hidden; }
    .play-badge{
      position:absolute; inset:auto auto 50% 50%;
      transform: translate(-50%, 50%);
      font-size: 36px; line-height: 1;
      padding: 8px 14px; border-radius: 10px;
      background: rgba(0,0,0,0.6);
      border:1px solid rgba(255,0,255,0.35);
      box-shadow: 0 0 10px #ff00ff, 0 0 20px #a200ff;
      color:#fff; pointer-events:none;
    }
    
    /* Lightbox modal */
    .media-modal{
      position: fixed; inset: 0; display: none;
      align-items:center; justify-content:center;
      z-index: 9999;
    }
    .media-modal.open{ display:flex; }
    .media-modal-backdrop{
      position:absolute; inset:0; background:rgba(0,0,0,0.65);
    }
    .media-modal-dialog{
      position: relative; width:min(900px, 92vw);
      border-radius:12px; overflow:hidden;
      background: rgba(0,0,0,0.85);
      border:1px solid rgba(255,0,255,0.35);
      box-shadow: 0 0 18px #ff00ff, 0 0 28px #a200ff;
    }
    .media-modal video{ width:100%; height:auto; display:block; }
    .media-modal-close{
      position:absolute; top:8px; right:8px;
      width:36px; height:36px; border-radius:8px;
      background: rgba(0,0,0,0.7);
      border:1px solid rgba(255,0,255,0.35);
      color:#fff; font-size:18px; line-height:1;
      cursor:pointer;
    }
    
    /* Optional mobile tweaks */
    @media (max-width: 640px){
      .media-filter{ padding:8px 10px; }
    }

</style>
