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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  flex-direction: column;
  font-family: Bahnschrift;
}

.background-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  z-index: -1;
}

#images {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 75px;
}

.sidebar-navigation {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 5;
}

.pager {
  height: 12px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
}

.pager .dot {
  margin-top: 2px;
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-right: 5px;
  opacity: 0.3;
  transition: opacity 0.2s ease;
  background-size: cover;
  background-image: url("../images/dot.png");
  order: 1;
}

.pager:hover .dot {
  height: 10px;
  width: 10px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.pager label {
  margin-bottom: 2px;
  white-space: nowrap;
  color:#b09e84;
  order: 2;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  text-transform: uppercase;
  margin-left: 5px;
}

.pager:hover label {
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  text-transform: uppercase;
  margin-left: 5px;
  color:#dcc5a5;
  text-shadow: 0 0 10px #ffebd0;
  cursor: pointer;
  background-image: linear-gradient(to bottom, #f1d490, #cdac5e);
  -webkit-background-clip: text;
  background-clip: text;
}

.sidebar-navigation .chevron {
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 15px;
  margin-top: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.sidebar-navigation .chevron:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 8px;
  width: 0;
  height: 0;
  left: 0;
  transition: border-color 0.3s ease;
}

.sidebar-navigation .chevron.up:after {
  border-color: transparent transparent #7c6b42 transparent;
  bottom: 0;
}

.sidebar-navigation .chevron.down:after {
  border-color: #7c6b42 transparent transparent transparent;
  top: 0;
}

.sidebar-navigation .chevron:hover:after {
  border-color: transparent transparent #ffde92 transparent;
}

.sidebar-navigation .chevron.down:hover:after {
  border-color: #ffde92 transparent transparent transparent;
}



.btnh {
width:412px;
height:50px;
font-size: 1.1em;
color: #a38963;
text-shadow: 1px 1px 5px #000;
text-align:center;
text-transform: uppercase;
line-height:60px;
margin-bottom:1px;
text-decoration: none; 
background:url(../images/btn_1.png) no-repeat;
position:relative;
cursor:pointer;
transition:all .3s ease-in-out 0;
-webkit-transition-duration:.3s;
transition-duration:.3s;
}

.btnh:hover,.btnh.active {
filter: brightness(130%);
}

.btnh2 {
width:375px;
height:50px;
font-size:20px;
font-weight:bold;
font-family: Cambria;
color: #ebe4bc;
text-shadow: 1px 1px 5px #000;
text-align:center;
text-transform: uppercase;
line-height:50px;
margin-bottom:1px;
text-decoration: none; 
background:url(../images/btn_2.png) no-repeat;
position:relative;
cursor:pointer;
transition:all .3s ease-in-out 0;
-webkit-transition-duration:.3s;
transition-duration:.3s;
}

.btnh2:hover,.btnh2.active {
filter: brightness(130%);
}



.top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 94px;
  height: 94px;
  background-color: transparent;
  background-image: url("../images/top.png");
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.top-button:hover {
  background-image: url("../images/top_hover.png");
}

.top-button:active {
  background-image: url("../images/top_active.png");
}

.top-button.visible {
  opacity: 1;
  pointer-events: auto;
}

.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.language-selector .language {
  position: relative;
}

.language-selector button {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  font-family: inherit;
}

.language-selector button img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.language-selector > .language > button::after {
  content: "";
  display: block;
  width: 22px;
  height: 17px;
  background-image: url("../images/language_arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.language-selector > .language > button:hover::after {
  background-image: url("../images/language_arrow_hover.png");
}

.language-selector > .language > button:active::after {
  background-image: url("../images/language_arrow_active.png");
}

.language-selector .flagContainer {
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 80px;
  display: grid;
}

.language-selector .flagContainer button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 100%;
  transition: background-color 0.2s;
}

.language-selector .flagContainer button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.language-selector .flagContainer button img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.language-selector .flagContainer button span {
  padding: 0 4px;
  text-transform: uppercase;
}

.discord-widget {
  z-index: 9;
  position: fixed;
  right: -200px;
  opacity: 0.5;
  transition: 0.8s ease;
  top: 50%;
  transform: translateY(-50%);
}

.discord-widget:hover {
  opacity: 1;
  right: 0px;
}

@media (max-width: 959px) {
  .discord-widget {
    right: -190px;
  }

  .discord-widget img {
    width: 250px;
  }

  .sidebar-navigation {
    opacity: 0;
    pointer-events: none;
  }

  #images {
    width: 100%;
  }
}

.header {
  background-color: #3f321d;
  border-bottom: 2px solid #7d643a;
  position: fixed;
  width: 100%;
  z-index: 9999;
}

.header .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 1400px;
}

