/* Base styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #111 url('/images/skull-hat-cigar.png') repeat center center fixed;
  background-size: contain;
  color: #fff;
  text-align: center;
}

/* Header styling */
header {
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 1.5rem;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #444;
}

/* Hero image section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  margin: 30px auto;
}

.hero img {
  max-width: 90%;
  height: auto;
  border: 5px solid #333;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Footer styling */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
  padding: 20px;
  border-top: 1px solid #444;
  margin-top: 30px;
}

/* Status bar styling */
#status-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1e1e2f;
  color: #f0f0f0;
  font-family: monospace;
  font-size: 12px;
  padding: 4px 10px;
  z-index: 9999;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.4);
}
