/* ================= BODY ================= */
body {
  font-family: 'MS Gothic', serif;
}

/* ================= CONTAINER ================= */
.container {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* ================= NAV ================= */
.nav-row {
  display: flex;
  width: 100%;
  gap: 14px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.nav-row .item {
  flex: 1;
}

/* ================= TOP ROW ================= */
.top-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  margin-bottom: 8px;
  flex-shrink: 0;
  align-items: stretch;
}

.page-intro {
  flex: 1;
  background-color: rgba(0,0,0,0.88);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,220,100,0.03) 0px,
    rgba(255,220,100,0.03) 1px,
    transparent 1px,
    transparent 12px
  );
  border: 2px solid #ffe8a0;
  box-shadow: 0 0 20px rgba(255,220,100,0.4);
  padding: 20px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-title {
  font-size: 28px;
  margin: 0 0 12px;
  color: #ffe8a0;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'MS Gothic', serif;
  text-shadow: 0 0 12px rgba(255,220,100,1);
}

.intro-blurb {
  font-size: 13px;
  line-height: 1.8;
  color: #fff;
  font-family: 'MS Gothic', serif;
  margin: 0;
}

/* ================= FEATURED REVIEW ================= */
.featured-review {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  background: rgba(0,0,0,0.88);
  border: 2px solid #ffe8a0;
  box-shadow: 0 0 20px rgba(255,220,100,0.4), inset 0 0 30px rgba(0,0,0,0.6);
  padding: 20px 24px;
  box-sizing: border-box;
}

.featured-poster {
  flex-shrink: 0;
  width: auto;
  height: 200px;
  object-fit: contain;
}

.featured-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}

.featured-label {
  margin: 0;
  color: #ffe8a0;
  font-family: 'MS Gothic', serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 12px;
  text-shadow: 0 0 6px rgba(255,220,100,0.6);
}

.review-title {
  font-size: 24px;
  margin: 0;
  color: #ffe8a0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'MS Gothic', serif;
  text-shadow: 0 0 8px rgba(255,220,100,0.8);
}

.review-blurb {
  font-size: 13px;
  font-family: 'MS Gothic', serif;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.read-more {
  display: inline-block;
  padding: 5px 14px;
  border: 2px solid #ffe8a0;
  color: #ffe8a0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-family: 'MS Gothic', serif;
  transition: box-shadow 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.modal-right::-webkit-scrollbar {
  width: 8px;
}

.modal-right::-webkit-scrollbar-track {
  background: #1a0000;
  border-left: 1px solid #ffe8a0;
}

.modal-right::-webkit-scrollbar-thumb {
  background: #ffe8a0;
  border: 1px solid #1a0000;
}

.modal-right::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

.modal-left::-webkit-scrollbar {
  width: 8px;
}

.modal-left::-webkit-scrollbar-track {
  background: #1a0000;
  border-left: 1px solid #ffe8a0;
}

.modal-left::-webkit-scrollbar-thumb {
  background: #ffe8a0;
}

/* ================= OLDER REVIEWS ================= */
.review-grid-wrap {
  overflow-y: scroll;
  width: 100%;
  flex: 1;
  min-height: 0;
  scrollbar-color: #ffe8a0 #1a0000;
  scrollbar-width: thin;
}

.older-title {
  width: 100%;
  color: #ffe8a0;
  font-family: 'MS Gothic', serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin: 0 0 8px;
  text-shadow: 0 0 6px rgba(255,220,100,0.6);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  width: 100%;
}

.grid-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-item .poster-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-top: 0;
}

/* ================= MODAL ================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  display: flex;
  flex-direction: row;
  width: min(1100px, 90vw);
  max-height: 80vh;
  background: #0a0000;
  border: 2px solid #ffe8a0;
  box-shadow: 0 0 30px rgba(255,220,100,0.4);
  position: relative;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: #ffe8a0;
  font-size: 20px;
  cursor: pointer;
  z-index: 101;
}

.modal-close:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,220,100,0.8);
}

.modal-left {
  width: 220px;
  flex-shrink: 0;
  padding: 20px;
  border-right: 2px solid #ffe8a0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.modal-poster {
  width: 100%;
  object-fit: cover;
}

.modal-meta {
  font-family: 'MS Gothic', serif;
  font-size: 12px;
  color: #fff;
  line-height: 1.8;
}

.meta-label {
  color: #ffe8a0;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  font-size: 10px;
}

.modal-checklist {
  font-family: 'MS Gothic', serif;
  font-size: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checklist-title {
  color: #ffe8a0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  margin: 0 0 4px;
}

.modal-checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.modal-checklist input[type="checkbox"] {
  accent-color: #ffe8a0;
}

.modal-right {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-title {
  font-family: 'MS Gothic', serif;
  font-size: 24px;
  color: #ffe8a0;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255,220,100,0.8);
  margin: 0;
}

.modal-review {
  font-family: 'MS Gothic', serif;
  font-size: 13px;
  color: #fff;
  line-height: 1.8;
}