html, body {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #111;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #000;
    color: #fff;
}
.content-flex,
.site-footer {
    margin: auto;
}
a,
a:visited,
a:active {
    color: inherit;
    text-decoration: none !important;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    transition: height 0.1s ease, border-radius 0.1s ease;
}
.navbar.scroll-down {
    border-radius: 0 0 0.4375rem 0.4375rem;
    height: 5.625rem;
    transition: transform 0.1s ease;
}
.navbar.scroll-down .bottom-bar {
    max-height: 0;
    opacity: 0;
}
.side-search-container,
.side-search-container form,
.side-search-container input {
    width: 100% !important;
}
.side-search-container {
    display: flex;
    gap: 0.5rem;
    margin: 3.75rem 0 1.25rem;
    height: 3.125rem;
    width: 100%;
}
.side-search-bar {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #262626;
    font-size: 1.1rem;
    border: 0;
    border-radius: 0.75rem;
    outline: none;
    color: #fff;
    transition: border-color 0.1s ease;
}
.side-search-bar:hover,
.side-search-bar:focus {
    background: #575757;
    color: #3d3d3d;
}

#title {
  background: #6e4f6f;
  padding: 0.375rem;
}
#title h1{
  color: #fcd5fd;
  font-size: 1.8rem;
  margin: 0 1.25rem;

}
.top-bar {
    display: flex;
    background: #000;
    height: 4.375rem;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 1.5rem 3rem 1.5rem;
}
.bottom-bar {
    display: flex;
    justify-content: space-between;
    color: #fff;
    transition: max-height 0.1s ease, opacity 0.1s ease;
    max-height: 2.5rem;
    opacity: 1;
    background: #6e4f6f;
    border-radius: 0 0 0.625rem 0.625rem;
}
.logo {
    height: 4.375rem;
}
.search-container {
    max-width: 18.75rem;
    width: 100%;
    margin-left: auto;
}
.search-bar {
    width: 100%;
    height: 2.375rem;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    border: 0;
    color: #fff;
    background: #262626;
    transition: all 0.1s ease;
}
.search-bar:hover,
.search-bar:focus {
    background: #1c1c1c;
    border: 0;
}
.nav-btn {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 550;
    text-decoration: none;
    background: #1a1a1a;
    padding: 0.75rem 0;
}
.bottom-bar .nav-btn {
    display: flex;
    height: 2.5rem !important;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.bl-radius {
    border-radius: 0 0 0 1.25rem;
}
.br-radius {
    border-radius: 0 0 1.25rem 0;
}
.nav-btn:last-child {
    border-right: none;
}
.menu-icon {
    font-size: 3rem;
    font-weight: 800;
    color: #3c3c3c;
    display: block;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.1s ease;
}
.menu-icon:hover {
    color: #575757;
}
.menu-toggle {
    display: none;
}
#side-menu {
    width: 30%;
    margin-left: 70%;
}
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #1a1a1a;
    z-index: 9999;
    padding: 3rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.1s ease;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.menu-toggle:checked ~ .side-menu {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #3c3c3c;
    user-select: none;
    transition: color 0.1s ease;
    z-index: 10000;
}
.menu-close:hover {
    color: #575757;
}
.side-menu .nav-btn {
    width: 100%;
    max-height: 4.6875rem;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ddd;
    background: #262626;
    text-align: center;
    text-decoration: none;
    transition: background 0.1s ease, color 0.1s ease;
    border-bottom: none;
    border-radius: 0.4375rem;
}
.dark-mode-toggle {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    user-select: none;
}
@media (max-width: 48rem) {
    .dark-mode-toggle {
        display: none;
    }
    .dark-mode-toggle.footer-toggle {
        display: flex;
        justify-content: center;
        margin-top: 1.25rem;
        user-select: none;
    }
}
.side-search-container input,
.side-search-container form {
    width: 100%;
}
#dark-mode-switch {
    display: none;
}
.toggle-label {
    position: relative;
    width: 4.375rem;
    height: 2.375rem;
    background: #6e4f6f;
    border-radius: 3.125rem;
    cursor: pointer;
    transition: background 0.1s ease;
    display: flex;
    align-items: center;
    padding: 0;
}
.toggle-ball {
    position: relative;
    width: 2.375rem;
    height: 2.375rem;
    background: white;
    border-radius: 50%;
    transition: transform 0.1s ease, background 0.1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.toggle-ball .icon {
    position: absolute;
    width: 1.125rem;
    height: 1.125rem;
    stroke-width: 2.5;
    transition: opacity 0.1s ease;
}
.toggle-ball .sun {
    stroke: #6e4f6f;
    opacity: 1;
}
.toggle-ball .moon {
    stroke: #6e4f6f;
    opacity: 0;
}
#dark-mode-switch:checked ~ header .dark-mode-toggle.top-toggle .sun,
#dark-mode-switch:checked ~ footer .dark-mode-toggle.footer-toggle .sun {
    opacity: 0;
}
#dark-mode-switch:checked ~ header .dark-mode-toggle.top-toggle .moon,
#dark-mode-switch:checked ~ footer .dark-mode-toggle.footer-toggle .moon {
    opacity: 1;
}
.site-footer {
    background-color: #000;
    padding: 1.875rem 1.25rem 0.9375rem;
    margin-top: 0.75rem;
    color: #fff;
}
.footer-container {
    margin: 0 auto;
    max-width: 87.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.footer-section {
    flex: 1 1 12.5rem;
    min-width: 11.25rem;
}
.footer-section h4 {
    font-weight: bold;
    font-size: 1.2rem;
    color: #9b879d;
}
.footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer-section a:hover {
    color: #877888;
    transition: color 0.1s ease;
}
.footer-link {
    color: #6b0b07;
    text-decoration: none;
    font-weight: 600;
}
.footer-link:hover {
    color: #ff4740;
    text-decoration: underline;
}

.footer-bottom {
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.8rem;
}

.content-flex {
  display: flex;
  justify-content: center;
  width: 100%;
}

.content-box {
  color: white;
  border-radius: 0.4375rem;
  margin: 0.625rem auto auto auto !important;
  width: 98%;
  max-width: 100rem;
}

.recommendedbox {
  background: #6e4f6f;
  margin: 0.9375rem auto 0.9375rem auto;
}

.nav-btn.menu {
  background: #262626 !important;
}

.shops,
.Shop {
  background: #90B058;
}

.markets,
.Market {
  background: #589BB0;
}

.educational,
.Educational {
  background: #B05858;
}


.searchs,
.Search {
  background: #1a9650;
}


.directorys,
.Directory {
  background: #ab6527;
}


.cybercrime,
.Cybercrime {
  background: #D0B82D;
}

.forums,
.Forum {
  background: #E69647;
}

.news,
.News {
  background: #B058A6;
}

.nav-btn.menu.explore-btn {
  background: #db1a31;
  color: #fff;
  background: linear-gradient(90deg,rgba(113, 51, 125, 1) 0%, rgba(94, 65, 133, 1) 50%, rgba(87, 73, 158, 1) 100%) !important;
}

.nav-btn:hover {
  background: #282828;
}

.nav-btn.menu:hover {
  background: #6e4f6f !important;
  color: #fcd5fd;
}

.nav-btn.menu.explore-btn:hover {
  background: linear-gradient(141deg, rgba(98, 137, 163, 1) 2%, rgba(92, 150, 184, 1) 16%, rgba(89, 112, 179, 1) 36%, rgba(127, 76, 168, 1) 60%, rgba(165, 94, 191, 1) 100%) !important;
  color: #fff !important;
}

#selectedcolor {
  background: #6e4f6f !important;
  color: #fcd5fd;
  border-radius: 0 !important;
}

