@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

:root {
  --primary-color: #4DC3FA;
  --accent-color: #FB667A;
  --highlight-color: #FFF842;
  --dark-bg: #1A1E2E;
  --card-bg: #2A2F45;
  --card-bg-alt: #323C50;
  --text-light: #F8F9FA;
  --text-muted: #A7A1AE;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--dark-bg);
  background-image: linear-gradient(to bottom right, #1A1E2E, #2C3446);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
}

h1 {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.1em;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.2em;
  font-weight: 500;
  text-align: center;
  color: var(--accent-color);
  margin: 15px 0;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin: 20px 0 15px;
  font-weight: 500;
}

/* Boss info section */
.boss-info {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 35px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.boss-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stats {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
  gap: 20px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background-color: var(--card-bg-alt);
  border-radius: 12px;
  min-width: 150px;
  flex: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1em;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--highlight-color);
  text-shadow: 0 0 10px rgba(255, 248, 66, 0.4);
}

/* Footer */
footer {
  text-align: center;
  margin: 40px 0 15px;
  padding: 15px;
  font-size: 0.9em;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-box {
    width: 100%;
  }
  
  h1 {
    font-size: 2.5em;
  }
  
  h2 {
    font-size: 1.8em;
  }
}

/* Animation for data updates */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.5s ease-out;
}