.header nav {
  display: flex;
  align-items: center;
  height: 80px;
}

.header .logo-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header .logo {
  height: 2rem;
}

@media (min-width: 768px) {
  .header .logo {
    height: 4rem;
  }
}

.header .mobile-menu-button {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .header .mobile-menu-button {
    display: none;
  }
}

.header .mobile-menu-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #a38963;
}

.header .navigation {
  display: none;
  position: absolute;
  top: 73px;
  left: 0;
  right: 0;
  background-color: #1c1815;
  border-bottom: 2px solid #b4945b;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  z-index: 999;
}

.header .navigation.active {
  display: flex;
}

@media (min-width: 768px) {
  .header .navigation {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    margin-left: 5rem;
    background-color: transparent;
    border-bottom: none;
    padding: 0;
  }

  .header .navigation > * {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}

.header .navigation > *:last-child {
  margin-bottom: 0;
}

.header .nav-button {
  color: #a38963;
  text-transform: uppercase;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.header .nav-button:hover {
  color: white;
}

.header .nav-link {
  color: #dcc5a5;
  text-transform: uppercase;
  background-color: #7c5813;
  min-width: 110px;
  text-align: center;
  font-weight: bold;
  font-family: Bahnschrift;
  padding: 10px 10px 10px 10px;
  border: 1px solid #9b7f4c;
  font-size: 14px;
  text-shadow: 0 0 10px #352c1d;
  text-decoration: none;
  transition: color 0.3s;
}

.header .nav-link:hover {
  color: #dcc5a5;
  text-transform: uppercase;
  background-color: #8c6925;
  min-width: 110px;
  text-align: center;
  padding: 10px 10px 10px 10px;
  border: 1px solid #b89045;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.header .countdown-container {
  display: none;
  margin-left: auto;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .header .countdown-container {
    display: block;
  }
}

.header .navigation.active .countdown-container {
  display: block;
  margin: 1rem 0;
}

.header .countdown-timer {
  padding-top: 0;
  display: flex;
  align-items: center;
  color: #a38963;
  text-transform: uppercase;
}

.header .countdown-values {
  display: flex;
  font-family: Bahnschrift;
  text-shadow: 0 0 10px #352c1d;
  font-size: 24px;
}

.header .countdown-values > * {
  margin-right: 0.5rem;
}

.header .countdown-value {
  font-weight: bold;
}

.header .countdown-label {
  margin-left: 0.25rem;
}

.language-picker {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 10000;
}

@media (min-width: 768px) {
  .language-picker {
    display: inline-block;
  }
}

.language-picker .picker-container {
  display: inline-block;
  height: 100px;
  background-color: #1c1815;
  overflow: hidden;
  transition: all 0.3s;
  width: 40px;
  margin: 0;
  margin-bottom: 10px;
  vertical-align: top;
  border: 2px solid #b4945b;
  border-left: 0;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.language-picker .picker-container:hover {
  width: 525px;
}

.language-picker ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.language-picker li {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.language-picker li:first-child {
  width: 40px;
  min-width: 40px;
}

.language-picker li:not(:first-child) {
  width: 35px;
  transition: background-color 0.3s;
}

.language-picker li:not(:first-child):hover {
  background-color: #2a2320;
}

.language-picker .flag-img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.countdown-container.mobile-countdown {
  display: none;
}

@media (max-width: 767px) {
  .header .navigation.active .countdown-container.mobile-countdown {
    display: block;
    margin: 1rem 0;
  }

  .countdown-container.mobile-countdown .countdown-timer {
    justify-content: center;
  }

  .countdown-container.mobile-countdown .countdown-values {
    font-size: 18px;
  }
}

.mobile-language-selector {
  display: none;
  margin: 1rem 0;
  width: 100%;
}

@media (max-width: 767px) {
  .header .navigation.active .mobile-language-selector {
    display: block;
  }
}

.mobile-languages-title {
  color: #a38963;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
  margin-bottom: 1rem;
}

.mobile-languages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  justify-content: center;
  padding: 0 15px;
}

.lang-item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  transition: background-color 0.3s;
}

.lang-item:hover {
  background-color: #2a2320;
}

.lang-item.active {
  background-color: #2a2320;
}

.mobile-flag-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.language-picker {
  z-index: 10000;
}

@media (max-width: 994px) {
  .container {
    width: 100% !important;
  }

  .header .navigation > * {
    margin-bottom: 1rem;
  }
}

.footer {
  padding: 2rem 0;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  height: 3rem;
}

.footer-copyright {
  color: #706454;
  font-size: 0.875rem;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-description {
  color: #706454;
  font-size: 0.875rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-logo {
    height: 4rem;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .footer-copyright,
  .footer-description {
    font-size: 1rem;
  }
}

.site-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.site-popup.active {
  visibility: visible;
  opacity: 1;
}

.popup-content {
  position: relative;
  background-color: #1c1815;
  border: 2px solid #b4945b;
  max-width: 90%;
  width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.popup-close {
  position: absolute;
  top: 0px;
  right: 10px;
  background: none;
  border: none;
  font-size: 36px;
  color: #a38963;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #fff;
}

.popup-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.popup-image {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.popup-text {
  color: #a38963;
  font-size: 16px;
}

.popup-text h1 {
  margin-bottom: 10px;
}

.popup-text p {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    padding: 15px;
    max-height: 80vh;
  }

  .popup-text {
    font-size: 14px;
  }

  .popup-image {
    max-height: 300px;
  }
}
i {
  color: #d2ad69;
}

i:hover {
  color: #ffe3af;
}

select,
::picker(select) {
  appearance: base-select;
}

h2 {
  font-size: 1rem;
}

p {
  display: flex;
  gap: 10px;
}

label {
  width: fit-content;
  align-self: center;
}

select {
  flex: 1;
}
select {
  border: 1px solid #564a32;
  background: #000;
  border-radius: 0;
  color: #a38963;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px;
  transition: 0.4s;
}

select:hover,
select:focus {
  background: #000;
}
select::picker-icon {
  color: #999;
  transition: 0.4s rotate;
}
select:open::picker-icon {
  rotate: 180deg;
}
::picker(select) {
  border: none;
}
option {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  color: #a38963;
  font-size: 14px;
  text-transform: uppercase;
  background: #000;
  border: 1px solid #000 !important;
  padding: 10px;
  transition: 0.4s;
}
option:first-of-type {
}

option:last-of-type {
}

option:not(option:last-of-type) {
  border-bottom: none;
}
option:nth-of-type(odd) {
}

option:hover,
option:focus {
  color: #f4dbb7;
  background: #5e5542;
}
option .icon {
  font-size: 1.6rem;
  text-box: trim-both cap alphabetic;
}
selectedcontent .icon {
  display: none;
}
option:checked {
  font-weight: bold;
}
option::checkmark {
  order: 1;
  margin-left: auto;
}
::picker(select) {
  opacity: 0;
  transition: all 0.4s allow-discrete;
}
::picker(select):popover-open {
  opacity: 1;
}
@starting-style {
  ::picker(select):popover-open {
    opacity: 0;
  }
}
::picker(select) {
  top: calc(anchor(bottom) + 1px);
  left: anchor(10%);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: #160f0a;
  color: #dcc5a5;
  padding: 12px 28px;
  font-size: 16px;
  border: 2px solid #7d643a;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
  background: #000;
  color: #dcc5a5;
  border-color: #bc9555;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: #2d2415;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  z-index: 10;
  margin-top: 4px;
  border: 1px solid #7d643a;
  padding: 0;
}

.dropdown-item {
  color: #dcc5a5;
  padding: 14px 10px;
  text-decoration: none;
  display: block;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid #7d643a;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: #534227;
  color: #dcc5a5;
}

.dropdown:hover .dropdown-menu {
  display: block;
}