/* Základní styl pro MMORPG atmosféru */
@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  background: radial-gradient(ellipse at top, #1a1a1a, #000000);
  color: #dcdcdc;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Odkazy */
a {
  color: #7cc6fe;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ffd700;
  text-decoration: underline;
}

/* Nadpisy */
h1, h2, h3 {
  font-family: 'Marcellus SC', serif;
  font-weight: 400;
  margin: 1rem 0;
  text-shadow: 1px 1px 2px #000;
}

h1 {
  font-size: 2.4rem;
  color: #ffd700;
}

h2 {
  font-size: 1.8rem;
  color: #7cc6fe;
  border-bottom: 2px solid #7cc6fe;
  padding-bottom: 0.5rem;
}

/* Sekce */
section {
  padding: 3rem 1rem;
  border-bottom: 1px solid #333;
  background-color: rgba(20, 20, 20, 0.9);
  box-shadow: inset 0 0 10px #000;
}

.container_one, .container_two, .container_three,
.container_four, .container_five, .container_six,
.container_seven, .container_eight, .container_nine,
.container_finish, .container_ten, .container_eleven, .container_twelve {
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}

/* Obrázky */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
  border-radius: 5px;
  box-shadow: 0 0 0 #000;
}

/* Tabulka */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: rgba(50, 50, 50, 0.8);
  color: #fff;
}

thead th {
  background-color: #333;
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
  border-bottom: 2px solid #555;
}

tbody td, tbody th {
  padding: 1rem;
  border-top: 1px solid #444;
}

/* Speciální prvky */
.sperky {
  background-color: #2e2e2e;
  padding: 1rem;
  border-left: 5px solid #ffd700;
  margin: 1rem 0;
}

.stopgambl {
  color: #f44336;
  font-weight: bold;
  font-style: italic;
}

/* Flex kontejnery */
.images1, .images2 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.images2_mob {
  display: none;
}

/* Footer */
.container_finish ul {
  list-style: none;
  padding: 0;
}

.container_finish ul li a {
  display: inline-block;
  margin-right: 1rem;
  font-weight: bold;
  color: #ffd700;
  transition: transform 0.3s;
}

.container_finish ul li a:hover {
  transform: scale(1.1);
}

.hover img {
  transition: transform 0.3s ease;
}

.hover img:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Responsivita */
@media (max-width: 768px) {
  .images1, .images2 {
    flex-direction: column;
  }

  .images2_mob {
    display: block;
  }

  .images2 {
    display: none;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  table thead {
    display: none;
  }

  table, tbody, tr, td, th {
    display: block;
    width: 100%;
  }

  td, th {
    padding: 0.5rem;
    text-align: left;
    border: none;
    border-bottom: 1px solid #444;
  }
}
#section-nav a {
  color: #ffd700;
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
  padding-left: 0.5rem;
}

#section-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ffffff;
}

#section-nav a.active {
  color: #fff;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.15);
  border-left: 4px solid #fff;
}
@media (max-width: 768px) {
  #section-nav {
    display: none;
  }

  #section-nav.open {
    display: block;
  }

  #mobile-menu-toggle {
    display: block;
  }
}


