<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* !global  */
* {
  font-family: "Mulish", serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0 !important;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
*::-webkit-scrollbar {
  width: 4px !important;
  height: 10px !important;
}
*::-webkit-scrollbar-thumb {
  background-color: #888 !important;
  border-radius: 3px !important;
}
*::-webkit-scrollbar-track {
  background-color: #f1f1f1 !important;
}

/*! navbar  */
.header-area {
  position: fixed !important;
  width: 100% !important;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid #000;
}

.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo {
  width: 40px !important;
}
.site-navbar ul {
  list-style: none;
  display: flex;
}
.site-navbar ul li a {
  color: #fff;
  padding: 20px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}
.site-navbar ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/*! navbar toggle  */
.nav-toggler {
  border: 3px solid #fff;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
}
.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: 0.3s;
}
.nav-toggler span:before {
  content: "";
  transform: translateY(-9px);
}
.nav-toggler span:after {
  content: "";
  transform: translateY(6px);
}
.nav-toggler.toggler-open span {
  background-color: transparent;
}
.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}
.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .site-navbar ul {
    position: absolute;
    width: 100%;
    height: calc(60vh - 60px);
    left: -10%;
    top: 60px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .site-navbar ul.open {
    max-height: 100vh;
    overflow: visible;
  }

  .site-navbar ul li {
    width: 100%;
    text-align: center;
  }

  .site-navbar ul li a {
    padding: 25px;
  }

  .site-navbar ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .site-navbar {
    height: 60px;
  }
  .nav-toggler {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
  }
}

/*! footer  */
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 0 40px;
  width: 100%;
}

.footer-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  text-align: left;
}

/* Brand section */
.brand-section {
  flex: 1 1 100%;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.logo-img {
  width: 200px;
  margin-right: 10px;
}

.logo h2 {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.brand-section p {
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 350px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #d4af37;
}

/* Links sections */
.links-section,
.help-section,
.company-section {
  flex: 1 1 100%;
  max-width: 100%;
}

.footer-section h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}
.fblnk {
  color: white;
  text-decoration: none;
}

.company-section p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Footer bottom */
.footer-bottom {
  width: 90%;
  max-width: 1600px;
  margin: 20px auto 0;
  padding-top: 20px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: #777;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .brand-section {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .links-section,
  .help-section {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .company-section {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-section {
    margin-bottom: 0;
  }

  .brand-section p {
    max-width: 100%;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-container {
    gap: 40px;
  }

  .brand-section {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .links-section,
  .help-section,
  .company-section {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

/*! cookie  */
#cookie-overlay {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw; /* Toâ€˜liq ekranni qoplashi uchun */
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* Yarim shaffof qora fon */
  z-index: 998; /* Cookie banner (999) ostida boâ€˜lishi uchun */
}

#cookie-banner {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: #1e1e1e;
  padding: 60px;
  width: 90%;
  max-width: 900px;
  justify-content: space-between;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px #0000004d;
  display: flex;
  gap: 15px;
  align-items: center;
}

.cookie-content {
  width: 60%;
}

.cookie-content h2 {
  margin: 0;
  font-size: 18px;
}

.cookie-content p {
  font-size: 14px;
  color: #b3b3b3;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cookie-banner button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  width: 150px;
  text-align: center;
}

.accept {
  background-color: #007bff;
  color: white;
}

.accept:hover {
  background-color: #0056b3;
}

.reject {
  background-color: #333;
  color: white;
}

.reject:hover {
  background-color: #555;
}

.settings {
  background-color: transparent;
  border: 1px solid #b3b3b3;
  color: #b3b3b3;
}

.settings:hover {
  border-color: white;
  color: white;
}

.hidden {
  display: none;
}

@media (max-width: 1000px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 95%;
    padding: 20px;
  }

  .cookie-content {
    width: 100%;
  }

  .cookie-buttons {
    flex-direction: column;
    justify-content: center;
  }

  #cookie-banner button {
    width: auto;
    padding: 10px 120px;
  }
}
</pre></body></html>