/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: #0d0d0d;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 16px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Links */
a {
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #ffd700;
}

/* Buttons */
.btn-dark {
  background: #ffffff;
  color: #000000;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.btn-dark:hover {
  background: #ffd700;
  color: #000;
}

/* Header */
.site-header {
  background-color: #1a1a1a;
  padding: 16px 0;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.2rem;
}
.site-header .logo img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.site-header .logo span {
  font-family: "Outfit", sans-serif;
}
.site-header .nav-menu ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.site-header .nav-menu ul li {
  position: relative;
}
.site-header .nav-menu ul li a,
.site-header .nav-menu ul li span {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 0;
  display: inline-block;
  transition: color 0.3s;
  cursor: pointer;
}
.site-header .nav-menu ul li a:hover,
.site-header .nav-menu ul li span:hover {
  color: #ffd700;
}
.site-header .nav-menu ul li a.active,
.site-header .nav-menu ul li span.active {
  color: #ffd700;
  font-weight: 600;
}
.site-header .nav-menu ul li.has-submenu:hover .submenu {
  display: block;
}
.site-header .nav-menu ul li .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  padding: 12px 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  min-width: 240px;
  z-index: 1000;
}
.site-header .nav-menu ul li .submenu li a {
  padding: 10px 20px;
  display: block;
  color: #ccc;
}
.site-header .nav-menu ul li .submenu li a:hover {
  background-color: #222;
  color: #fff;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 40vh;
  display: flex;
  align-items: center;
  background-color: #000;
}
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/img/hero.webp") no-repeat center center/cover;
  filter: brightness(0.4);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 600px;
}
.hero-section .hero-content h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu ul {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .btn-dark {
    font-size: 0.9rem;
  }
}
.game-info-section {
  background: #0d0d0d;
  padding: 80px 0;
}
.game-info-section .game-info-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .game-info-section .game-info-inner {
    flex-direction: column;
  }
}
.game-info-section .tabs-left {
  flex: 1;
}
.game-info-section .tabs-left h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.game-info-section .tabs-left h2 span {
  color: #ffd700;
}
.game-info-section .tabs-left .tab-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.game-info-section .tabs-left .tab-menu .tab-link {
  font-weight: 600;
  color: #999;
  border-left: 3px solid transparent;
  padding-left: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.game-info-section .tabs-left .tab-menu .tab-link.active {
  color: #ffd700;
  border-left: 3px solid #ffd700;
}
.game-info-section .tabs-left .tab-menu .tab-link:hover {
  color: #fff;
}
.game-info-section .tab-content {
  flex: 2;
}
.game-info-section .tab-content .game-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.game-info-section .tab-content .tab-text {
  display: none;
}
.game-info-section .tab-content .tab-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.game-info-section .tab-content .tab-text h3 span {
  color: #ffd700;
}
.game-info-section .tab-content .tab-text p,
.game-info-section .tab-content .tab-text ul {
  margin-bottom: 1rem;
  color: #ccc;
}
.game-info-section .tab-content .tab-text ul {
  list-style: none;
}
.game-info-section .tab-content .tab-text ul li {
  margin-bottom: 8px;
}
.game-info-section .tab-content .tab-text.active {
  display: block;
}

.description-block {
  background-color: #0d0d0d;
  padding: 80px 0;
}
.description-block .description-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 992px) {
  .description-block .description-inner {
    flex-direction: column;
    gap: 30px;
  }
}
.description-block .desc-image {
  flex: 1;
}
.description-block .desc-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.description-block .desc-text {
  flex: 1;
  color: #ccc;
}
.description-block .desc-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.description-block .desc-text h2 span {
  color: #ff4500;
}
.description-block .desc-text p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery {
  background: #0d0d0d;
  padding: 80px 0;
  color: #fff;
}
.gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.gallery .gallery-item {
  background: #fff;
  color: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.gallery .gallery-item:hover {
  transform: translateY(-5px);
}
.gallery .gallery-item img {
  width: 100%;
  display: block;
}
.gallery .gallery-item .caption {
  padding: 12px;
  font-weight: 600;
}

.site-footer {
  background: #003c12;
  color: #bfbfbf;
  padding: 40px 0;
}
.site-footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.site-footer .footer-branding h3 {
  color: #fff;
  font-size: 1.5rem;
}
.site-footer .footer-branding h3 span {
  color: #82e082;
}
.site-footer .footer-branding p {
  margin-top: 12px;
  font-size: 0.9rem;
}
.site-footer .footer-links h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.site-footer .footer-links ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-links ul li {
  margin-bottom: 8px;
}
.site-footer .footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer .footer-links ul li a:hover {
  color: #fff;
}

.contact-header {
  background: #eaf0f4;
  padding: 60px 0;
}
.contact-header .contact-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact-header .contact-header-inner .text-block h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}
.contact-header .contact-header-inner .text-block h2 span {
  color: #ff4500;
}
.contact-header .contact-header-inner .image-block img {
  max-width: 320px;
}

