@font-face {
    font-family: "Markazi Text";
    font-weight: 400;
    src: url("../images/markazi-text-regular.ttf");
    font-display: swap;
}
@font-face {
    font-family: "Markazi Text";
    font-weight: 500;
    src: url("../images/markazi-text-medium.ttf");
    font-display: swap;
}
@font-face {
    font-family: "Markazi Text";
    font-weight: 600;
    src: url("../images/markazi-text-bold.ttf");
    font-display: swap;
}

* {
  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: clamp(8px, 1.5vw, 16px);
  transform: translateY(-50%);
  z-index: 100;

  background: linear-gradient(145deg, #1a1208 0%, #0f0a05 100%);
  border: 1px solid #4a2f0f;
  border-right: none;
  border-radius: 12px;
  
  min-width: 120px;
  max-width: 340px;
  width: auto;
  max-height: 75vh;
  overflow: hidden;
  box-shadow: -6px 0 16px rgba(0,0,0,0.65), inset 0 0 8px rgba(180,140,60,0.12);

  display: flex;
  flex-direction: column;
}


.content-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px 10px 12px 14px;
  min-height: 60px;
}


.content-scroll::-webkit-scrollbar {
  width: 5px;
}
.content-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.content-scroll::-webkit-scrollbar-thumb {
  background: rgba(192, 159, 103,0.3);
  border-radius: 10px;
}
.content-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(254,216,149,0.5);
}


.chevron-wrapper {
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 29, 15,0.8);
  width: 100%;
}


.chevron-wrapper.top {
  border-bottom: 1px solid rgba(138,92,30,0.4);
}
.chevron-wrapper.bottom {
  border-top: 1px solid rgba(138,92,30,0.4);
}


.chevron {
  width: 32px;
  height: 32px;
  background: rgba(254,216,149,0.4);
  border: 1px solid #978869;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.chevron:hover {
  background: rgba(254,216,149,0.6);
  transform: scale(1.15);
}

.chevron:after {
  content: "";
  border-style: solid;
  border-width: 6px;
  border-color: transparent;
}

.chevron.up:after {
  border-bottom-color: #c1ad84;
  border-width: 0 6px 8px 6px;
}

.chevron.down:after {
  border-top-color: #c1ad84;
  border-width: 8px 6px 0 6px;
}

.chevron:hover:after {
  border-bottom-color: #fff;
}

.chevron.down:hover:after {
  border-top-color: #fff;
}


.pager {
  display: flex;
  align-items: center;
  margin: 3px 0;
  padding: 3px 3px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.pager:hover {
  background: rgba(228,197,131,0.18);
  transform: translateX(-3px);
}

.pager .dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: #c1ad84;
  border: 2px solid #8a5c1e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(228,197,131,0.5);
  margin-right: 10px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.pager:hover .dot {
  opacity: 1;
  transform: scale(1.25);
  box-shadow: 0 0 14px rgba(228,197,131,0.85);
}

.pager label {
  color: #c1ad84;
  font-size: clamp(12px, 1vw, 15px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
  flex: 1;
}

.pager:hover label {
  color: #fff;
  text-shadow: 0 0 8px #c1ad84;
}


.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: 15px;
  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%;
  }
}

.simple-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 90px;
  background: rgba(37,29,15, 0.88);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(180,140,60,0.25);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  height: 5rem;
  width: auto;
  transition: height 0.3s;
}


.desktop-content {
  display: flex;
  align-items: center;
  gap: 10rem;
}


.main-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.social-icon {
  color: #c1ad84;
  font-size: 2.1rem;
  transition: all 0.3s;
}

.social-icon:hover {
  color: #fff;
  transform: scale(1.3);
  text-shadow: 0 0 10px #c1ad84;
}


.download-btn {
  background: linear-gradient(180deg, #c1ad84, #c1ad84);
  color: #1a0d0d;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.8rem 2.2rem;
  border-radius: 40px;
  border: 2px solid #c1ad84;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(123,105,73,0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(123,105,73,0.9);
  background: linear-gradient(180deg, #ffdc92, #ffdc92);
  border: 2px solid #ffdc92;
}


.countdown {
  display: flex;
  align-items: center;
  background: #c1ad84;
  border: 1px solid #ffe4a9;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  color: #2c2619;
  font-size: 1.1rem;
  font-weight: bold;
}

.timer span {
  margin: 0 4px;
  min-width: 30px;
  text-align: center;
}

.finished {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d4af37;
  text-shadow: 0 0 10px #c1ad84;
}


.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #c1ad84;
  border-radius: 2px;
  transition: all 0.3s;
}


.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(20, 12, 8, 0.95);
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(180,140,60,0.3);
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu.active {
  display: block;
  max-height: 600px;
}

.mobile-menu .social-icon,
.mobile-menu .download-btn,
.mobile-menu .countdown {
  display: block;
  margin: 1.2rem auto;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .simple-header { height: auto; padding: 0.8rem 0; }
  .header-inner {
    justify-content: space-between;
  }
  .desktop-content { display: none; } 
  .mobile-toggle { display: flex; }
  .countdown { display: none; }
  .download-btn { display: none; }
}




.footer {
  padding: 1rem 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: #c1ad84;
  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: #c1ad84;
  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: #c1ad84;
}

i:hover {
  color: #e8bc5e;
}

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;
}

.dc-widget {
    z-index: 9;
    position: fixed;
    left: 5px;
    bottom: 50px;
}

.instagram-widget {
    z-index: 9;
    position: fixed;
    left: 5px;
    bottom: 0px;
}


.instagram-widget:hover {
    filter: brightness(125%);
    -webkit-filter: brightness(125%);
}

.dc-widget:hover {
    filter: brightness(125%);
    -webkit-filter: brightness(125%);
}