body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}


@media (max-width: 768px) {
  #rewardBlock {
      flex-direction: column !important;
  }
}




.section-title{
width: 100%;
    border-radius: 10px;
    padding: 13px 20px;
    margin: 5px;
    background: var(--block-bg);
    font-size: 18px;
    line-height: 1.7;
}

.section-title .short_descr{
    font-weight: 100;
    font-size: 15px;
}

.section-title .title{
  text-transform: uppercase;
}

.search-dropdown {
  position: absolute;
  background: var(--block-bg);
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  z-index: 10;
}
.hidden { display: none; }
.search-dropdown ul { list-style: none; margin: 0; padding: 0; }
.search-dropdown li { padding: 10px; cursor: pointer; }
.search-dropdown li:hover { background: var(--transparent); }

.emoji {
  font-family: 'Noto Color Emoji', 'Segoe UI Emoji', sans-serif;
  font-variant-emoji: emoji;
  font-size: 1.2em;
  display: inline-block;
  line-height: 1;
}

#search-results {
  background: var(--block-bg);
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.15);
  padding: 0px 25px 0px 25px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  left: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-top: -5px;
}

.search-wrapper hr{
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  padding: 0;
  margin: 0px 10px 15px 10px;
}

.category-block {
  margin-bottom: 20px;
}

.category-header {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.category-header img {
  padding: 8px;
  height: 40px;
  margin-right: 10px;
  border-radius: 5px;
  opacity: 0.7;
}

.category-header:hover{
  background: var(--transparent);
}

.category-block ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 10px;
}

.category-block li {
  display: flex;
  align-items: center;
  padding: 0px;
  margin-bottom: 4px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s ease;
  color: var(--color-text);
}

.category-block li:hover {
  background: var(--transparent);
}

.category-block li img {
  height: 32px;
  margin-right: 10px;
  border-radius: 5px;
  padding: 5px;
  opacity: 0.7;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:20px;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -moz-crisp-edges; /* Firefox */
  image-rendering: -o-crisp-edges;   /* Opera */
  image-rendering: -webkit-optimize-contrast; /* Safari */
  image-rendering: crisp-edges;  
  /* object-fit: contain; */
}

.header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}

.logo {
  width: 204px;
  flex-basis: 100%;
}

@media (max-width: 980px) {
  .header .container {
      justify-content: space-between;
      flex-wrap: nowrap;
      display: flex;
      flex-direction: row;
      align-content: center;
      align-items: center;
  }

  .logo {
    flex-basis: auto;
    width: 160px;
  }
}



.nav {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  background: var(--block-bg);
  padding: 8px 15px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
  padding-right: 20px;
  align-items: center;
}

.nav ul,
.nav li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav li {
  display: inline-block;
  position: relative;
}



.nav li a::before {
  left: 50%;
}

.nav li a::after {
  right: 50%;
}


.nav li a:hover::before,
.nav li a:hover::after {

}




