@charset "utf-8";

/* Background */
.apocalypse-bg {
  position: relative;
  background-image: url('images/stat.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.8) contrast(1.1);
  min-height: 100vh;
	padding-top: 250px;
}

/* Dark overlay */
.apocalypse-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.9));
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Smoke animation */
.smoke-overlay {
  position: absolute;
  inset: 0;
  background: url('images/smoke.png') repeat;
  opacity: 0.4;
  animation: smoke 10s infinite alternate;
  pointer-events: none;
}

@keyframes smoke {
  0% { opacity: 0.3; transform: translateY(0); }
  100% { opacity: 0.6; transform: translateY(-20px); }
}
@keyframes neonFlicker {
  0%   { opacity: 1; text-shadow: 0 0 12px #ff8c00, 0 0 25px #ff8c00; }
  5%   { opacity: 0.4; text-shadow: none; }
  10%  { opacity: 1; text-shadow: 0 0 15px #ffa500, 0 0 30px #ff8c00; }
  15%  { opacity: 0.2; text-shadow: none; }
  20%  { opacity: 1; text-shadow: 0 0 18px #ff8c00, 0 0 35px #ff8c00; }
  22%  { opacity: 0.6; }
  25%  { opacity: 1; }
  40%  { opacity: 0.8; }
  60%  { opacity: 1; text-shadow: 0 0 20px #ff8c00, 0 0 40px #ff8c00; }
  70%  { opacity: 0.5; }
  100% { opacity: 1; text-shadow: 0 0 18px #ff8c00, 0 0 35px #ff8c00; }
}


/* Header */
header {
  z-index: 10;
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* Top navigation */
.top-links {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 3;
}

.top-links a {
  text-decoration: none;
  padding: 8px 14px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-links img { height: 20px; }

.top-links a:hover {
  background: rgba(255,255,255,0.85);
  color: #000;
}

/* Main content */
.stat-container {
  width: 90%;
  max-width: 900px;
  margin: 120px auto 0 auto;
  text-align: center;
  animation: fadeIn 1.5s ease;
}

.title {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ffb347;
    text-shadow: 0 0 15px orange;
    animation: neonFlicker 3.5s infinite;
    position: relative;
    z-index: 25;
}


.subtitle {
    font-size: 25px;
    margin-bottom: 40px;
    color: #ffd27f;
    text-shadow: 0 0 10px gold;
    animation: neonFlicker 6s infinite;
    position: relative;
    z-index: 25;
}


