@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  width: 90%;
  max-width: 500px;
  animation: fadeIn 1.2s ease-out;
}

.logo {
  width: 140px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px #fb8512cc);
  animation: glow 2s ease-in-out infinite alternate;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fb8512;
}

p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: #fb8512;
  animation: loadBar 5s linear forwards;
}

.footer {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ccc;
  font-size: 20px; /* ← større skrift */
  font-weight: 500; /* ← lidt tykkere */
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 20px; /* ← mere luft omkring */
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 4px #fb851280);
  }
  to {
    filter: drop-shadow(0 0 20px #fb8512);
  }
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }

  .footer {
    font-size: 14px;
    padding: 8px 15px;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  from {
    filter: drop-shadow(0 0 4px #fb851280);
  }
  to {
    filter: drop-shadow(0 0 20px #fb8512);
  }
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }

  .footer {
    font-size: 5px;
  }
}
