.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.time-box {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  min-width: 80px;

  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.time-box span {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.time-box small {
  color: #aaa;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}







.age-ratings {
  margin-top: 2rem;
}

.age-ratings h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #ccc;
  text-align: center; /* zarovná nadpis */
}

.ratings-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center; /* centrování ikon */
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1c1c1c;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
  cursor: default;
}

.rating:hover {
  background: #2a2a2a;
}

.rating img {
  width: 40px;
  height: auto;
  border-radius: 4px;
}

.rating-info {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.rating-info .org {
  font-weight: bold;
  color: #fff;
}

.rating-info .desc {
  color: #aaa;
}












#toTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  width: 30px !important;
  height: 30px !important;

  min-width: 30px;
  max-width: 30px;

  padding: 0 !important;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  line-height: 1;

  background: #222;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;

  box-sizing: border-box;
}

#toTopBtn:hover {
  background:red;
}




.releases {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.release-item {
  display: flex;
  align-items: center;
  background: #1c1c1c;
  padding: 15px 20px;
  border-radius: 10px;
  transition: 0.2s;
}

.release-item:hover {
  transform: translateY(-2px);
  background: #252525;
}

.badge {
  background: #e60012;
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-right: 15px;
  white-space: nowrap;
}

.text strong {
  display: block;
  font-size: 1.05rem;
}

.text span {
  color: #aaa;
  font-size: 0.9rem;
}

/* 💻 DESKTOP režim */
@media (min-width: 768px) {
  .releases {
    flex-direction: row;
    justify-content: space-between;
  }

  .release-item {
    flex: 1;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
  }

  .badge {
    margin: 0 0 10px 0;
  }

  .text strong {
    display: inline;
  }

  .text span {
    display: block;
  }
}





.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tipText {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;

    position: absolute;
    bottom: 125%; /* nad tlačítkem */
    left: 50%;
    transform: translateX(-50%);

    background-color: black;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
}

.tooltip:hover .tipText {
    visibility: visible;
    opacity: 1;
}