/* === Globální styl === */
body {
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Menu (stejné jako na hlavní stránce) === */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(0, 0, 0, 1);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(134, 10, 216, 0.082);
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 65px;
  width: auto;
}

.brand .brand-title {
  font-weight: 600;
  font-size: 18px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.16s ease;
}

nav a:hover {
  background: #860ad8f6;
  color: black;
}

nav a.active {
  background: #860ad8f6;
  color: black;
}

/* === Obsah stránky === */
.vyprodano-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2vw;
  margin-top: 10vh; /* kvůli fixní liště */
}

.vyprodano-container h1 {
  font-size: 8vw;
  font-weight: 800;
  color: #860ad8;
  letter-spacing: 4px;
  margin-bottom: 3vh;
  text-shadow: 0 0 25px rgba(134, 10, 216, 0.5);
  animation: fadeIn 1.5s ease-in-out;
}

.vyprodano-container p {
  font-size: 1.5rem;
  color: #ccc;
  animation: fadeIn 2.5s ease-in-out;
}

/* === Animace === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsivita === */
@media (max-width: 768px) {
  .vyprodano-container h1 {
    font-size: 12vw;
  }

  .vyprodano-container p {
    font-size: 1.2rem;
  }

  .brand .brand-title {
    font-size: 0.9rem;
  }

  nav a {
    font-size: 14px;
  }

  .brand img {
    height: 55px;
  }
}