body {
  margin: 0;
  padding: 0;
  font-family: 'Cinzel', serif;
  background-color: #121010;
  color: #f5f2e7;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px 60px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  font-size: 16px;
}

.nav-links li a:hover {
  color: #e0b97d;
}

.logo {
  font-weight: bold;
  font-size: 22px;
  color: #e0b97d;
}

/* Hero  */
.hero {
  background: url('../assets/images/hero.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 94px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 28px;
  background-color: #e0b97d;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #cfa456;
}
.hero-image {
  position: relative;
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  top: 80%; 
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  margin: 0;
}

.hero-content .btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 24px;
  background-color: #e0b96d;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}


.section {
  padding: 80px 60px;
  text-align: center;
}

.section.dark {
  background-color: #1a1816;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}


.news-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
  border: 1px solid #333;
  padding: 20px;
  background-color: #1e1c1a;
}

.news-block img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.date {
  font-size: 14px;
  color: #c9b79c;
  margin-bottom: 5px;
}


.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.screenshot {
  width: 100%;
  height: 180px;
  background-color: #2b2a28;
  border: 1px solid #555;
  border-radius: 4px;
}


footer {
  background-color: #000;
  color: #777;
  text-align: center;
  padding: 30px;
  font-size: 14px;
}
.hero-image {
  width: 100%;
  margin-top: 0;
  overflow: hidden;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}
.game-description {
  padding: 80px 0;
  background-color: #0d0d0d; 
  color: #fff;
}

.desc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.desc-text {
  flex: 1;
}

.desc-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.desc-text p {
  font-size: 18px;
  line-height: 1.6;
}

.desc-image {
  flex: 1;
  text-align: center;
}

.desc-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.quest-section {
  text-align: center;
  background: #0e0d0c;
  padding: 60px 20px;
  color: #fff;
}

.quest-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.quest-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.quest-step {
  background: #1a1a1a;
  padding: 20px;
  width: 200px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 1;
}

.quest-step .icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #f0c420;
}

.quest-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f0c420;
}

.quest-step p {
  font-size: 14px;
  line-height: 1.4;
}

.arrow {
  width: 30px;
  height: 4px;
  background: #f0c420;
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -5px;
  border: 6px solid transparent;
  border-left-color: #f0c420;
}
.about-game {
  background-color: #0e0d0c;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.about-game h2 {
  font-size: 28px;
  color: #f0c420;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.about-game p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 15px;
  font-family: 'Georgia', serif;
}
.features {
  background-color: #121212;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  color: #f0c420;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: #1b1b1b;
  padding: 25px;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(240, 196, 32, 0.1);
  font-family: 'Georgia', serif;
}

.feature-box h3 {
  color: #f0c420;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.6;
}

.screenshots {
  background-color: #0e0e0e;
  padding: 60px 20px;
  text-align: center;
}

.screenshots h2 {
  color: #f0c420;
  font-size: 32px;
  font-family: 'Georgia', serif;
  margin-bottom: 10px;
}

.screenshot-description {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.screenshots .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.screenshot {
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  background-color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.screenshot:hover {
  transform: scale(1.03);
}

.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zigzag-features {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}

.features-intro {
  color: #bbb;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 60px;
}

.feature-row {
  display: flex;
  margin-bottom: 60px;
}

.feature-row.left {
  justify-content: flex-start;
}

.feature-row.right {
  justify-content: flex-end;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px;
  width: 50%;
  color: #ddd;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  text-align: left;
}

.feature-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: gold;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.6;
}
.contact-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #111;
  color: #eee;
}

.contact-intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ccc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-item {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 25px 30px;
  border-radius: 12px;
  border: 1px solid #333;
  width: 280px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.contact-item h3 {
  color: gold;
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}
.site-footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Cinzel', serif;
}

.site-footer .footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.site-footer p {
  margin: 10px 0;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #f0b400;
}
.stats-banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.stats-overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 60px 20px;
  border-radius: 10px;
}

.stats-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.stats-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.stats-counters {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stats-counters div {
  font-size: 1.1rem;
  line-height: 1.5;
}

.stats-counters strong {
  font-size: 2rem;
  color: #fff;
}

.stats-banner .btn {
  display: inline-block;
  background-color: #ffd700;
  color: #000;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.stats-banner .btn:hover {
  background-color: #e0c200;
}
.animated-title {
  animation: zoomPulse 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}


@keyframes zoomPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}
.about-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 50px 0;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-block img {
  width: 45%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  object-fit: cover;
}

