* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: white;
  overflow: hidden;
}

.background {
  background: url('background.jpg') no-repeat center center/cover;
  filter: brightness(0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  text-align: center;
  padding-top: -10px; /* zvedne celý obsah výš */
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  width: 200px;
  margin-bottom: -15px;
}

.slogan {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.ip-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 10px;
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
}

.ip-box span {
  font-size: 1.2rem;
}

.ip-box button {
  background-color: #1e90ff;
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.ip-box button:hover {
  background-color: #3aa6ff;
}

.socials {
  display: flex;
  gap: 20px;
}

.socials img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s;
}

.socials img:hover {
  transform: scale(1.15);
}
.topnav {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  z-index: 1000;
  background: transparent;
}

.nav-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-item:hover {
  transform: scale(1.12);
  color: #ddd;
}

/* Styl pro "Obchod" */
.nav-shop {
  background: linear-gradient(90deg, #4da8ff, #58c1ff);
  border-radius: 20px;
  padding: 8px 20px;
}

.nav-shop .nav-icon {
  width: 20px;
  height: 20px;
}

.nav-icon {
  width: 18px;
  height: 18px;
}
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: transparent;
}
.footer {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Montserrat', sans-serif;
  user-select: none;
  z-index: 1000;
  text-align: center;
  line-height: 1.2;
}

.footer .creator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.creator-skin {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  image-rendering: pixelated; /* Aby to nevypadalo rozmazaně */
}

#copy-notification {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(30, 144, 255, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 100;
}

#copy-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
 }
 
@keyframes floatLogo {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.logo {
  animation: floatLogo 5s ease-in-out infinite;
  width: 300px;
  
}
.countdown-container {
  position: absolute;
  left: 40px;
  top: 45%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 10;
  color: white;
  user-select: none;
  font-family: 'Montserrat', sans-serif;

  background: rgba(0, 0, 0, 0.4);  /* černý průhledný */
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.countdown-image {
  width: 180px;
  border-radius: 0px;
  box-shadow: 0 0 0px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s;
  margin-bottom: 15px;
}

.countdown-image:hover {
  transform: scale(1.05);
}

/* Zlatý nápis */
.countdown-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700; /* zlatá barva */
  text-shadow: 0 0 5px #ffec70, 0 0 10px #ffd700;
  font-family: 'Georgia', serif;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.countdown-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fffacd; /* světle žlutá */
  font-style: italic;
}

.countdown {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}
