/* --- Root Variables for Stark 141 Aesthetic --- */
:root {
  --bg-color: #080808;
  --card-bg: #121214;
  --border-color: #222226;
  --text-main: #e0e0e0;
  --text-muted: #88888e;
  --accent-red: #c02626;
  --accent-blue: #191970;
  --accent-glow: rgba(192, 38, 38, 0.2);
  --font-title: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Base Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  line-height: 1.6;
}

/* --- Layout Container (Mobile First) --- */
.container {
  width: 100%;
  max-width: 1080px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  /* Call the glowing animation to run infinitely */
  animation: pulseGlow 4s infinite ease-in-out;
}

/* --- Hero Image Section --- */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 360px;
  background-color: #000;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(80%) contrast(120%);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-wrapper:hover .hero-image {
  transform: scale(1.03);
  filter: grayscale(50%) contrast(110%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Content Section --- */
.content-wrapper {
  padding: 24px 28px 36px 28px;
  text-align: center;
}

.title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 4px;
}

.subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-main);
  margin-bottom: 20px;
}

.divider {
  width: 40px;
  height: 1px;
  background-color: var(--accent-blue);
  margin: 0 auto 20px auto;
}

.description {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
}

.description strong {
  color: var(--text-main);
}

/* --- Status Box --- */
.status-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-red);
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- Pulse Animation --- */
@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* --- Container Midnight Blue Glow Animation --- */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 15px rgba(25, 25, 112, 0.2), 0 10px 30px rgba(0, 0, 0, 0.8);
  }
  50% {
    box-shadow: 0 0 50px rgba(25, 25, 112, 0.8), 0 10px 30px rgba(0, 0, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 15px rgba(25, 25, 112, 0.2), 0 10px 30px rgba(0, 0, 0, 0.8);
  }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .container {
    max-width: 520px;
  }
  
  .hero-wrapper {
    height: 260px;
  }
}