  @font-face {
    font-family: 'Maple Mono';
    font-style: normal;
    font-display: optional;
    font-weight: 400;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/maple-mono@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/maple-mono@latest/latin-400-normal.woff) format('woff');
  }


  :root {
    --accent: #48ffab; 
    --compliment: #ff489d;
  }





body {
  margin: 0;
  font-family: 'SyrupSans-Regular', sans-serif;
  color: #f8f8f8;
  background-color: #0d0d0d;
  overflow-x: hidden;
  font-size: 25px;
}

.accentText { color: var(--accent);}
.complementText { color: var(--compliment); }

.shadow-glow {
  box-shadow: 0px 0 10px var(--accent);
}


.glow2 { color: #ff489d; text-shadow: 0 0 8px #ff489d, 0 0 20px #ff489d; }
.glow3 { color: #ffa3ce; text-shadow: 0 0 8px #ffa3ce, 0 0 20px #ffa3ce; background: #000;}

.polaroid {
  background: #111;
  border: 4px solid var(--accent);
  box-shadow: 0 0 5px var(--accent);
  border-radius: 12px;
  padding: 0.75rem;
  transform: rotate(var(--angle, 0deg));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.polaroid:hover { transform: scale(1.05) rotate(0deg); box-shadow: 0 0 20px var(--accent); }
.polaroid img { border-radius: 8px; width: 100%; aspect-ratio: 1/1; object-fit: cover; border: 3px solid #000; }
.polaroid h3 { margin-top: 0.75rem; font-weight: 600; color: var(--accent); }

.YouTubeCard {
  background: rgba(0,0,0,0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
}
.YouTubeCard:hover { transform: scale(1.05) rotate(0deg);}

.film-card {
  position: relative;
  background: #111;
  border-radius: 12px;
  border: 4px solid var(--accent);
  box-shadow: 0 0 5px var(--accent);
  overflow: visible;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(var(--angle-sponsor, 0deg));
}
.film-card:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 0 20px var(--accent);
}

.imagebox {
  position: relative;
  width: 86%;
  aspect-ratio: 5/3;
  flex-shrink: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  z-index: 0;
}

.imagebox img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
}

.film-card h3 { margin-top: 0.5rem; font-weight: 600; color: var(--accent); }
.film-card p { margin-top: 0.25rem; font-size: 20px; color: #ccc; padding: 0 0.5rem 0.5rem; }

.film-card .perforation {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1;
}
.film-card .perforation-left { left: -10px; }
.film-card .perforation-right { right: -10px; }
.film-card .perforation div {
  width: 18px;
  height: 36px;
  border-radius: 25%;
  border: 3px solid var(--accent);
  background: var(--accent);
  margin: 0 auto;
}

.blurred-box {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  box-shadow: 0 0 30px rgba(72,255,171,0.3);
  border: 1px solid rgba(72,255,171,0.2);
  position: relative;
}

.blurred-bar {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(15px);
}

.box-title {
  position: absolute;
  top: -16px;
  left: 24px;
  background-color: var(--accent);
  color: #0d0d0d;
  font-weight: bold;
  padding: 0.3rem 20px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: 'Maple Mono', monospace;
}

.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.5rem;
}

header {
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 1.5rem 2rem;
  box-shadow: 0 0 15px rgba(72,255,171,0.3);
  top: 0;
  z-index: 50;
}
main {
  padding-top: 6rem;
}
footer {
  width: 100vw;
  background: rgba(0,0,0,0.7);
  text-align: center;
  padding: 1.5rem 0;
  color: #ccc;
}

.circuit-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.circuit-bg svg { width: 100%; height: 100%; }
.hex { fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: 0.1; }

.nav-toggle {
  position: fixed;
  top: 120px;
  right: 24px;
  width: 2.2rem;
  height: 1.8rem;
  z-index: 90;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent), 0 0 12px var(--accent);
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100vh;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(20px);
  border-left: 2px solid var(--accent);
  box-shadow: -5px 0 30px rgba(72,255,171,0.3);
  transition: right 0.4s ease;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-center { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  justify-self: center;
}

.nav-menu.active { right: 0; }
.nav-menu a {
  color: #f8f8f8;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  margin: 1rem 0;
  font-size: 25px;
  transition: all 0.2s ease;
}
.nav-menu a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

@media (max-width: 768px) {
  header { flex-direction: column; align-items: flex-start; }
  header h1 + h1 { margin-left: 0; margin-top: 0.5rem; }
  .nav-menu {
    width: 100%;
    right: -100%;
    border-left: none;
    border-top: 1px solid rgba(72,255,171,0.4);
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(30px);
  }
  .nav-menu.active { right: 0; }
  .nav-toggle { top: 140px; right: 16px; width: 1.8rem; height: 1.5rem; transform: scale(1.2); }
}

.nav-toggle {
  transition: top 0.3s ease, right 0.3s ease;
}

.complimentLine {
  width: 90%;
  height: 3px;
  background-color: #ff489d;
  box-shadow: -5px 0 30px var(--compliment);
  border-radius: 9999px;
}

    .Dmnt_Management{background-color: #ff5959; color: #560000;}
    .Dmnt_Documentation{background-color: #ffb25c; color: #572e00;}
    .Dmnt_Engineering{background-color: #fffb5e; color: #575500;}
    .Dmnt_Communications{background-color: #5fe869; color: #0a470f;}
    .Dmnt_Coding{background-color: #4cc5fe; color: #003852;}
    .Dmnt_Design{background-color: #b062c4; color: #2f1435;}

    .text_Management{color: #ff5959; --col: #ff5959;}
    .text_Documentation{color: #ffb25c; --col: #ffb25c;}
    .text_Engineering{color: #fffb5e; --col: #fffb5e;}
    .text_Communications{color: #5fe869; --col: #5fe869;}
    .text_Coding{color: #4cc5fe; --col: #4cc5fe;}
    .text_Design{color: #b062c4; --col: #b062c4;}

    .department_glow {text-shadow: 0 0 2px var(--col), 0 0 20px var(--col); }

    .centered {
        left: 50%;
        transform: translateX(-50%);
    }

    .MapleMonoFont{
        font-family: 'Maple Mono', monospace;
    }
