@font-face {
  font-family: 'BlacktroopsStencil';
  src: url('./media/BlacktroopsStencil.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #ff6600;
  font-family: 'BlacktroopsStencil', Arial, sans-serif;
  min-height: 100vh;
  box-sizing: border-box;
}
body {
  background: #000 !important;
}
.navbar {
  width: 100vw;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.navbar-content {
  width: 100%;
  max-width: 1800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.navbar-logo {
  height: 64px;
  width: auto;
  margin-right: 32px;
  display: block;
  flex-shrink: 0;
}
.navbar-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 36px;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 1.25rem;
  font-family: 'BlacktroopsStencil', Arial, sans-serif;
  font-weight: normal;
}
.navbar-link, .navbar-social {
  color: #ff6600;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar-link.active {
  border-bottom: 3px solid #ff6600;
  color: #ff6600;
}
.navbar-link:hover, .navbar-social:hover, .dropdown-btn:hover {
  color: #fff;
  background: #222;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-btn {
  background: none;
  border: none;
  color: #ff6600;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #181818;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  border-radius: 6px;
  z-index: 100;
  flex-direction: column;
  padding: 8px 0;
}
.dropdown-content a {
  color: #ff6600;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  border-radius: 0;
  font-family: 'BlacktroopsStencil', Arial, sans-serif;
  transition: background 0.2s, color 0.2s;
}
.dropdown-content a:hover {
  background: #222;
  color: #fff;
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
  display: flex;
}
.navbar-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 32px;
}
.navbar-social {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar-social svg {
  width: 24px;
  height: 24px;
  fill: #ff6600;
  transition: fill 0.2s;
}
.navbar-social:hover svg {
  fill: #fff;
}
@media (max-width: 1100px) {
  .navbar-content { padding: 0 8px; }
  .navbar-center { gap: 18px; }
  .navbar-menu { gap: 18px; font-size: 1rem; }
  .navbar-logo { height: 44px; margin-right: 0; }
  .navbar-socials { margin-left: 8px; gap: 8px; }
}
@media (max-width: 700px) {
  .navbar-content { flex-direction: column; gap: 2px; }
  .navbar-center { flex-direction: column; gap: 2px; }
  .navbar-menu { flex-direction: column; gap: 2px; }
  .navbar-logo { height: 32px; }
  .navbar-socials { margin-left: 0; }
  .navbar-link, .navbar-social, .dropdown-btn { padding: 2px 6px; font-size: 1.1rem; }
  .main-content { padding-top: 90px !important; }
}
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 112px 0 32px 0;
  background: #000;
}
.poster-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 32px rgba(0,0,0,0.7);
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  background: #000;
}
@media (min-width: 1100px) {
  .poster-img { max-width: 800px; }
}
@media (max-width: 900px) {
  .poster-img { max-width: 98vw; max-height: 60vh; }
}
@media (max-width: 600px) {
  .poster-img { max-width: 99vw; max-height: 40vh; }
} 