.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 10px;
  background: var(--block-bg, #f5f5f5);
  color: var(--color-text, #333);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.burger:hover {
  background: var(--top_menu_link-active, #e8e8e8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.burger:active {
  transform: scale(0.93);
  box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}

.burger svg {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 1200px) {
  .header {}

  .nav {
  }

  .nav__link {
    font-size: 14px;
  }

  .logo {
    /* width: 120px; */
    /* margin-left: 0px; */
  }
}

@media (max-width: 980px) {
  .nav {
    display: none !important;
  }
  .near-wrapper{
    display: none !important;
  }

  .burger {
    display: flex;
  }
}

/* Основний контейнер */
.mobile__nav {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 999;
  display: none;
  justify-content: flex-end;
  transition: background-color 0.3s ease;
}

/* Відображення активного */
.mobile__nav.active {
  display: flex;
  background-color: rgba(0, 0, 0, 0.55);
  animation: navOverlayIn 0.3s ease forwards;
}

@keyframes navOverlayIn {
  from { background-color: rgba(0, 0, 0, 0); }
  to   { background-color: rgba(0, 0, 0, 0.55); }
}

/* Панель меню */
.mobile__nav__panel {
  background-color: rgb(from var(--block-bg) r g b / 1.0);
  width: 300px;
  max-width: 90vw;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
  border-left: 1px solid rgba(127,127,127,0.12);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Коли активне — зʼявляється */
.mobile__nav.active .mobile__nav__panel {
  transform: translateX(0);
}

/* Шапка панелі */
.mobile__nav__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(127,127,127,0.1);
  flex-shrink: 0;
}

.mobile__nav__panel-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
  margin: 0;
}

/* Список посилань */
.mobile__nav__links {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 24px;
  gap: 2px;
  flex: 1;
}

/* Анімація стаггерингу */
.mobile__nav.active .mobile__nav__links .nav__link {
  animation: navLinkSlideIn 0.35s ease forwards;
  opacity: 0;
}

.mobile__nav.active .mobile__nav__links .nav__link:nth-child(1) { animation-delay: 0.05s; }
.mobile__nav.active .mobile__nav__links .nav__link:nth-child(2) { animation-delay: 0.10s; }
.mobile__nav.active .mobile__nav__links .nav__link:nth-child(3) { animation-delay: 0.15s; }
.mobile__nav.active .mobile__nav__links .nav__link:nth-child(4) { animation-delay: 0.20s; }
.mobile__nav.active .mobile__nav__links .nav__link:nth-child(5) { animation-delay: 0.25s; }
.mobile__nav.active .mobile__nav__links .nav__link:nth-child(6) { animation-delay: 0.30s; }

@keyframes navLinkSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Посилання */
.mobile__nav__panel .nav__link {
  text-decoration: none;
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, padding-left 0.18s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.mobile__nav__panel .nav__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: inherit;
}

.mobile__nav__panel .nav__link:hover {
  background: color-mix(in srgb, var(--color-bg-via, #4a8cf5) 10%, transparent);
  color: var(--color-bg-via, #4a8cf5);
  border-left-color: var(--color-bg-via, #4a8cf5);
  padding-left: 20px;
}

.mobile__nav__panel .nav__link:active::before {
  opacity: 0.06;
}

.mobile__nav__panel .nav__link.active {
  background: color-mix(in srgb, var(--color-bg-via, #4a8cf5) 12%, transparent);
  color: var(--color-bg-via, #4a8cf5);
  border-left-color: var(--color-bg-via, #4a8cf5);
  font-weight: 600;
}

/* Підменю Themes */
.mobile__nav__group {
  display: flex;
  flex-direction: column;
}

.mobile__nav__group-label {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 50%, transparent);
  margin-top: 4px;
}

.mobile__nav__group-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 12px;
}

.mobile__nav__panel .nav__link--sub {
  font-size: 14px;
  padding: 11px 16px;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.9;
}

/* Розділювач */
.mobile__nav__divider {
  height: 1px;
  background: color-mix(in srgb, var(--color-text) 10%, transparent);
  margin: 10px 16px;
}

/* Юзер інфо */
.mobile__nav__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 8px;
}

.mobile__nav__user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--color-text) 15%, transparent);
}

.mobile__nav__user-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

/* Закриття */
.close {
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.18s ease, transform 0.15s ease;
  flex-shrink: 0;
  position: relative;
}

.close:hover {
  background: color-mix(in srgb, var(--color-text) 10%, transparent);
}

.close:active {
  transform: scale(0.9);
}

.close::before,
.close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: background 0.18s ease;
}

.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.close:hover::before,
.close:hover::after {
  background: color-mix(in srgb, var(--color-text) 70%, transparent);
}

.nav-icon-search {
    position: relative;
    width: 34px;
    height: 40px;
    transition: width 0.3s ease;
    overflow: hidden;
    border-radius: 5px;
    background: var(--search-input);
    display: flex
;
    align-items: center;
    justify-content: flex-end;
}

.nav-icon-search:hover,
.nav-icon-search:focus-within {
  width: 250px;
}

.search-input{
  display: flex
  ;
      align-content: center;
      align-items: center;
}

.nav-icon-search-input {
  border: none;
  outline: none;
  padding: 6px 8px;
  font-size: 13px;
  background: transparent;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-icon-search:hover .nav-icon-search-input,
.nav-icon-search:focus-within .nav-icon-search-input {
    opacity: 1;
    padding: 16px;
    height: 39px;
    border-radius: 5px;
}

.nav-icon-search-icon {
  padding: 0 8px;
  font-size: 16px;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.icon-search-top{
  background-image: url(https://cursor.style/images/icons/search.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 5px;  
}

#votepls {
  /* display: none; */
  width: 690px;
  height: 480px;
  position: fixed;
  min-width: 600px;
  min-height: 400px;
  z-index: 999999999;
  left: calc(50% - 345px);
  top: calc(50% - 240px);
  background: url(https://cursor.style/images/back.svg);
  background-attachment: fixed;
  background-size: contain;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-content: center;
}

.install-panel {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  /* для відступів між блоками */
  background-color: var(--block-bg);
  border-radius: 5px;
  margin-bottom: 40px;
  /* Дозволяє переносити */
  width: 100%;
}

.install-panel__logo,
.install-panel__left,
.install-panel__right {
  flex: 1 1 200px;
  /* кожен займе рівноцінне місце і зможе переноситись */
  min-width: 200px;
  /* мінімальна ширина — коли менше, блокується і перенос */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.install-panel__left {
  display: flex;
  flex-direction: column;
  text-align: start;
  line-height: 1.5;
}

.install-panel__logo {
  padding: 20px;
}

.install-panel__right {
  padding: 20px;
}

@media (max-width: 768px) {
  .install-panel {
    flex-direction: column;
    text-align: center;
  }

  .install-panel__logo,
  .install-panel__left,
  .install-panel__right {
    flex: 1 1 100%;
  }
}



.search {
  float: right;
  width: calc(100% - 0px);
  box-sizing: border-box;
  border: none;
  padding: 18px 18px 18px 10px;
  margin-top: 0px;
  font-size: 16px;
  color: var(--color-text);
}

.tabs {
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.tabs a {
  text-decoration: none;
  color: var(--color-text);
  padding: 10px 20px;
  display: flex;
  position: relative;
  z-index: 1;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
}

.tabs_menu .wrapper {
  display: flex;
  background: var(--block-bg);
  justify-content: space-between;
  align-content: center;
  align-items: center;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.search-wrapper {
  position: relative;
  display: inline-block;
  background: var(--block-bg);
  border-radius: 5px;
  padding: 4px 10px;
  width: 100%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
}

.search-wrapper form{
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(https://cursor.style/images/icons/search.svg);
  background-size: cover;
  margin-right: 6px;
  margin-left: 10px;
  opacity: 0.8;
}

.collection_top_text {
  padding: 0px 10px 6px 10px;
  border-radius: 5px;
  font-size: 14px;
  text-align: justify;
  line-height: 20px;
}

.banner__tabs {
  margin: 11px 10px;
}

.footer__links {
  font-size: 15px;
  text-align: right;
}

.footer__links a {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text);
  text-decoration: none;
}

.copyright {
  font-size: 15px;
  color: var(--color-text);
  flex-wrap: wrap;
  display: flex;  
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-direction: column;  
}

.footer {
  padding-bottom: 40px;
  margin-top: 20px;
}

.footer .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px;  
}

.install-panel__logo img {
  display: block;
  margin: 0 auto;
  object-fit: contain;
  width: 150px;
  height: 150px;
}

.tabs_menu {
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  display: block;
  width: 100%;
  /* або більше, якщо потрібно */
}



.tabs a.active {
  /* color: #fff;
  background: #5e77ff;
  border-radius: 5px; */
  /* background-color: #f5f5f5; */
}


.tabs a i {
  margin-right: 5px;
}

@media (max-width: 888px) {
  .tabs_menu .wrapper {
    /* flex-wrap: wrap; */
  }

  .search {
    width: 100% !important;
  }

  .tabs_menu i {
    display: none;
  }
}


/* .main__item {
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
  margin: 8px;
  text-align: center;
  width: calc(25% - 16px);
  height: 220px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
} */


.main__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


.cursorimg:hover {
  opacity: 0.2;
  transition-duration: 200ms;
  transition-property: padding;
}

.cursorimg {
  transition-duration: 200ms;
  transition-property: padding;
}


.main__item-img {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-around;
  -ms-flex-pack: justify;
  justify-content: space-around;
  /* margin-bottom: 18px; */
  width: 100%;
}


.main__item p {
  text-transform: uppercase;
  line-height: 19px;
  font-size: 12px;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  vertical-align: middle;
  letter-spacing: 1px;
  /* або 0.1em, або -0.5px */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
}

.div_ar_p {
  -webkit-box-pack: center;
  -webkit-box-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  align-content: center;
  margin-top: 20px;
}

.gads {
  width: 100%;
}


.main__btns {
  display: -ms-flexbox;
  opacity: 0;
  -ms-flex-pack: justify;
  width: 100%;
  transition: opacity 0.2s ease-in-out;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.main__item:hover .main__btns {
  opacity: 1;
}





/* CSS */


.install-panel__right.cursor-button {
  width: 180px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 0;
  width: 100%;
  background: var(--block-bg);
  border-radius: 5px;
  flex-wrap: nowrap;
  /* важливо */
  flex-wrap: wrap;
}

.pagination a {
  text-decoration: none;
}

.pagination-wrapper {
  width: 100%;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* min-width: 75px; */
  height: 36px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  background: var(--transparent);
  color: var(--color-text);
  text-decoration: none;
}

.pagination .page-numbers:first-child {
  font-weight: bold;
  font-family: 'Noto Color Emoji';
}

.pagination .page-numbers:last-child {
  font-weight: bold;
  font-family: 'Noto Color Emoji';
}

a.page-numbers:hover {
  background-color: var(--top_menu_link-active);
  color: var(--top_menu_link-active-text);
  border-radius: 5px;
}

a.page-numbers.prev,
a.page-numbers.next {
  padding: 6px 12px;
  border-radius: 5px;
  background-color: var(--transparent);
  color: var(--color-text);
  font-weight: 500;
  transition: background 0.2s;
  text-decoration: none;
}

a.page-numbers.prev:hover,
a.page-numbers.next:hover {
  background-color: var(--top_menu_link-active);
  color: var(--top_menu_link-active-text);
}

.page-numbers.current {
  background-color: var(--top_menu_link-active);
}

.page-numbers-js {
  /* min-width: 75px; */
  padding: 8px 12px;
  /* ЗБІЛЬШЕНО */
  min-width: 36px;
  /* Щоб були схожі за шириною */
  flex-shrink: 0;
}

@media (max-width: 400px) {
  .page-numbers-js {
    padding: 6px 10px;
    font-size: 14px;
  }
}

.page-numbers-js.current {
  background-color: var(--top_menu_link-active);
}

.pagination .page-numbers-js:first-child {
  font-weight: bold;
  font-family: 'Noto Color Emoji';
}

.pagination .page-numbers-js:last-child {
  font-weight: bold;
  font-family: 'Noto Color Emoji';
}

a.page-numbers-js:hover {
  background-color: var(--top_menu_link-active);
  color: var(--top_menu_link-active-text);
  border-radius: 5px;
}

a.page-numbers-js.prev,
a.page-numbers-js.next {
  padding: 6px 12px;
  border-radius: 5px;
  background-color: var(--transparent);
  color: var(--color-text);
  font-weight: 500;
  transition: background 0.2s;
  text-decoration: none;
}

a.page-numbers-js.prev:hover,
a.page-numbers-js.next:hover {
  background-color: var(--top_menu_link-active);
  color: var(--top_menu_link-active-text);
}

.page-numbers-js {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  /* padding: 0 20px; */
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  background: var(--transparent);
  color: var(--color-text);
  text-decoration: none;
}


.collection_bottom_text {
  padding: 10px 10px 15px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: justify;
  line-height: 20px;
}




/* .main__list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
} */


.main__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(307px, 1fr));
  gap: 16px;
  width: 100%;
}


.main__item {
  background: var(--block-bg);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  align-content: center;
  flex-direction: column;
  height: 280px;
  justify-content: space-evenly;
}

.main__item:hover {
  transform: translateY(-2px);
}


.flex-break {
  flex-basis: 100%;
  height: 0;
  width: 100%;
}


.gads-wrapper {
  grid-column: 1 / -1;
  /* займає всю ширину grid */
  width: 100%;
  margin: 20px 0;
}

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

.seo-block {
  display: block !important;
  width: 100%;
  max-width: 1000px;
  background-color: var(--block-bg);
  border-radius: 5px;
  padding: 5px 0px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.seo-info {
  font-size: 15px;
  color: var(--color-text);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
}

.seo-toggle {
  padding: 5px 14px;
  font-size: 13px;
  background: var(--transparent);
  border: 1px solid var(--transparent);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.seo-toggle:hover {
  background-color: #eee;
}

.seo-block.collapsed .seo-text {
  display: none;
}

.seo-text {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
  padding: 0 20px;
}

.seo-text p{
  text-align: left;
}

.banner__tabs img {
  border-radius: 5px;
}

.review-container{
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  background: var(--block-bg);
    border-radius: 5px;
    padding: 0px 30px;
    display: flex
;
    flex-direction: row;
    align-content: center;
    align-items: center;
}


.review-text{
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    padding: 58px;
    color: var(--color-text);
}



.tabs a:hover {
  background-color: var(--top_menu_link-active);
  border-radius: 5px;
  transition: all 0.2s ease;
  color: var(--top_menu_link-active-text);
}


.banner__tabs img {
  width: 100%;
}

.rateus-img{
  width: 132px;
  height: 132px;
  max-width:unset;
}

.search:focus,
.search:focus-visible {
  outline: none;
  box-shadow: none;
  /* якщо браузер додає тінь */
}

.cursorimg {
  width: 128px;
  height: 128px;
  max-width: 128px;
  max-height: 128px;
  min-height: 40px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.add-btn-img, .apply-btn-img{
  width: 38px;
  height: 38px;
}

.main__list_near .cursorimg {
    width: 70px;
    height: 70px;
}

.download-count-img{
    width: 10px;
    height: 10px;
}

#install_container {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
    padding: 5px 20px;
    flex-grow: 1;  
}

.overlay {
  /* display: none; */
  width: 100%;
  height: 100%;
  background: #0000008f;
  position: fixed;
  z-index: 10000;
}

.modal-logo img {
  width: 100%;
  height: 100%;
}



.maybelater {
  margin-top: 9px;
  color: var(--color-text);
  margin-bottom: 13px;
}

.maybelater:hover {
  margin-top: 9px;
  color: #0ac672;
  margin-bottom: 13px;
  cursor: pointer;
  text-decoration: underline;
}

#star_img_container {
  cursor: pointer;
}

.star_main_title {
  font-size: 36px;
  margin-bottom: 30px;
}

.star_title {
  font-size: 24px;
  text-align: center;
}

.star_close:hover {
  position: absolute;
  background-image: url(https://cursor.style/images/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.star_close {
position: absolute;
    background-image: url(https://cursor.style/images/close.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    top: 11px;
    right: 14px;
    transition: 0.3s;
    cursor: pointer;
    fill: antiquewhite;
}

.dontshow {
  position: absolute;
  margin-right: 10%;
  right: -9px;
  bottom: 50px;
  color: var(--color-text);
}

.star_container {
  flex-direction: column;
  height: 400px;
  width: 600px;
  background: var(--block-bg);
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 5px;
  color: var(--color-text);
}

#votepls {
  display: none;
  width: 690px;
  height: 480px;
  position: fixed;
  min-width: 600px;
  min-height: 400px;
  z-index: 999999999;
  left: calc(50% - 345px);
  top: calc(50% - 240px);
  background: url(https://cursor.style/images/back.svg);
  background-attachment: fixed;
  background-size: contain;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
}

.tab-icon {
  font-family: 'Noto Color Emoji';
  padding-right: 4px;
}


input:-webkit-autofill:not(#chatContainer input) {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.pagination-wrapper {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.10);
  display: none;
}

.main-container {
  padding: 5px 20px;
  flex-grow: 1;
}


/* .top_menu_link[href="/mycollection"] {
  display: none;
  padding: 10px 25px;
  border-radius: 5px;
} */

[data-class="rate"] {
  margin-right: 17px;
  /* background: #98e2e2; */
  padding: 10px 25px;
  border-radius: 5px;
}

[data-class="rate"]::after {
  content: "";
  background-image: url(https://cursor.style/images/icons/rate.png);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center;
  width: 30px;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  top: 0;
  margin-top: -7px;
  margin-left: 5px;
  
}

/* .top_menu_link[href="/mycollection"]::after {
  content: "";
  background-image: url(https://cursor.style/images/icons/collection.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
  width: 25px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  top: 0;
  margin-top: -2px;
  margin-left: 5px;
} */

.no_result {
  width: 100%;
  height: 280px;
  background: white;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 23px;
  margin: 5px;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
}

.modal-title {
  margin: -5px 0px 6px 0px;
  font-size: 21px;
  font-weight: 300;
  color: #393939;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
}

.modal-center {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.modal-logo {
  margin: 10px;
  width: 26%;
  transform: scale(0.9);
}

.modal-center-text {
  line-height: 1.2;
  padding: 10px;
  width: 80%;
  color: #535353;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  padding: 15px;
  align-content: center;
  justify-content: space-between;
}

.modal-btn-close {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}


.modal-btn-install {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

#ex1 {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(50% - 220px);
  left: calc(50% - 250px);
  z-index: 10001;
  background: white;
  box-shadow: 0px 0px 10px #000000;
  width: 500px;
  padding: 12px 12px 4px 12px;
  position: fixed;
  border-radius: 5px;
}

.how__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.how__btns {
  width: 270px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how__btn {
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 5px;
  background: #f3f4f6;
  transition: background 0.2s;
  font-size: 16px;
  color: #333;
}

.how__btn:hover {
  background: #e5e7eb;
}

.how__btn.active {
  background: #4a8cf5;
  color: white;
  font-weight: bold;
}

.how__tabs {
  flex: 1;
  min-width: 0;
  /* дозволяє тексту не вилізати */
  border-radius: 5px;
  padding: 14px 31px;
  background-color: #fff;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  width: calc(100% - 280px);
}

@media (max-width: 768px) {
  .how__wrap {
    flex-direction: column;
  }

  .how__btns {
    width: 100%;
  }

  .how__btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .how__tabs {
    width: 100%;
    padding: 16px;
  }
}

.how__tab {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  color: #333;
  flex-direction: column;
}

.how__tab.active {
  display: flex;
  flex-direction: column;
}

.how__tab img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.how__wrap a {
  text-decoration: none;
  color: #597bff;
}



@media (max-width: 768px) {
  .review-container {
      flex-direction: column;
      padding: 20px;
      gap: 20px;
  }

  .review-text {
      padding: 20px 0;
      text-align: center;
  }
}

.breadcrumb {
  width: 100%;
  padding: 12px 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  /* border-top: 3px solid rgba(77, 168, 255, 0.4);
  border-bottom: 3px solid rgba(255, 217, 77, 0.4); */
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0 28px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #e8f8ff; /* світліший */
  font-weight: 500;
  text-shadow: 0 0 3px rgba(0, 188, 212, 0.3);
}

.breadcrumb li a {
  color: #b8ecff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.breadcrumb li a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

/* Роздільник */
.breadcrumb li::after {
  content: '';
  background: url('/images/next.png') no-repeat center;
  background-size: 14px;
  width: 14px;
  height: 14px;
  opacity: 0.8;
  margin: 0 10px;
  filter: brightness(1.4);
}

.breadcrumb li:last-child::after {
  display: none;
}

/* Активна сторінка */
.breadcrumb li.active {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}


.collection__item_cat_title {
  font-size: 21px;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.main__item-img_cat {
  cursor: pointer;
  height: 85px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  margin-bottom: 18px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.main__item_cat {
  background-color: #fff;
  padding: 12px 17px;
  border: 1px solid #d3d4d5;
  -webkit-border-radius: 6px;
  border-radius: 5px;
  text-align: center;
  margin-right: 11px;
  margin-bottom: 11px;
  width: -webkit-calc(25% - 11px);
  width: calc(25% - 11px);
}


.collection__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* або center/space-evenly */
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9fb;
  border-radius: 5px;
  gap: 20px;
}

.collection__item {
  padding: 15px;
  background-color: #fff;
  -webkit-border-radius: 4px;
  border-radius: 5px;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
}

.collection__item p {
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 300;
}

.collection__item img {
  margin-bottom: 10px;
}

.collection__description {
  font-size: 13px;
  font-weight: 300;
  line-height: 19px;
}

.col_descr {
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
}

.collection__list a {
  text-decoration: none;
  color: #262626;
}

.main__cat-img {
  padding: 20px;
width: 410px;
    height: 225px;  
}


.collection__item_cat {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
  width: calc(50% - 10px);
  /* для 2 в ряд */
  display: block;
}

@media (max-width: 768px) {
  .collection__item_cat {
    width: 100%;
    /* мобілки */
  }
}

.collection__item_cat:hover {
  transform: translateY(-4px);
}


.collection__item_cat_title {
  font-size: 21px;
  font-weight: 600;
  margin: 0;
}

a.collection__item_cat {
  display: block;
  min-width: 0;
display: flex
;
    flex-direction: column;
    align-items: center;  
}

.collection__ad {
  grid-column: 1 / -1;
  /* Розтягується на всю ширину */
}





.collection-page {
  margin-bottom: 20px;
  max-width: 1000px;
  width: 100%;
}

.collection-page .main__btns {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.collection-page__head {
  padding-top: 15px;
  padding-bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.collection-page__pic {
  max-width: 350px;
  width: 100%;
  margin-right: 20px;
}

.collection-page__info {
  width: 100%;
}

.collection-page__title {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 5px;
}

.collection-page__text {
  padding: 10px 10px 0px 10px;
  text-align: justify;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  /*min-height: 157px;*/
  margin-bottom: 15px;
}

.collection-page__btn {
  width: 100%;
  max-width: 240px;
  height: 35px;
  -webkit-border-radius: 3px;
  border-radius: 5px;
  background-color: #53c363;
  color: #fff;
  text-align: center;
  line-height: 33px;
  font-weight: 300;
}

.collection-page__btn:visited {
  color: #fff;
}

.collection-page__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}


.collection-description {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 5px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background-color: #fdfdfd;
}

.collection-description__img img {
    width: 300px;
    height: 158px;  
  max-width: 300px;
  display: block;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 8px;
  background: white;
}

.collection-description__text {
    flex: 1;
    gap: 10px;
    display: flex
;
    flex-direction: column;

}

.collection-description__title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #262525;
}

.collection-description__body {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  text-align: justify;
  color: #383838;
}

.collection-description__readmore {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.collection-description__img {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 5px;
}

.collection-description__readmore {
  transition: color 0.2s;
}

.collection-description__readmore:hover {
  color: #0056b3;
  text-decoration: underline;
}

.read-more-btn {
display: inline-block;
    padding: 0px 11px;
    background-color: #a2a2a2;
    color: #fff;
    font-size: 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-left: 5px;
}

.read-more-btn:hover {
  background-color: #45af55;
}


@media (max-width: 768px) {
  .collection-description {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .collection-description__text {
    width: 100%;
  }

  .collection-description__img img {
    margin: 0 auto;
    max-width: 100%;
  }
}



.random_cat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 30px;
  background-color: #f8f9fb;
  border-radius: 5px;
  width: 100%;
}

.random_cat_obj {
  background: #ffffff;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.random_cat_obj:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.random_cat a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.random_cat_text h2 {
  font-size: 18px;
  font-weight: 600;
  color: #696969;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 19px;
  font-size: 14px;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  vertical-align: middle;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  /* padding: 0 12px; */
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
}

.random_cat_text h2:hover {
  color: #007bff;
}

.random_cat_img {
  padding: 10px 0;
    display: flex
;
    justify-content: center;  
}

.random_cat_img img {
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
  padding: 20px;
  width: 286px;
  height: 163px;  
}

.random_cat_obj:hover .random_cat_img img {
  transform: scale(1.03);
}

.random_cat_text {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  margin: 20px 10px 0px 10px;
  text-transform: uppercase;
}


.random_cat_text h2:hover {
  text-decoration: none;
  color: black;
}

@media (max-width: 768px) {
  .random_cat {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    padding: 20px;
  }

  .random_cat_obj {
    padding: 15px;
    min-height: auto;
  }

  .random_cat_text h2 {
    font-size: 16px;
    white-space: normal;
  }

  .random_cat_img img {
    /* max-height: 110px; */
  }
}

@media (max-width: 480px) {
  .random_cat {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .random_cat_obj {
    width: 100%;
  }
}

.collection_page .banner__tabs {
  margin: 11px 0px;
}














/** Clean, modern contact form styling **/

.contact1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: #f7f7f7;
  width: 100%;
  max-width: 1000px;
  border-radius: 5px;
  flex-direction: column;
}

.container-contact1 {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.contact1-pic {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact1-pic img {
  height: auto;
  width: 100%;
  max-width: 200px;
}

.contact1-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact1-form-title {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
  text-align: center;
}

.input1,
.textarea_f {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #f9f9f9;
  font-size: 16px;
  transition: border-color 0.3s;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.input1:focus,
.textarea_f:focus {
  outline: none;
}

.textarea_f {
  min-height: 140px;
  resize: vertical;
}

.container-contact1-form-btn {
  display: flex;
  justify-content: center;
}

.contact1-form-btn {
  background-color: #57b846;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

/* .contact1-form-btn:hover {
  background-color: #45a03b;
} */

@media (max-width: 768px) {
  .container-contact1 {
    flex-direction: column;
    padding: 30px;
  }

  .contact1-pic {
    margin-bottom: 30px;
  }
}


.copyright a {
  text-decoration: none;
  color: #212121;
  font-size: 16px;
}


.container-docs {
  text-align: justify;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 5px;
  background: #fff;
  margin-bottom: 50px;
  padding: 33px;
}

.container-docs h2 {
  color: #4a8cf5;
  margin-bottom: 16px;
  text-align: center;
}

.container-docs h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 10px;
}

.container-docs a {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #4a8cf5;
}

.container-docs b {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}

.container-docs p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
  margin-bottom: 15px;
}

.container-docs li {
  list-style-type: disc;
  list-style-position: inside;
  font-size: 16px;
  line-height: 21px;
}

a {
  text-decoration: none;
}


.main__list_near .main__item {
  position: relative;
}


.main__list_near {
  background: #f8f9fb;
  margin: 10px 10px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 20px;
  padding: 10px;
  border-radius: 5px;
}

.main__list_near .main__item:hover {
  opacity: 1 !important;
}


.main__list_near .main__item {
  width: 100%;
  max-width: 168px;
  height: 100%;
  max-height: 102px;
}

.main__list_near .main__item-img {
  width: 100%;
  padding: 10px;
}

.near-wrapper {
  display: flex;
  height: 160px;
  width: 100%;
  background: white;
  border-radius: 5px;
}


.main__item-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.main__item-wrapper {

  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 60px;
  /* додає місце для бокових кнопок */
  margin-bottom: 40px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  width: 100%;
  /* або більше */
  max-width: 90vw;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  flex-direction: column;
}

.main-cursor{
  width: 100%;
  display: flex
;
}

.main-tags{
  width: 100%;
}

.main__item-wrapper .main__item-img {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}


.main__item-wrapper .main__item p{
  font-size: 25px;
  padding: 20px;
}

.main__item-wrapper .main__item {
  max-width: 320px;
  float: left;
  width:100%;
  max-height: 210px;
  margin: 0px 20px;    
  position: relative;
}

.details-buttons{
      height: 50px;
    display: flex
;
    justify-content: space-around;
    align-items: center;
}

.main__item-wrapper .detail-page{
    font-size: 14px;
    color: #212121;
    text-align: justify;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.left-cursor, .right-cursor{
  width: 20px;
  opacity: 0;
}

.middle-cursor{
  width: 100%;
  margin: 15px 0px;
}



.main__item-wrapper .cursorimg{
  max-height: 140px;
  height: 100%;
  max-width: 150px;
  width: 100%;
}

/* Стиль кнопок */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 44px;
  background: #cbcbcb;
  color: #fff;
  /* border-radius: 50%; */
  height: 80%;
  font-size: 18px;
  font-weight: bold;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  z-index: 5;
}

.nav-arrow:hover {
  background: linear-gradient(135deg, #0040d0, #0090d0);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
  left: 10px;
  border-radius: 10px 0px 0px 10px;
}

.nav-arrow.right {
  right: 10px;
  border-radius: 0px 10px 10px 0px;
}

.howto__image img{
    filter: contrast(1.2) brightness(1.05);
}

.infeed .adsbygoogle {
  min-width: 100%;
}

.success-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 26px auto;
  padding: 40px;
  background: #f9fdfc;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.success-icon {
  font-size: 80px;
  color: #4BB543;
  margin-bottom: 20px;
}
.success-title {
  font-size: 32px;
  color: #2b2b2b;
  margin-bottom: 10px;
}
.success-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}
.success-list {
  text-align: left;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
}
.success-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.success-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-main {
  background: linear-gradient(135deg, #4a8cf52e, #73aea6);
  color: white;
}
.btn-secondary {
  background: #f0f0f0;
  color: #333;
}


html:not([data-cursor-style="true"]) {
  cursor: url('https://cursor.style/collections/18-startovyj_nabor/2082-cursor-style-cursor.svg') 10 0, auto;
}

html:not([data-cursor-style="true"]) a,
html:not([data-cursor-style="true"]) button,
html:not([data-cursor-style="true"]) input,
html:not([data-cursor-style="true"]) textarea {
  cursor: url('https://cursor.style/collections/18-startovyj_nabor/2082-cursor-style-pointer.svg') 10 0, pointer;
}




.emoji-temp {
  position: fixed;
  font-size: 5px;
  opacity: 0;
  pointer-events: none;
  font-family: 'Noto Color Emoji';
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0.2);
  will-change: transform, opacity;
}

.emoji-anim {
  animation: growFade 0.3s ease-out forwards;
}

@keyframes growFade {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(var(--angle));
  }
  30% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1) rotate(var(--angle));
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1) rotate(var(--angle));
  }
}



.trail-lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 240, 240, 0.8); /* напівпрозорий */
  color: #555;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none; /* щоб не блокував мишку, якщо треба — став pointer-events: auto */
  z-index: 2;
  border-radius: 5px;
}


.ui-toggle-switch {
  position: relative;
  display: inline-block;
  width: 72px;
  height: 32px;
  margin: 0 12px;  
}

.ui-toggle-switch input {
  display: none;
}

.ui-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
  box-shadow: 0 0 1px 2px #e0e0e0;
}

.ui-toggle-slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 6px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.ui-toggle-switch input:checked + .ui-toggle-slider {
  background-color: #4ed4ff;
  box-shadow: 0 0 1px 2px #b8eeff;
}

.ui-toggle-switch input:checked + .ui-toggle-slider::before {
  transform: translateX(25px);
}


.btn-container{
  width: 100%;
  gap: 10px;
  display: flex;
  height: 50px;
  align-content: center;
  justify-content: center;
}

.img-btn{
  height: 50px;
  width: 50px;
  background: transparent;
  border: 0;
}

.img-btn img:hover{
  transform: scale(1.2);
}


button.img-btn:disabled {
  pointer-events: none;
  opacity: 0.4;
  filter: grayscale(1);  
}

.icon-new{
  background-image: url(https://cursor.style/images/cursoranim.svg);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
}

.icon-top{
  background-image: url(https://cursor.style/images/icons/top.svg);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
}

.icon-collection{
  background-image: url(https://cursor.style/images/icons/collection.svg);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
}

.icon-search{
  background-image: url(https://cursor.style/images/icons/search.svg);
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
}


[data-arrow="right"] {
  font-size: 0;
  display: inline-block;
  width: 16px;
  background-image: url('https://cursor.style/images/icons/next.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}

[data-arrow="left"] {
  font-size: 0;
  display: inline-block;
  width: 16px;
  background-image: url('https://cursor.style/images/icons/prev.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}




.cursor-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}

.cursor-loader img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.cursor-loader p {
  font-size: 1.1rem;
  color: #444;
  font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#rewardBlock {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}


#rewardBlock .gift{
  width:34px;
  height:34px;
}

.master-container{
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-content: flex-start;
      justify-content: center;
      align-items: flex-start;
      
}

.main-container{
  max-width: 1000px;
  width: 100%;
}

.sidebar-left, .sidebar-right {
  max-width: 300px;
  width: 100%;
  flex-shrink: 1; 
  min-height: 800px;
}

.sidebar-left{
  overflow: visible;
  position: sticky;
  left: 0;
  top: 0;
  margin-top: 100px;
  height: 100%;
}

.n404{
  width: 100%;
}

.downloads-badge{
    color: #111;
    font-size: 10px;
    padding: 6px 12px;
    border-radius: 5px;
    margin-top: 4px;
    display: flex;
    gap: 5px;
    opacity: 0;
    position: absolute;
    bottom: 10px;
    right: 10px;   
}

.main__item:hover .downloads-badge {
  opacity: 1;
}


.downloads-badge img{
  width: 10px;
  height: 10px;
}

.sidebar-right{
  overflow: visible;
    position: sticky;
    left: 0;
    top: 0;
    margin-top: 100px;
    height: 100%;
}

@media (max-width: 1599px) {
  .sidebar-left,
  .sidebar-right {
    display: none;
  }
}

@media (max-width: 600px) {

  .detail-page, .cursor-tags{
    display: none;
  }
  .main__item-wrapper .main__item{
    margin: 0;
  }
  .middle-cursor{
      display: flex;
      align-content: center;
      align-items: center;
      justify-content: center;
  }

  #install_container{
    display: none;
  }
}

.dropcap p:first-child::first-letter,
.dropcap::first-letter {
    float: left;
    font-size: 2.9em;
    line-height: 0.82;
    font-weight: bold;
    color: #747dff;
    padding-right: 0.11em;
    padding-top: 0.07em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.main__item-wrapper:hover .left-cursor{
  opacity: 1;
}

.main__item-wrapper:hover .right-cursor{
  opacity: 1;
}

.cursor-tags{
    font-size: 14px;
    text-align: right;
    color: #40a6ff;
    margin-right: 20px;
    display: flex
;
    gap: 15px;
    justify-content: flex-end; 
}


.preloader{
    position: absolute;
    z-index: 101;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: none;
    pointer-events: none;
}
