/*
Theme Name: Test
Author: Tým GameZóna
Version: 1.0
*/

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  text-align: center;
}

.banner {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
  max-width: 700px;
}

.buttons a {
  text-decoration: none;
  font-weight: bold;
  color: white;
  padding: 12px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00f0ff, #ff00c8);
  box-shadow: 0 0 15px rgba(255, 0, 200, 0.6);
  transition: transform 0.2s ease;
}

.buttons a:hover {
  transform: scale(1.05);

}

.btn {
  background: linear-gradient(45deg, #00f0ff, #ff00c8);
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
  transition: transform 0.2s;
}

.btn:hover {
  transform: scale(1.1);
}

.watermark {
  margin-top: 30px;
  opacity: 0.05;
}

.watermark img {
  max-width: 90%;
  height: auto;
}
.tile {
  width: 140px;
  height: 70px;
  font-size: 14px;
  background: linear-gradient(135deg, #3f3f3f, #1c1c1c);
  color: white;
  display: inline-block;
  margin: 10px;
  text-align: center;
  line-height: 70px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

/* Na větších obrazovkách (PC) */
@media (min-width: 768px) {
  .tile {
    width: 200px;
    height: 100px;
    font-size: 18px;
    line-height: 100px;
  }
}

body {
  background-color: #000;
  background-image: url('images/vodoznak.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-attachment: scroll; /* mobile-friendly */
}
.tile {
  width: 140px;
  height: 70px;
  font-size: 14px;
}

/* Pro větší obrazovky – např. počítač */
@media (min-width: 768px) {
  .tile {
    width: 400px;
    height: 250px;
    font-size: 32px;
  }
}

#cenik-section {
  padding: 40px 20px;
  background-color: #000;
  color: white;
  text-align: center;
}

#cenik-section h1 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}

#cenik-section h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
}

#cenik-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#cenik-section ul li {
  margin: 5px 0;
  font-size: 18px;
}

#cenik-section {
  border-top: 2px solid #222;
}