* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0f0f1b;
  --text: #f0f0ff;
  --accent: #6d5dfc;
  --accent-light: #8a7dff;
  --card-bg: #1a1a2e;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --font: 'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(109, 93, 252, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.logo img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 8px rgba(109, 93, 252, 0.5));
}

.logo h1 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.subtitle {
  font-size: 1.1rem;
  color: #b8b8d9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
}

.countdown div {
  background: rgba(109, 93, 252, 0.15);
  padding: 12px 8px;
  border-radius: 10px;
  min-width: 70px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-light);
  text-shadow: 0 0 10px rgba(109, 93, 252, 0.6);
}

.countdown span {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-top: 4px;
}

.cta {
  margin: 25px 0;
}

.btn {
  display: inline-block;
  margin: 0 10px;
  padding: 12px 28px;
  background: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(109, 93, 252, 0.4);
}

.notify {
  font-size: 0.95rem;
  color: #aaa;
  margin-top: 20px;
}

footer {
  margin-top: 40px;
  color: #777;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .container {
    padding: 30px 20px;
  }

  h2 {
    font-size: 1.8rem;
  }

  .countdown div {
    min-width: 55px;
    padding: 10px 6px;
    font-size: 1.1rem;
  }

  .btn {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}

.fa-fire {
  color: #ff6b35;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.fa-hourglass {
  color: #8a7dff; 
  margin-left: 6px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.icon-large {
  font-size: 3.5rem;
  color: var(--accent-light);
  margin-bottom: 20px;
  display: block;
}

.back-home {
  margin-top: 20px;
  display: inline-block;
  background: rgba(109, 93, 252, 0.15) !important;
  border-color: var(--accent) !important;
}

.back-home:hover {
  background: var(--accent) !important;
  color: white !important;
}

code {
  background: rgba(109, 93, 252, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--accent-light);
}

.terminal {
  background: #1e1e1e;                 
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  color: #dcdcdc;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #2a2a2a;
  background: #2b2b2b;                
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.terminal-title {
  margin-left: 4px;
  color: #9da5b4;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.terminal-content {
  padding: 18px;
  font-family: "Cascadia Mono", "Consolas", "Courier New", monospace;
  font-size: 15px;
}

.command-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  font-family: "Cascadia Mono", "Consolas", "Courier New", monospace;
}
.prompt { color: #00a2ff; font-weight: 600; }

.typing-text {
  white-space: pre;
  color: #eaeaea;
  font-weight: 600;
  position: relative;
}

.typing-text::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: #eaeaea;
  animation: blink 1s steps(1,end) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.progress-container {
  position: relative;
  width: 100%;
  height: 18px;
  border-radius: 4px;
  margin: 14px 0 2px;
  overflow: hidden;
  background: #2e2e2e;
  border: 1px solid #3a3a3a;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.progress-container.show {
  opacity: 1;
  transform: none;
}
.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #c4e1ff, #80bfff, #66b2ff);
  box-shadow: 0 0 8px rgba(102, 178, 255, 0.7);
  transition: width 0.14s linear;
}

.progress-percent {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 14px;
  color: #d0d0d0; 
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}


.install-status {
  margin-top: 8px;
  color: #bfbfbf;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.3px;
}

