@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400&family=JetBrains+Mono:wght@400;700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  color: #ffffff;
  overflow: hidden; 
}

/* --- Main container --- */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  z-index: 9999;
  background-color: #000000;
}

/* --- Logo section --- */
.image-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image {
  width: 500px; 
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 140px 40px rgba(0, 80, 255, 0.12);
  
  animation: pulse-glow 3s infinite alternate;
}

/* --- Bottom bar (Bar and text) --- */
.bottom-bar {
  width: 100%;
  padding: 0 5% 50px 5%;
  box-sizing: border-box;
}

/* Row with percentage and progress bar */
.progress-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 12px;
}

.percentage {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem; 
  font-weight: 300; 
  color: #e0e0e0;
  min-width: 110px;
  line-height: 1;
}

.progress-track {
  flex-grow: 1; 
  height: 1px; 
  background-color: #222; 
  position: relative;
}

.progress-fill {
  height: 100%;
  background-color: #fff;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.brand-name {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #666; 
  margin-left: 10px;
}

/* Block with technical information (System Loading...) */
.meta-info {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #444; 
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-left: 5px; 
}

/* --- Animations --- */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 120px 30px rgba(0, 80, 255, 0.1); }
  100% { box-shadow: 0 0 160px 50px rgba(0, 80, 255, 0.18); }
}

/* --- Responsiveness for mobile --- */
@media (max-width: 768px) {
  .meta-info {
    padding-left: 0;
    font-size: 0.6rem;
  }
  
  .percentage {
    font-size: 2.5rem;
    min-width: 80px;
    gap: 15px;
  }

  .image-wrapper img {
    width: 140px;
  }
  
  .bottom-bar {
    padding-bottom: 30px;
  }
}