.about-block .text {
  width: 55%;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-text-only {
  max-width: 900px;
  margin: 50px auto;
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 15px;
  text-align: center;
}

@media (max-width: 768px) {
  .about-block, .about-block.reverse {
    flex-direction: column !important;
  }
  .about-block img, .about-block .text {
    width: 100%;
  }
  .about-text-only {
    padding: 0 10px;
  }
}
.vision-block {
  background: #1b1a27 url('assets/images/fantasy-texture.png') repeat; 
  border: 2px solid #7a5f23;
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 1500px;
  margin: 60px auto 80px auto;
  color: #d8c38a;
  box-shadow: 0 0 25px 3px #7a5f23 inset;
  font-family: 'Cinzel', serif;
  font-style: normal;
  line-height: 1.8;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-block h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-shadow:
    0 0 6px #b28f43,
    0 0 12px #b28f43;
}

.vision-icon {
  font-size: 3.5rem;
  color: #b28f43;
  filter: drop-shadow(0 0 5px #d4b24a);
  animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from {
    filter: drop-shadow(0 0 5px #d4b24a);
    opacity: 1;
  }
  to {
    filter: drop-shadow(0 0 15px #ffd966);
    opacity: 0.85;
  }
}

.vision-block p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 4px #6f5e27;
  font-style: italic;
}

main.section.policy-content .about-block {
  background: rgba(229, 210, 122, 0.1); 
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(229, 210, 122, 0.15);
  backdrop-filter: blur(6px);
}

main.section.policy-content .about-text-only.vision-block {
  background: rgba(229, 210, 122, 0.15);
  padding: 20px 30px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(229, 210, 122, 0.25);
  backdrop-filter: blur(8px);
    max-height: 500px;
}
.mechanic-block {
  background: rgba(45, 33, 70, 0.212);
  border-radius: 18px;
  padding: 30px 40px;
  margin-bottom: 35px;
  box-shadow: 0 0 15px rgba(78, 58, 122, 0.3);
  color: #ddd;
  font-family: 'Cinzel', serif;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.mechanic-block h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #d3b50c;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mechanic-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(229, 241, 120, 0.247);
}

.donation-block {
  background: linear-gradient(135deg, #2b063611, #6d108a11);
  border-radius: 20px;
  padding: 40px 50px;
  color: #3e2f0c;
  font-family: 'Cinzel', serif;
  box-shadow: 0 0 25px rgba(43, 40, 13, 0.6);
  margin-top: 50px;
}

.donation-block h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #d3b50c;
  text-shadow: 0 0 8px #d3b50c;
  text-align: center;
}

.donation-block p {
  font-size: 1.25rem;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: center;
  color: #d3b50c;
}

.donation-block ul {
  list-style-type: disc;
  padding-left: 40px;
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 1.15rem;
  color: #d3b50c;
}

.donation-block ul li {
  margin-bottom: 10px;
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Cinzel', serif;
  color: #ddd;
}

.contact-flex {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  font-size: 2.5rem;
  color: #a9954a;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e3dca6;
}

.contact-list {
  list-style: none;
  padding: 0;
  font-size: 1.15rem;
  color: #d7c87e;
}

.contact-list li {
  margin-bottom: 15px;
}

.contact-list a {
  color: #bfa74e;
  text-decoration: underline;
}

.contact-list a:hover {
  color: #e5d27a;
}

.contact-image {
  flex: 1 1 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(165, 144, 60, 0.6);
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.support-form-section {
  background: rgba(90, 76, 45, 0.15);
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 0 25px rgba(165, 144, 60, 0.4);
}

.support-form-section h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: #bfa74e;
  text-align: center;
}

.support-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-form label {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #d4c992;
}

.support-form input,
.support-form textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0e8a0;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  resize: vertical;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: #b8af7e;
}

.support-form button.btn {
  background-color: #bfa74e;
  color: #292613;
  border: none;
  padding: 15px 0;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.support-form button.btn:hover {
  background-color: #d6c466;
}


@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
  }

  .contact-info,
  .contact-image {
    flex: 1 1 100%;
  }

  .support-form {
    max-width: 100%;
  }
}
.service-hero-image {
  max-width: 1200px;
  margin: 120px auto 50px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(191, 167, 78, 0.4);
}

.service-hero-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
.reviews-slider {
  max-width: 800px;
  margin: 60px auto 100px;
  text-align: center;
  font-family: 'Cinzel', serif;
  color: #dbc46a;
  user-select: none;
}

.reviews-slider h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  text-shadow: 0 0 8px #dbc46a99;
}

.slides-wrapper {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 20px #dbc46a88;
  background: rgba(27, 24, 38, 0.85);
  padding: 40px 50px;
  position: relative;
  min-height: 140px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.6s ease;
  color: #e1d89a;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  display: none;
}

.slide.active {
  display: block;
  opacity: 1;
}

.slide p {
  margin-bottom: 20px;
  font-style: italic;
  text-shadow: 0 0 6px #00000088;
}

.slide span {
  display: block;
  text-align: right;
  font-weight: 700;
  color: #f5e68e;
  text-shadow: 0 0 6px #000000bb;
}

.dots {
  margin-top: 25px;
}

.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  background-color: #443d17;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px #dbc46a44;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: #dbc46a;
  box-shadow: 0 0 16px #dbc46acc;
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(27, 24, 38, 0.95);
  color: #dbc46a;
  font-family: 'Cinzel', serif;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px #dbc46a99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0;
  padding-right: 15px;
  line-height: 1.3;
}

.cookie-banner a {
  color: #f5e68e;
  text-decoration: underline;
}

.cookie-banner button {
  background-color: #dbc46a;
  border: none;
  border-radius: 6px;
  color: #1b1826;
  font-weight: bold;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #e6d274;
}
.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  filter: none; 
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: brightness(1.2); 
}
ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}