/* Base & overlay */
body {
  background: url('truck_bg.jpg') no-repeat center center fixed, #121212;
  background-size: cover;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}
.overlay {
  background: rgba(0,0,0,0.75);
  min-height: 100vh;
  padding: 36px 10px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.logo-container {
  text-align: center;
  margin-bottom: 1.5rem;
}
.logo-container img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

/* Hero */
h1 {
  margin: 0 0 1rem;
  font-size: 2.2rem;
  font-weight: 900;
  text-shadow: 2px 4px 12px #000;
  text-align: center;
}

/* Buttons v2 */
.button-row.v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2rem;
}
.button-row.v2 .btn {
  border: 2px solid #ed232a;
  background: transparent;
  color: #ed232a;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.button-row.v2 .btn:hover {
  background: #ed232a;
  color: #fff;
}

/* Chat widget */
.chat-ui {
  width: 100%;
  max-width: 380px;
  background: rgba(30,30,30,0.9);
  border-radius: 8px;
  padding: 12px;
  margin: 1.5rem auto;
}
#chat-log {
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 8px;
}
.user-msg {
  text-align: right;
  color: #ffd;
  margin: 4px 0;
}
.bot-msg {
  text-align: left;
  color: #afa;
  margin: 4px 0;
}
.chat-input {
  display: flex;
  gap: 6px;
}
.chat-input input {
  flex: 1;
  padding: 8px;
  background: #222;
  border: 1px solid #444;
  border-radius: 4px;
  color: #fff;
}
.chat-input button {
  background: #ed232a;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}

/* Power-user Panel v2 */
.stats-section.v2 {
  background: rgba(0,0,0,0.85);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-width: 360px;
  margin: 1rem auto;
}
.stats-section.v2 h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ed232a;
}
.stats-section.v2 .stat {
  margin-bottom: 8px;
}
.stats-section.v2 .stat label {
  display: block;
  font-size: 0.9rem;
  color: #bbb;
}
.stats-section.v2 .stat-value {
  font-size: 1rem;
  margin-bottom: 4px;
}
.stats-section.v2 progress {
  width: 100%;
  height: 8px;
  border: none;
  border-radius: 4px;
  background: #444;
  overflow: hidden;
}
.stats-section.v2 .small-note {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 2px;
}

/* Contact section */
.contact-section {
  margin: 1.5rem 0;
  text-align: center;
}
.contact-section a {
  color: #bbb;
  text-decoration: underline;
  margin: 0 6px;
  font-size: 0.95rem;
}

/* Easter Egg */
.easter-egg {
  margin-top: 12px;
}
.egg-link {
  font-size: 1.8rem;
  color: #ed232a;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.egg-link:hover {
  opacity: 1;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  .button-row.v2 .btn { padding: 8px 12px; font-size: 0.9rem; }
  .stats-section.v2 { max-width: 100%; }
}
