* {
  outline: none;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background-color: #e9e6de;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #443333;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: #443333;
  text-decoration: none;
}
a:hover {
  color: #cc0000;
  text-decoration: none;
}

h1, h2, h3, h4 {
  clear: both;
  margin: 10px 0;
  font-size: 24px;
  font-weight: 400;
}
h1 small, h2 small, h3 small {
  font-size: 18px;
  font-weight: 400;
  color: #4e3c3c;
}

.heading {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.heading h1, .heading h2, .heading h3 {
  margin: 0 auto 0 0;
}
.heading .content-order {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.heading .content-order li {
  margin: 0 5px 0 0;
  padding: 0;
  list-style: none;
}
.heading .content-order li:last-child {
  margin-right: 0;
}

.paginator {
  margin: 8px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  line-height: 44px;
}
.paginator li {
  margin: 2px;
  padding: 0;
  list-style: none;
}
.paginator .la {
  margin: -4px 4px 0 4px;
  vertical-align: middle;
  font-size: 20px;
}

.input-text {
  width: 100%;
  height: 38px;
  padding: 0 15px;
  border: 0;
  border-radius: 3px;
  background-color: #fff;
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
}

.btn {
  min-width: 38px;
  height: 38px;
  padding: 0 15px;
  display: inline-block;
  border: 2px solid #b7b09c;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: transparent;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  line-height: 34px;
}
.btn:hover {
  border-color: #cc0000;
  background-color: transparent;
  color: #cc0000;
}
.btn.btn-alt {
  border-color: #cc0000;
  background-color: #cc0000;
  color: #fff;
}
.btn.btn-alt:hover {
  opacity: 0.8;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.logo {
  min-width: 202px;
  max-width: 202px;
  display: flex;
  align-items: center;
}
.logo > img {
  margin: 0 0 0 -15px;
  display: block;
}

.topbar {
  background-color: #e0dac9;
}
.topbar .container {
  min-height: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.topbar .container a {
  margin: 0 15px 0 0;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
}
.topbar .container a:hover {
  text-decoration: underline;
}
.topbar .container a:last-child {
  margin: 0;
}
.topbar .container a.active {
  color: #cc0000;
}
.topbar .container .dropdown > a {
  margin-right: 0;
}
.topbar .container .dropdown .dropdown-container {
  right: 0;
  left: auto;
}

/* Banners */
.adv {
    background-color: #ffffff;
    height: 250px;
    margin: 0;
    padding: 0;
    width: 300px; /* Fixed width for banners */
}

.advbox {
    display: flex;           /* Use flexbox for horizontal alignment */
    flex-wrap: wrap;         /* Allow wrapping to the next row if needed */
    justify-content: center; /* Center banners in the container */
    gap: 10px;               /* Add spacing between banners */
    margin: 0 auto;          /* Center the container itself */
    max-width: 960px;        /* Limit maximum width */
}

.advout {
    flex: 0 0 auto; /* Ensure fixed size of banners (no shrinking or growing) */
    width: 300px;   /* Match the width of the banners */
    margin: 5px 0;  /* Adjust vertical spacing between rows */
}

.general-header {
  background-color: #cac3b0;
  border-top: 1px solid #bbb4a0;
  border-bottom: 1px solid #bbb4a0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
.general-header > .container {
  display: flex;
  align-items: center;
}
.general-header > .container .logo {
  margin: 5px auto 5px 0;
}

.navigation-toggle {
  margin: 0 0 0 auto;
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.navigation-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.navigation-menu ul li {
  margin: 0 30px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
  text-transform: uppercase;
}
.navigation-menu ul li .la {
  margin: -4px 4px 0 0;
  vertical-align: middle;
  font-size: 20px;
}
.navigation-menu ul li.active a {
  color: #cc0000;
}

.search-block {
  position: relative;
  min-width: 300px;
  margin: 0;
}
.search-block .search-button {
  position: absolute;
  top: 0;
  right: 5px;
  height: 38px;
  border: 0;
  background-color: transparent;
  font-size: 24px;
  color: #cc0000;
  cursor: pointer;
}

.dropdown {
  position: relative;
}
.dropdown .la-angle-down {
  margin: -3px 0 0 2px !important;
  font-size: 14px !important;
}

.dropdown-container {
  position: absolute;
  left: 0;
  margin: 5px 0;
  padding: 0;
  background: #e0dac9;
  z-index: 2;
  white-space: nowrap;
  font-size: 14px;
  text-align: left;
  line-height: normal;
  display: none;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
.dropdown-container li {
  margin: 10px;
  padding: 0 10px;
  display: block;
  list-style: none;
}

.thumbnails {
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.tmbn {
  position: relative;
  width: calc(20% - 10px);
  margin: 0 5px 10px 5px;
  display: block;
}

.tmbn-img {
  position: relative;
  padding: 75% 0 0 0;
}
.tmbn-img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tmbn-title, .tmbn-description, .tmbn-tags {
  height: 24px;
  margin: 5px 0 0 0;
  padding: 0;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-grow: 1;
  line-height: 24px;
  text-align: left;
}

.tmbn-title {
  width: 100%;
  display: flex;
}
.tmbn-title span {
  margin: 0 0 0 auto;
  padding: 0 5px;
  background-color: #cac3b0;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
}

.tmbn-information {
  display: flex;
  flex-wrap: wrap;
  color: #4e3c3c;
}
.tmbn-information span {
  margin: 0 5px 0 0;
  display: inline-block;
}

.tmbn-q {
  padding: 0 5px;
  background-color: #cc0000;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 21px;
}

.tmbn-r, .tmbn-t {
  display: inline-block;
}
.tmbn-r .la, .tmbn-t .la {
  margin: -2px 2px 0 0;
  vertical-align: middle;
  font-size: 18px;
}

.tmbn-tags {
  margin-top: 0;
  font-size: 12px;
  color: #4e3c3c;
}
.tmbn-tags a {
  color: #4e3c3c;
  text-decoration: underline;
}
.tmbn-tags a:hover {
  text-decoration: none;
}

.movie-block {
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.movie-column {
  position: relative;
  flex-grow: 1;
}

.movie-player {
  position: relative;
  padding: 56.25% 0 0 0;
}
.movie-player > iframe, .movie-player .player-code {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.movie-actions {
  margin: 10px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
.movie-actions .la {
  margin: -2px 2px 0 0;
  vertical-align: middle;
  font-size: 20px;
}

.movie-rating {
  margin: 0 15px 0 0;
  display: flex;
  font-weight: 700;
}
.movie-rating .btn {
  margin: 0 10px 0 0;
}
.movie-rating .btn:last-child {
  margin: 0;
}
.movie-rating .btn .la {
  font-size: 24px;
}

.movie-info {
  display: flex;
  flex-grow: 1;
}
.movie-info .btn {
  white-space: nowrap;
}

.movie-stats {
  margin: 0;
  padding: 5px 0;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  align-items: center;
}
.movie-stats > div {
  margin: 0 20px 0 0;
}

.movie-links {
  margin: 10px 0;
}
.movie-links a {
  color: #cc0000;
  text-decoration: underline;
}
.movie-links a:hover {
  text-decoration: none;
}

.movie-sidebar {
  min-width: 300px;
  margin: 0 0 0 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.movie-sidebar > div {
  min-width: 300px;
  max-width: 300px;
  margin-bottom: 10px;
}

.movie-center-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.movie-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  display: inline-block;
  background-color: #333;
  z-index: 101;
}
.movie-center-close {
  margin: 3px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  border-color: #fff;
  color: #fff;
}

.paginator {
  margin: 8px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.paginator li {
  margin: 2px;
  padding: 0;
  list-style: none;
  line-height: 38px;
}

.searches {
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.searches li {
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
  line-height: 30px;
}
.searches li a {
  color: #4e3c3c;
}
.searches li a:hover {
  color: #cc0000;
}
.searches li .la {
  margin: -2px 5px 0 0;
  vertical-align: middle;
  font-size: 20px;
  color: #cc0000;
}
.searches .size-1 {
  font-size: 12px;
}
.searches .size-2 {
  font-size: 15px;
}
.searches .size-3 {
  font-size: 18px;
}
.searches .size-4 {
  font-size: 20px;
}
.searches .size-5 {
  font-size: 22px;
}

.visions.d20-03 .vision {
    justify-content: center;
    display: flex;
}
.visions.d20-03 hr {
    border-top:1px solid #7c7c7c;
    margin-top: 0;
    margin-bottom: 40px;
}

#ajax_listOfOptions {
    position: absolute;
    width: 494px
}


/* Recent Searches Section */
.recent-searches {
  margin: 20px auto;
  width: 90%;
  max-width: 1200px;
  text-align: center;
}

.searches-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999; /* Light gray to match the site's text */
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
}

/* Search Tags */
.search-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.search-tags .tag a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #fff; /* White text for default state */
  background: #a08b6c; /* New muted brown background */
  border: none; /* No border to match the "Most Popular Searches" style */
  border-radius: 20px;
  padding: 6px 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.search-tags .tag a:hover {
  background: linear-gradient(135deg, #cc0000, #b30000); /* Red gradient for hover effect */
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3); /* Shadow to match hover color */
  transform: translateY(-2px) scale(1.02); /* Slight lift and scale for interactivity */
  color: #fff; /* White text for hover state */
}

/* Responsive Design for Large Tablets and Small Desktops */
@media (max-width: 1024px) and (min-width: 768px) {
  .recent-searches {
    width: 85%;
  }

  .searches-title {
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .search-tags {
    gap: 8px;
    padding: 8px;
  }

  .search-tags .tag a {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 18px;
  }
}

/* Responsive Design for Tablets */
@media (max-width: 767px) and (min-width: 468px) {
  .recent-searches {
    width: 90%;
  }

  .searches-title {
    font-size: 12px;
    letter-spacing: 0.15em;
  }

  .search-tags {
    gap: 6px;
    padding: 8px;
  }

  .search-tags .tag a {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  .search-tags .tag a:hover {
    box-shadow: 0 3px 8px rgba(204, 0, 0, 0.3);
  }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 467px) {
  .recent-searches {
    width: 95%;
  }

  .searches-title {
    font-size: clamp(10px, 2.5vw, 12px);
    letter-spacing: 0.12em;
  }

  .search-tags {
    gap: 4px;
    padding: 6px;
  }

  .search-tags .tag a {
    font-size: clamp(9px, 2.2vw, 10px);
    padding: 3px 8px;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .search-tags .tag a:hover {
    box-shadow: 0 2px 6px rgba(204, 0, 0, 0.3);
  }
}

/* Extra Small Devices (e.g., very small phones) */
@media (max-width: 360px) {
  .recent-searches {
    width: 98%;
  }

  .searches-title {
    font-size: clamp(9px, 2.3vw, 10px);
    letter-spacing: 0.1em;
  }

  .search-tags {
    gap: 3px;
    padding: 5px;
  }

  .search-tags .tag a {
    font-size: clamp(8px, 2vw, 9px);
    padding: 2px 6px;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .search-tags .tag a:hover {
    box-shadow: 0 2px 4px rgba(204, 0, 0, 0.3);
  }
}

/* Very Small Devices (e.g., below 320px) */
@media (max-width: 320px) {
  .recent-searches {
    width: 100%;
    margin: 10px auto;
  }

  .searches-title {
    font-size: clamp(8px, 2vw, 9px);
    letter-spacing: 0.08em;
  }

  .search-tags {
    gap: 2px;
    padding: 4px;
  }

  .search-tags .tag a {
    font-size: clamp(7px, 1.8vw, 8px);
    padding: 2px 5px;
    border-radius: 10px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  }

  .search-tags .tag a:hover {
    box-shadow: 0 1px 3px rgba(204, 0, 0, 0.3);
  }
}

/* High-Resolution Desktops */
@media (min-width: 1200px) {
  .recent-searches {
    width: 80%;
  }

  .searches-title {
    font-size: 16px;
    letter-spacing: 0.25em;
  }

  .search-tags {
    gap: 12px;
  }

  .search-tags .tag a {
    font-size: 15px;
    padding: 7px 16px;
    border-radius: 22px;
  }
}


#err404
{
	font-size: 55px;
	text-align: center;
	margin-top: 60px;
}
@media only screen and (max-width: 768px)
{
	#err404
	{
		margin-top: 20px;
	}
}
#err404
{
	margin-bottom: 60px;
}
@media only screen and (max-width: 768px)
{
	#err404
	{
		margin-bottom: 26px;
	}
}
#err404
{
	color: #EACA34;
}

@media only screen and (max-width:768px) {
    #ajax_listOfOptions {
        width: 249px
    }
}

#ajax_listOfOptions {
    position: absolute;
    width: 210px;
    height: 165px;
    overflow: hidden;
    border: 0 solid #4d4d4d;
    text-align: left;
    font-size: 15px;
    font-weight: lighter;
    z-index: 100;
    background: url(/images/transp.png) repeat;
    color: #e0e0e0;
    font: 14px Tahoma, Arial
}

#ajax_listOfOptions DIV {
    margin: 3px;
    padding-left: 12px;
    padding-right: 12px;
    cursor: pointer
}

#ajax_listOfOptions .optionDivSelected {
    color: #fff;
    font: 14px Tahoma, Arial
}

#ajax_listOfOptions_iframe {
    position: absolute;
    z-index: 5;
    display: none
}

.niches {
  margin: 0 0 20px 0;
  padding: 0;
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.niches li {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4px 0;
  box-sizing: border-box;
  display: inline-block;
  list-style: none;
}
.niches li::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px dotted #3d3d3d;
}
.niches .niches-heading {
  color: #cc0000;
}
.niches a {
  position: relative;
  width: 100%;
  display: flex;
}
.niches a span {
  margin: 0 0 0 auto;
  display: inline-block;
  color: #4e3c3c;
}
.niches a:hover span {
  color: #cc0000;
}

.traders {
  margin: 0 0 20px 0;
  padding: 0;
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.traders li {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4px 0;
  box-sizing: border-box;
  display: flex;

}
.traders li::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px dotted #3d3d3d;
}
.traders li a {
  display: flex;
}
.traders li span {
  margin: 0 10px 0 0;
  font-weight: 700;
  color: #cc0000;
}





.traders1 {
  margin: 0 0 20px 0;
  padding: 0;
  -webkit-column-count: 5;
     -moz-column-count: 5;
          column-count: 5;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.traders1 li {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 4px 0;
  box-sizing: border-box;
  display: flex;
  font-size: 12px;
}
.traders1 li::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px dotted #3d3d3d;
}
.traders1 li a {
  display: flex;
}
.traders1 li span {
  margin: 0 10px 0 0;
  font-weight: 700;
  color: #cc0000;
}

.bottom-text {
  margin: 20px 0;
  color: #4e3c3c;
}

.bottom-blocks {
  height: 250px;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}
.bottom-blocks > div {
  min-width: 300px;
  max-width: 300px;
  margin: 0 10px;
}

.general-footer {
  background-color: #cac3b0;
  border-top: 1px solid #bbb4a0;
}
.general-footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.general-footer .container .logo {
  margin: 0 auto;
}
.general-footer-content {
  padding: 15px 0;
  color: #4e3c3c;
}
.general-footer-nav {
  padding: 10px 0;
  background-color: #e0dac9;
  border-top: 1px solid #bbb4a0;
}
.general-footer-nav .container {
  display: flex;
  justify-content: center;
  text-align: center;
}
.general-footer-nav .container ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.general-footer-nav .container ul li {
  margin: 0 10px;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 1199px) {
  .general-header {
    padding-bottom: 10px;
  }
  .general-header > .container {
    flex-wrap: wrap;
  }

  .navigation-menu {
    width: 100%;
    display: none;
  }
  .navigation-menu ul {
    width: 100%;
    padding: 5px 0;
    flex-direction: column;
  }
  .navigation-menu ul li {
    width: 100%;
    margin: 0;
    padding: 5px 0;
    border-top: 1px solid #bbb4a0;
  }
  .navigation-menu ul li .btn {
    width: 100%;
  }

  .search-block {
    width: 100%;
  }

  .navigation-toggle {
    display: block;
  }

  .movie-block {
    flex-direction: column;
  }

  .movie-rating {
    margin-bottom: 10px;
  }

  .movie-stats {
    padding: 5px 0;
  }

  .movie-info {
    margin: 0;
    order: 3;
  }

  .movie-sidebar {
    width: 100%;
    max-height: 250px;
    margin: 0;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .movie-sidebar > div {
    margin: 0 5px;
  }

  .niches, .traders {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }

  .bottom-blocks {
    width: 100%;
    max-height: 250px;
    margin: 20px 0;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .bottom-blocks > div {
    margin: 0 5px;
  }
}
@media screen and (max-width: 1023px) {
  .tmbn {
    width: calc(33.33% - 10px);
  }

  .niches, .traders {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media screen and (max-width: 767px) {
  .tmbn {
    width: calc(50% - 10px);


  .niches, .traders {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media screen and (max-width: 479px) {
  h1, h2, h3 {
    font-size: 20px;
    line-height: normal;
  }

  .bottom-text {
    text-align: center;
  }
}


@media screen and (max-width:640px) {
    .movie-center-container {
        display: none;
    }
    .movie-center {
        display: none;
    }
 .traders1 {
        display: none;
    }
h4 {
       display: none;
    }

}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .advbox {
        justify-content: center; /* Keep centered alignment */
        width: auto;            /* Adjust width for smaller screens */
    }
    .advout {
        flex: 0 0 100%; /* Ensure banners take up full width on small screens */
    }
}

@media (max-width: 999px) {
    .advbox {
        justify-content: center;
        width: auto;
    }
    .advout {
        flex: 0 0 100%; /* Stack banners for smaller screens */
    }
}