.kontakt-blok {
  background: #0d0d0d;
  color: #f0f0f0;
  padding: 100px 0;
}
.kontakt-blok .kontakt-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}
.kontakt-blok .kontakt-info {
  flex: 1;
}
.kontakt-blok .kontakt-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.kontakt-blok .kontakt-info h2 span {
  color: #ffd700;
}
.kontakt-blok .kontakt-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #ccc;
}
.kontakt-blok .kontakt-info ul {
  list-style: none;
  padding: 0;
}
.kontakt-blok .kontakt-info ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.kontakt-blok .kontakt-info ul li i {
  margin-right: 10px;
  color: #ffd700;
}
.kontakt-blok .kontakt-form {
  flex: 1;
  max-width: 500px;
}
.kontakt-blok .kontakt-form input,
.kontakt-blok .kontakt-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 1rem;
  border-radius: 6px;
}
.kontakt-blok .kontakt-form input::-moz-placeholder, .kontakt-blok .kontakt-form textarea::-moz-placeholder {
  color: #999;
}
.kontakt-blok .kontakt-form input::placeholder,
.kontakt-blok .kontakt-form textarea::placeholder {
  color: #999;
}
.kontakt-blok .kontakt-form textarea {
  resize: vertical;
  height: 140px;
}
.kontakt-blok .kontakt-form button {
  background: #ffd700;
  border: none;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}
.kontakt-blok .kontakt-form button:hover {
  background: #e6c200;
}

.popup-diky {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.popup-diky.active {
  display: flex;
}
.popup-diky .popup-box {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  max-width: 400px;
}
.popup-diky .popup-box p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.popup-diky .popup-box button {
  background: #ffd700;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  color: #000;
  cursor: pointer;
}

.contact-hero {
  position: relative;
  background: url("/assets/img/hero.webp") no-repeat center center/cover;
  height: 30vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.contact-hero .contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.contact-hero .contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}
.contact-hero .contact-hero-inner h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-hero .contact-hero-inner p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.privacy-policy {
  background: #0d0d0d;
  color: #e0e0e0;
  padding: 80px 0;
}
.privacy-policy h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
.privacy-policy h2 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #ffd700;
}
.privacy-policy p,
.privacy-policy ul {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.privacy-policy a {
  color: #ffd700;
  text-decoration: underline;
}
.privacy-policy a:hover {
  color: #fff;
}

.terms-of-service,
.cookies-policy {
  background-color: #0d0d0d;
  color: #e0e0e0;
  padding: 80px 0;
}
.terms-of-service h1,
.cookies-policy h1 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #fff;
}
.terms-of-service h2,
.cookies-policy h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #ffd700;
}
.terms-of-service p,
.cookies-policy p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #ccc;
}
.terms-of-service ul,
.cookies-policy ul {
  padding-left: 20px;
  margin-bottom: 24px;
}
.terms-of-service ul li,
.cookies-policy ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #ccc;
}
.terms-of-service ul li::marker,
.cookies-policy ul li::marker {
  color: #ffd700;
}
.terms-of-service a,
.cookies-policy a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s;
}
.terms-of-service a:hover,
.cookies-policy a:hover {
  color: #fff;
}
.terms-of-service em,
.cookies-policy em {
  font-style: italic;
  color: #999;
}

.faq-hero {
  position: relative;
  background: url("/assets/img/hero.webp") no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.faq-hero .faq-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.faq-hero .faq-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 700px;
}
.faq-hero .faq-hero-inner h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.faq-hero .faq-hero-inner p {
  font-size: 1.1rem;
  color: #ccc;
}

.faq-section {
  background: #0d0d0d;
  color: #e0e0e0;
  padding: 80px 0;
}
.faq-section .faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
  cursor: pointer;
  position: relative;
}
.faq-section .faq-item .faq-question:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
}
.faq-section .faq-item .faq-question.active:after {
  content: "-";
}
.faq-section .faq-item .faq-answer {
  display: none;
  padding: 10px 0 20px;
  font-size: 1rem;
  color: #ccc;
}
.faq-section .faq-item .faq-answer a {
  color: #ffd700;
  text-decoration: underline;
}
.faq-section .faq-item .faq-answer.active {
  display: block;
}

#botPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#botPopup .popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  font-family: "Outfit", sans-serif;
}

#botPopup p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #000;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

#botPopup button {
  padding: 0.6rem 1.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

#confirm-human {
  background: #28a745;
  color: #fff;
}

#deny {
  background: #dc3545;
  color: #fff;
}

#confirm-human:hover {
  background: #218838;
}

#deny:hover {
  background: #c82333;
}/*# sourceMappingURL=style.css.map */