body {
  background-color: black;
  color: lime;
  font-weight: bold;
  font-family: "Courier New", monospace;
  text-align: center;
}

.main-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 20px
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  box-sizing: border-box;
}


.logo-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 20px
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.logo-container img {
  max-width: 100%;
  height: auto;
}

marquee {
  font-size: 24px;
  color: red;
  font-weight: bold;
  text-shadow: 0 0 4px orange;
}

/* STICKER GRID MODS */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  width: 100%;
}

.grid-block {
  width: 200px;
  padding: 10px;
  background-color: #2c2c2c;
  border: 2px outset #999;
  text-align: center;
  font-size: 14px;
  color: #ADFF2F;
  box-shadow: inset 0 0 5px #000;
}


.grid-wrapper {
  display: flex;
  justify-content: center;
  align-items: center; /* or center if you want vertical centering too */
  margin-top: 40px; /* optional spacing */
  width: 100%;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  width: 100%;
}

.sticker-grid-header {
  font-family: 'Courier New', Courier, monospace;
  font-size: 28px;
  color: lime;
  text-align: center;
  text-shadow: 0 0 4px orange;
  margin-top: 30px;
  margin-bottom: 15px;

}

@font-face {
  font-family: 'System';
  src: local('System'), local('Tahoma'), sans-serif;
}


.sticker-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.sticker-card {
  width: 200px;
  padding: 10px;
  background-color: #2c2c2c;
  border: 2px outset #999;
  text-align: center;
  font-size: 14px;
  color: #ADFF2F;
  box-shadow: inset 0 0 5px #000;
}

.sforge-container {
  border: 4px solid #0f0;        /* The border color and thickness */
  max-width: 900px;             /* A reasonable width for readability */
  margin: 50px auto;            /* Centers the box and gives top/bottom space */
  padding: 30px;                /* Spacing inside the box */
  text-align: center;           /* Centers inner content */
  box-shadow: 0px 0px 12px #0f0;
}

/* SIDEBAR MODS */
.sidebar {
  width: 200px;
  min-height: 100vh;
  background-color: #018281;
  border-right: 2px solid gray;
  font-family: 'System', Tahoma, sans-serif;
  padding: 10px;
  box-shadow: inset -2px 0px 2px #888;
}

.sidebar h2 {
  font-size: 20px;
  background-color: #000080;
  color: white;
  padding: 6px;
  text-align: center;
  margin-bottom: 15px;
  border: 2px outset #003366;
  box-shadow: inset 0 0 2px #000;
}

.sidebar-logo-container {
  background-color: #D4D0C8;
  padding: 6px;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  border: 2px outset #018281;
  box-shadow: inset 0 0 2px #000;
  text-align: center;
}

.sidebar-logo {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 10px 0;
}

.sidebar ul li a {
  color: black;
  background-color: #D4D0C8;
  padding: 6px 10px;
  display: block;
  text-decoration: none;
  border: 2px outset #fff;
  font-size: 14px;
}

.sidebar ul li a:hover {
  background-color: #808080;
  color: white;
  border: 2px inset #000;
  cursor: pointer;
}



.layout-container {
  display: flex;
 min-height: 100vh;
  
}

.poster-preview-grid {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.poster-box {
   width: 240px;
  height: 400px; /* 👈 optional: ensures equal card size */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 2px solid #aaa;
  background-color: #111;
  padding: 10px;
  text-align: center;
  font-family: 'MS Sans Serif', sans-serif;
  transition: transform 0.2s ease-in-out;


}

.poster-box:hover {
  transform: scale(1.03);
  border-color: #fff;
}

.poster-box img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border: 1px solid #555;
}

.poster-title {
  font-weight: bold;
  color: #ccc;
  margin-top: 8px;
  font-size: 14px;
}

.poster-subtitle {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
  
}

.poster-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  color: #ADFF2F;
  font-family: 'Courier New', monospace;
  text-align: center;
}

.poster-hero-container img {
  max-width: 80%;
  height: auto;
  border: 2px solid #444;
  box-shadow: 0 0 10px lime;
  margin-bottom: 20px;
}

.poster-mythos {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.6;
}

.hero-header {
  margin-bottom: 24px;
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.text-align {
    text-align: center;
}

.codex-container {
  border: 4px solid #0f0;        /* The border color and thickness */
  max-width: 900px;             /* A reasonable width for readability */
  margin: 50px auto;            /* Centers the box and gives top/bottom space */
  padding: 30px;                /* Spacing inside the box */
  text-align: center;           /* Centers inner content */
  box-shadow: 0px 0px 12px #0f0, inset 0 0 25px rgba(120, 255, 200, 0.40),inset 0 0 45px rgba(120, 255, 200, 0.20);
}

.codex-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  font-size: 22px;
  color: #ffeecf; /* gold white */
  text-shadow: 0 0 6px #ffeecf;
}

.codex-divider::before,
.codex-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  margin: 0 14px;
  background: linear-gradient(to right,
    rgba(255,255,255,0),
    rgba(255,240,200,0.8),
    rgba(255,255,255,0)
  );
  box-shadow: 0 0 6px rgba(255,240,200,0.6);
}

.codex-glow {
    filter: drop-shadow(0 0 25px rgba(180, 0, 255, 0.55));
}

.sforge-glow {
    filter: drop-shadow(0 0 20px rgba(0, 180, 255, 0.60));
}

.pforge-glow {
    filter: drop-shadow(0 0 10px rgba(0, 180, 255, 0.60));
}