#login-menu-btn {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

#login-profile-btn,
#login-btn-box {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.9375rem;
}

#login-menu-btn a:not(.settings) {
  color: #fcd5fd;
  background: #6e4f6f !important;
  width: 100%;
}

#login-menu-btn a:not(.settings):hover {
  color: #fff;
  background: #816c82 !important;
}

#login-btn-box .sign-up,
#login-profile-btn .settings {
  margin-left: 5%;
}

.nav-btn.menu.settings{
    background: #ae533e !important;
    color: #f9dbc1;
}

.nav-btn.menu.settings:hover{
    background: #b36b5b !important;
    color: #fff;
}

#login-menu-btn .sign-out {
  width: 100%;
}

@media (min-width: 75rem) {
  .firstdbr .sidelistingtitle {
    margin-top: 0;
    border-radius: 0.4375rem 0.4375rem 0 0;
  }
  .recommendedbox {
    width: 100%;
  }
}
@media (max-width: 75rem) {
  .content-flex {
    flex-direction: column;
  }
  #side-menu {
    margin-left: 60%;
    width: 40%;
  }
  .content-box {
    margin: auto;
    margin-top: 0.625rem;
    flex-direction: row;
  }
  .content-box {
    width: 95%;
  }
  .sidebarbox {
    border-radius: 0 !important;
    padding-bottom: 1.25rem;
  }
  .sidelistingtitle {
    margin-top: 0 !important;
  }
    #title h1{
  font-size: 1.3em !important;
}
}
@media (max-width: 48rem) {
  body,
  header,
  .navbar {
    margin: 0;
  }
  .navbar.scroll-down .top-bar {
    border-radius: 0 0 0 0 !important;
  }
  .top-bar {
    height: 6.25rem !important;
    border-radius: 0 0 0.4375rem 0.4375rem !important;
  }
  .bottom-bar,
  .navbar.scroll-down {
    border-radius: 0 !important;
  }
  #side-menu {
    width: 100%;
    margin-left: 0;
  }
  .search-container {
    display: none;
  }
  .bottom-bar {
    display: none !important;
  }
  .content-box {
    background: none !important;
  }
  .site-footer {
    margin: 0.625rem 0 0 0 !important;
    border-radius: 0 !important;
  }
  .navbar.scroll-down {
    height: 6.25rem !important;
  }
  .dark-mode-toggle.top-toggle {
    display: none;
  }
  .content-flex {
    flex-direction: column;
  }
  .content-box {
    width: 100%;
    border-radius: 0 !important;
    margin: 0.625rem 0 0 0 !important;
  }
}
.exit-scammed,
.seized {
  background-color: #FF4A4A;
}
.shut-down {
  background: #FF8C4A;
}
.logo.dark{
  display: none;
}
body.light-mode .logo.dark{
  display: inline-block;
}
body.light-mode .logo.light{
  display: none;
}


