
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}
header {
  background: #6a1b9a;
  color: white;
  padding: 20px 10px;
  text-align: center;
}
.container {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}
.intro, .image-gallery, iframe, .game-links, footer {
  margin-bottom: 20px;
}
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.image-gallery a {
  display: block;
  width: calc(33.333% - 10px);
}
.image-gallery img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 200px;
}
@media (max-width: 768px) {
  .image-gallery a {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .image-gallery a {
    width: 100%;
  }
}
iframe {
  width: 100%;
  height: 315px;
  border-radius: 10px;
  border: none;
}
.game-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 10px;
}
.game-links a {
  background: #6a1b9a;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.game-links a:hover {
  background: #8e24aa;
}
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
}
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  transition: transform 0.3s ease;
  transform: scale(1);
  cursor: zoom-out;
}
#telegram-form-container {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: white;
  padding: 20px;
  border: 2px solid #ccc;
  border-radius: 10px;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 300px;
}
#telegram-form-container form {
  display: flex;
  flex-direction: column;
}
#telegram-form-container label {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}
#telegram-form-container input, 
#telegram-form-container textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
}
#telegram-form-container button {
  margin-top: 15px;
  padding: 10px;
  background-color: #6a1b9a;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#telegram-form-container button:hover {
  background-color: #8e24aa;
}
#close-form {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-weight: bold;
  color: #999;
}
#telegram-bot-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #6a1b9a;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
