@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tilt+Neon&display=swap");
body {
  background-image: linear-gradient(to right, #ffffff, #fbfbfc, #f6f8fa, #f1f5f7, #ffffff);
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5 {
  color: #041e49;
}

main.main-content {
  flex: 1;
  width: 100%;
}

/* CSS Variables for Search */
:root {
  --search-primary-color: #667eea;
  --search-primary-hover: #5568d3;
  --search-secondary-color: #764ba2;
  --search-border-color: #e5e7eb;
  --search-border-hover: #d1d5db;
  --search-bg: #f9fafb;
  --search-bg-focus: #ffffff;
  --search-text: #1a1a1a;
  --search-text-secondary: #6b7280;
  --search-text-placeholder: #6b7280;
  --search-shadow: rgba(102, 126, 234, 0.1);
  --search-shadow-hover: rgba(102, 126, 234, 0.3);
  --search-radius: 12px;
  --search-input-height: 44px;
  --search-input-padding: 16px;
  --search-icon-size: 20px;
  --search-close-size: 28px;
}

/* Modern Header Styles */
header.header {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.header {
  align-items: center;
  background-color: white;
  box-sizing: border-box;
  display: flex;
  height: 80px;
  min-width: inherit;
  padding: 0 24px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  /* New version label styles */
}
.header__new_version {
  position: relative;
}
.header__new_version .bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  color: white;
  font-size: 12px;
  font-weight: 600;
  isolation: isolate;
  left: -36px;
  padding: 6px 32px 6px 24px;
  position: absolute;
  top: -28px;
  transform: rotate(-40deg);
  border-radius: 4px;
}
.header {
  /* Header menu styles */
}
.header__menu {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.header__menu__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  /* Content on the left */
}
.header__menu__container .content__left {
  align-items: center;
  display: flex;
  gap: 40px;
  flex: 1;
  /* Logo styles */
}
.header__menu__container .content__left .logo {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  text-decoration: none;
  transition: transform 0.2s ease;
  gap: 12px;
}
.header__menu__container .content__left .logo:hover {
  transform: scale(1.05);
}
.header__menu__container .content__left .logo__image {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.header__menu__container .content__left .logo__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
  text-decoration: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header__menu__container .content__left {
  /* Menu links styles */
}
.header__menu__container .content__left .menu {
  display: flex;
  gap: 8px;
  height: 100%;
}
.header__menu__container .content__left .menu a {
  text-decoration: none;
  color: #4a5568;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}
.header__menu__container .content__left .menu a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.header__menu__container .content__left .menu a:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.08);
}
.header__menu__container .content__left .menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.header__menu__container .content__left .menu a.active {
  color: #667eea;
  background: rgba(102, 126, 234, 0.08);
}
.header__menu__container .content__left .menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.header__menu__container .content__left {
  /* Hamburger button */
}
.header__menu__container .content__left .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: all 0.3s ease;
}
.header__menu__container .content__left .menu-toggle .hamburger__line {
  width: 100%;
  height: 3px;
  background: #4a5568;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__menu__container .content__left .menu-toggle[aria-expanded=true] .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.header__menu__container .content__left .menu-toggle[aria-expanded=true] .hamburger__line:nth-child(2) {
  opacity: 0;
}
.header__menu__container .content__left .menu-toggle[aria-expanded=true] .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.header__menu__container .content__left .menu-toggle:hover .hamburger__line {
  background: #667eea;
}
.header__menu__container {
  /* Content on the right - Search */
}
.header__menu__container .content__right {
  align-items: center;
  display: flex;
  gap: 16px;
  position: relative;
  /* Install button */
}
.header__menu__container .content__right .header-install-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  border: none;
  cursor: pointer;
}
.header__menu__container .content__right .header-install-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.header__menu__container .content__right .header-install-btn__text {
  font-weight: 600;
}
.header__menu__container .content__right .header-install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
}
.header__menu__container .content__right .header-install-btn:active {
  transform: translateY(0);
}
.header__menu__container .content__right {
  /* Search form wrapper */
}
.header__menu__container .content__right form {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.header__menu__container .content__right {
  /* Search wrap styles */
}
.header__menu__container .content__right .search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  /* Search icon */
}
.header__menu__container .content__right .search-wrap svg.search-icon {
  position: absolute;
  left: var(--search-input-padding);
  width: var(--search-icon-size);
  height: var(--search-icon-size);
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
}
.header__menu__container .content__right .search-wrap svg.search-icon path {
  fill: var(--search-text-placeholder);
  transition: fill 0.3s ease;
}
.header__menu__container .content__right .search-wrap {
  /* Search input */
}
.header__menu__container .content__right .search-wrap input {
  width: 100%;
  height: var(--search-input-height);
  padding: 0 var(--search-input-padding) 0 48px;
  border: 2px solid var(--search-border-color);
  border-radius: var(--search-radius);
  background: var(--search-bg);
  color: var(--search-text);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  outline: none;
}
.header__menu__container .content__right .search-wrap input::placeholder {
  color: var(--search-text-placeholder);
  font-weight: 400;
}
.header__menu__container .content__right .search-wrap input:focus, .header__menu__container .content__right .search-wrap input:focus-visible {
  border-color: var(--search-primary-color);
  background: var(--search-bg-focus);
  box-shadow: 0 0 0 4px var(--search-shadow);
  outline: 2px solid var(--search-primary-color);
  outline-offset: 2px;
}
.header__menu__container .content__right .search-wrap input:focus ~ svg.search-icon path, .header__menu__container .content__right .search-wrap input:focus-visible ~ svg.search-icon path {
  fill: var(--search-primary-color);
}
.header__menu__container .content__right .search-wrap input:hover:not(:focus):not(:focus-visible) {
  border-color: var(--search-border-hover);
  background: var(--search-bg-focus);
}
.header__menu__container .content__right .search-wrap {
  /* Close button (when search is active) */
}
.header__menu__container .content__right .search-wrap .close-btn {
  position: absolute;
  right: 12px;
  width: var(--search-close-size);
  height: var(--search-close-size);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  z-index: 3;
  background: transparent;
  border: none;
  padding: 0;
}
.header__menu__container .content__right .search-wrap .close-btn:hover, .header__menu__container .content__right .search-wrap .close-btn:focus-visible {
  background: rgba(0, 0, 0, 0.05);
  outline: 2px solid var(--search-primary-color);
  outline-offset: 2px;
}
.header__menu__container .content__right .search-wrap .close-btn:active {
  background: rgba(0, 0, 0, 0.1);
}
.header__menu__container .content__right .search-wrap .close-btn svg {
  position: static;
  width: 16px;
  height: 16px;
}
.header__menu__container .content__right .search-wrap .close-btn svg path {
  fill: var(--search-text-secondary);
  transition: fill 0.2s ease;
}
.header__menu__container .content__right .search-wrap .close-btn.close-btn--hidden {
  display: none !important;
}
.header__menu__container .content__right .search-wrap {
  /* Show close button when search wrap has value class */
}
.header__menu__container .content__right .search-wrap.search-wrap--has-value .close-btn {
  display: flex;
}
.header__menu__container .content__right {
  /* Search results block */
}
.header__menu__container .content__right #search__block {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 500px !important;
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid #e5e7eb !important;
  display: none !important;
  overflow: hidden !important;
  z-index: 1000 !important;
  animation: slideDown 0.3s ease !important;
  margin-top: 0 !important;
}
.header__menu__container .content__right #search__block.open {
  display: block !important;
}
.header__menu__container .content__right #search__block .menu_search {
  padding: 0;
  max-height: 500px;
  overflow-y: auto;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content {
  padding: 0;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content .block-name {
  padding: 12px 16px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-header {
  padding: 8px 16px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-header .search-result-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item:last-child {
  border-bottom: none;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item:hover {
  background: #f9fafb;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item.tt-cursor {
  background: #f9fafb;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  color: #1a1a1a;
  gap: 12px;
  transition: all 0.2s ease;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-link:hover {
  background: #f3f4f6;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-image-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-title .tt-highlight {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  font-weight: 700;
  padding: 0 2px;
  border-radius: 2px;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-description {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-collection {
  font-size: 0.75rem;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item .search-result-type {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item.search-result-item--collection .search-result-image-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-item.search-result-item--collection .search-result-type {
  color: #764ba2;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-empty {
  padding: 40px 16px;
  text-align: center;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-empty__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-empty__content span {
  font-size: 0.95rem;
  color: #6b7280;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-footer {
  padding: 0;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-footer__link {
  display: block;
  padding: 12px 16px;
  text-align: center;
  color: #667eea;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-footer__link:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #764ba2;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-loading {
  padding: 20px;
  text-align: center;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-loading__spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid #e5e7eb;
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.header__menu__container .content__right #search__block .menu_search .search__sub__menu .search_sub_content ul .search-result-loading__text {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Responsive design */
@media (max-width: 1024px) {
  .header__menu__container .content__left {
    gap: 24px;
  }
  .header__menu__container .content__left .menu {
    gap: 4px;
  }
  .header__menu__container .content__left .menu a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .header__menu__container .content__right {
    gap: 12px;
  }
  .header__menu__container .content__right form {
    max-width: 300px;
  }
  .header__menu__container .content__right .header-install-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .header__menu__container .content__right .header-install-btn__icon {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 72px;
    padding: 0 16px;
  }
  .header__menu__container {
    gap: 12px;
  }
  .header__menu__container .content__left {
    gap: 16px;
  }
  .header__menu__container .content__left .logo__image {
    height: 32px;
    width: 32px;
  }
  .header__menu__container .content__left .logo__name {
    font-size: 1.1rem;
  }
  .header__menu__container .content__left .menu {
    display: none;
  }
  .header__menu__container .content__left .menu-toggle {
    display: flex;
  }
  .header__menu__container .content__right {
    gap: 10px;
  }
  .header__menu__container .content__right form {
    max-width: 200px;
  }
  .header__menu__container .content__right .search-wrap input {
    height: 40px;
    font-size: 0.9rem;
    padding: 0 12px 0 40px;
  }
  .header__menu__container .content__right .search-wrap svg {
    left: 12px;
    width: 18px;
    height: 18px;
  }
  .header__menu__container .content__right .header-install-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .header__menu__container .content__right .header-install-btn__text {
    display: none;
  }
  .header__menu__container .content__right .header-install-btn__icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .header__menu__container .content__right {
    gap: 8px;
  }
  .header__menu__container .content__right form {
    max-width: 140px;
  }
  .header__menu__container .content__right .header-install-btn {
    padding: 8px 12px;
    min-width: 44px;
  }
  .header__menu__container .content__right .header-install-btn__icon {
    width: 18px;
    height: 18px;
  }
}
/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: white;
  z-index: 1000;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  min-height: 72px;
}
.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.1rem;
}
.mobile-menu__logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  padding: 0;
}
.mobile-menu__close svg {
  width: 24px;
  height: 24px;
  stroke: #4a5568;
}
.mobile-menu__close:hover {
  background: rgba(0, 0, 0, 0.05);
}
.mobile-menu__close:hover svg {
  stroke: #667eea;
}
.mobile-menu__content {
  flex: 1;
  padding: 20px 0;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #4a5568;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}
.mobile-menu__link:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
  border-left-color: #667eea;
}
.mobile-menu__link.active {
  background: rgba(102, 126, 234, 0.12);
  color: #667eea;
  border-left-color: #667eea;
  font-weight: 600;
}

.language-switcher {
  position: relative;
  display: inline-block;
  margin-right: 12px;
}
.language-switcher__button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #041e49;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.language-switcher__button:hover {
  background: #f6f8fa;
  border-color: #d3e3fd;
}
.language-switcher__button[aria-expanded=true] {
  background: #d3e3fd;
  border-color: #b8d4fa;
}
.language-switcher__button[aria-expanded=true] .language-switcher__icon {
  transform: rotate(180deg);
}
.language-switcher__current {
  min-width: 32px;
}
.language-switcher__icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.language-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1000;
}
.language-switcher__dropdown--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-switcher__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #041e49;
  text-decoration: none;
  transition: background 0.2s ease;
}
.language-switcher__option:hover {
  background: #f6f8fa;
}
.language-switcher__option:first-child {
  border-radius: 8px 8px 0 0;
}
.language-switcher__option:last-child {
  border-radius: 0 0 8px 8px;
}
.language-switcher__code {
  min-width: 32px;
  font-weight: 600;
  color: #667eea;
}
.language-switcher__name {
  flex: 1;
}

.language-switcher-mobile {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid #e0e0e0;
}
.language-switcher-mobile__link {
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: #041e49;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.language-switcher-mobile__link:hover {
  background: #f6f8fa;
}
.language-switcher-mobile__link.active {
  background: #d3e3fd;
  color: #041e49;
  font-weight: 600;
}

.cursor {
  background-color: #eff2ef;
  border-radius: 20px;
  box-sizing: border-box;
  color: initial;
  display: flex;
  flex-direction: column;
  max-width: 252px;
  position: relative;
}
.cursor:hover {
  background-color: #e3e3e3;
}
.cursor a {
  text-decoration: none;
}
.cursor .link {
  border-radius: 20px;
  height: 100%;
  position: absolute;
  width: 100%;
}
.cursor .content {
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.cursor .content img {
  aspect-ratio: 2;
  border-radius: 12px;
  padding: 25px;
  width: auto;
}
.cursor .content .name {
  color: #252f57;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  margin: 12px 0 0;
  min-height: 1.5rem;
}
.cursor .content .description {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  margin: 8px 0 0;
  min-height: 2.5rem;
}
.cursor .content .actions .btn.add {
  position: relative;
  z-index: 1;
  width: auto;
  background: transparent;
  color: #4263df;
  border: 1px solid #4263df;
}
.cursor .content .actions .btn.add:hover {
  background: #4263df;
  border-color: #4263df;
  color: #fffaf2;
}
.cursor .content .actions .btn.add.disabled {
  background: #a8b0cd;
  color: #f4f7ff;
  border: 1px solid #a8b0cd;
}

.collection {
  background-color: #eff2ef;
  border-radius: 20px;
  box-sizing: border-box;
  color: initial;
  display: flex;
  flex-direction: column;
  padding: 20px 16px 16px;
  width: 318px;
}
.collection:hover {
  background-color: #e3e3e3;
}
.collection {
  text-decoration: none;
}
.collection .collection__content {
  align-items: center;
  display: flex;
}
.collection .collection__content .icon {
  align-items: center;
  background-color: white;
  border-radius: 12px;
  display: flex;
  padding: 6px;
}
.collection .collection__content .icon .icon_img {
  aspect-ratio: 1;
  width: 48px;
}
.collection .collection__content .collection__info {
  display: flex;
  flex-direction: column;
  margin-left: 16px;
}
.collection .collection__content .collection__info .name {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  color: black;
  margin-bottom: 0;
  margin-top: 0;
}
.collection .collection__content .collection__info .description {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.25rem;
  height: 40px;
  margin: initial;
}
.collection .collection__image {
  aspect-ratio: 1.68;
  border-radius: 12px;
  margin-top: 16px;
}

/* Base slider styles
/home/www/work/cute-cursor.com/verstka/src/styles/slider.scss
*/
.slider {
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  /* Slider content styles */
}
.slider__content {
  display: flex;
  flex-grow: 1;
  width: 100%;
  /* Individual slide styles */
}
.slider__content .card {
  box-sizing: border-box;
  color: #1f1f1f;
  flex: 0 0 100%;
  /* Slide container styles */
}
.slider__content .card .slide {
  align-items: center;
  aspect-ratio: 3.6107678255;
  background-color: #e1e3e1;
  border-radius: 28px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  max-width: 1344px;
  padding: 0 64px;
  position: relative;
  /* Slide overlay styles */
}
.slider__content .card .slide::before {
  background-color: #eff2ef;
  background-image: var(--ei-large-viewport-image-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 28px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.slider__content .card .slide {
  /* Slide content styles */
}
.slider__content .card .slide h1 {
  color: #041e49;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}
.slider__content .card .slide .slide__description {
  color: #1f1f1f;
  font-size: 1.125rem;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}
.slider__content .card .slide {
  /* Z-index for slide content */
}
.slider__content .card .slide > * {
  position: relative;
  z-index: 2;
}
.slider__content .card .slide {
  /* Button styles */
}
.slider__content .card .slide a.btn {
  position: relative;
  z-index: 2;
}
.slider__content .card {
  /* Button styles within the slide */
}
.slider__content .card a.btn {
  text-decoration: none;
}
.slider {
  /* Slider action buttons styles */
}
.slider__actions {
  align-items: center;
  bottom: 0;
  display: flex;
  flex: 0 0 48px;
  justify-content: space-between;
  margin-right: 20px;
  padding: 12px;
  position: absolute;
  right: 0;
  z-index: 6;
}

/* Base footer styles */
.footer {
  /* Footer content container */
}
.footer .footer__content {
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.25rem;
  align-items: center;
  border-top: 1px solid #e3e3e3;
  color: #5c5f5e;
  display: flex;
  height: 104px;
  justify-content: center;
  /* Footer menu styles */
}
.footer .footer__content .footer__menu {
  padding: initial;
  /* Individual menu items */
}
.footer .footer__content .footer__menu .menu__item {
  display: inline-block;
  margin-right: 10px;
  /* Menu item links */
}
.footer .footer__content .footer__menu .menu__item .menu__item__link {
  color: #5c5f5e;
  text-decoration: none;
  /* Hover styles for menu item links */
}
.footer .footer__content .footer__menu .menu__item .menu__item__link:hover {
  color: #0b57d0;
}
.footer .footer__content .footer__menu {
  /* Add separator dots between menu items */
}
.footer .footer__content .footer__menu .menu__item:not(:last-child)::after {
  content: "•";
  margin: 0 8px;
}

/* Breadcrumb container */
.breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  /* Breadcrumb links */
}
.breadcrumb a {
  text-decoration: none;
  color: #041e49;
  /* Hover styles for breadcrumb links */
}
.breadcrumb a:hover {
  color: black;
}

.paginator {
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}
.paginator__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.paginator__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #041e49;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  min-width: 90px;
}
.paginator__btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: fill 0.2s ease;
}
.paginator__btn:hover:not(.paginator__btn--disabled) {
  background: #d3e3fd;
  border-color: #b8d4fa;
  color: #041e49;
}
.paginator__btn:active:not(.paginator__btn--disabled) {
  background: #b8d4fa;
  border-color: #a8c7fa;
}
.paginator__btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f6f8fa;
  border-color: #e0e0e0;
  color: #9ca3af;
}
.paginator__btn--prev svg {
  order: -1;
}
.paginator__btn--next svg {
  order: 1;
}
.paginator__pages {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.paginator__page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.paginator__page__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #041e49;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.paginator__page:hover:not(.paginator__page--active) {
  background: #f6f8fa;
  border-color: #d3e3fd;
}
.paginator__page:hover:not(.paginator__page--active) .paginator__page__link {
  color: #041e49;
}
.paginator__page--active {
  background: #d3e3fd;
  border-color: #b8d4fa;
}
.paginator__page--active span {
  color: #041e49;
  font-weight: 600;
}

@media (max-width: 640px) {
  .paginator {
    padding: 30px 16px;
  }
  .paginator__wrapper {
    gap: 6px;
  }
  .paginator__btn {
    padding: 8px 14px;
    min-width: 80px;
    font-size: 0.85rem;
    gap: 4px;
  }
  .paginator__btn svg {
    width: 14px;
    height: 14px;
  }
  .paginator__page {
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  .paginator__pages {
    gap: 4px;
  }
}
@media (max-width: 480px) {
  .paginator {
    padding: 24px 12px;
  }
  .paginator__btn {
    padding: 8px 12px;
    min-width: 70px;
    font-size: 0.8rem;
    gap: 4px;
  }
  .paginator__btn span {
    display: none;
  }
  .paginator__btn svg {
    width: 16px;
    height: 16px;
  }
  .paginator__page {
    min-width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .paginator__pages {
    gap: 4px;
  }
}
.btn {
  background: #4263df;
  color: white;
  font-size: 0.851em;
  border: none;
  height: 36px;
  padding: 0 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 30px;
  width: auto;
  text-decoration: none;
}
.btn:hover {
  background: #0b57d0;
}
.btn.disabled {
  pointer-events: none;
  background: #DAE0E4;
}
.btn.more {
  background: transparent;
  color: #4263df;
  border: 1px solid #4263df;
}
.btn.more:hover {
  background: #4263df;
  border-color: #4263df;
  color: #fffaf2;
}
.btn.banner__install {
  width: 200px;
  color: black;
  border: 1px solid black;
  background: transparent;
}
.btn.banner__install:hover {
  background: #4263df;
  border-color: #4263df;
  color: #fffaf2;
}
.btn.banner_custom_cursor {
  color: #041e49;
  border: 2px solid #041e49;
  width: 200px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  height: 48px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn.banner_custom_cursor:hover {
  background: #041e49;
  border-color: #041e49;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.notification-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: calc(100vw - 40px);
  pointer-events: none;
}
@media (max-width: 640px) {
  .notification-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

.notification {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 320px;
  max-width: 420px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.notification::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: currentColor;
}
.notification--show {
  transform: translateX(0);
  opacity: 1;
}
.notification--hide {
  transform: translateX(120%);
  opacity: 0;
}
@media (max-width: 640px) {
  .notification {
    min-width: auto;
    max-width: none;
    width: 100%;
    padding: 14px 18px;
    gap: 12px;
  }
}

.notification--success {
  color: #4CAF50;
}
.notification--success::before {
  background: linear-gradient(180deg, #4CAF50 0%, #45a049 100%);
}
.notification--success .notification__icon {
  background: linear-gradient(135deg, #d3e3fd 0%, #b8d4fa 100%);
  color: #4CAF50;
}

.notification--error {
  color: #f44336;
}
.notification--error::before {
  background: linear-gradient(180deg, #f44336 0%, #d32f2f 100%);
}
.notification--error .notification__icon {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  color: #f44336;
}

.notification--info {
  color: #2196F3;
}
.notification--info::before {
  background: linear-gradient(180deg, #2196F3 0%, #1976D2 100%);
}
.notification--info .notification__icon {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #2196F3;
}

.notification--warning {
  color: #ff9800;
}
.notification--warning::before {
  background: linear-gradient(180deg, #ff9800 0%, #f57c00 100%);
}
.notification--warning .notification__icon {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  color: #ff9800;
}

.notification__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.notification__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
@media (max-width: 640px) {
  .notification__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .notification__icon svg {
    width: 18px;
    height: 18px;
  }
}

.notification__content {
  flex: 1;
  min-width: 0;
  padding-right: 8px;
}

.notification__message {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #1a1a1a;
  font-weight: 500;
  word-wrap: break-word;
}
@media (max-width: 640px) {
  .notification__message {
    font-size: 0.875rem;
  }
}

.notification__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: #9ca3af;
}
.notification__close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #6b7280;
}
.notification__close:active {
  background: rgba(0, 0, 0, 0.1);
}
.notification__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
@media (max-width: 640px) {
  .notification__close {
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
  }
  .notification__close svg {
    width: 14px;
    height: 14px;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}
@media (prefers-color-scheme: dark) {
  .notification {
    background: #1f2937;
  }
  .notification .notification__message {
    color: #f9fafb;
  }
  .notification .notification__close {
    color: #9ca3af;
  }
  .notification .notification__close:hover {
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.1);
  }
}
.container-page {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 1344px;
  gap: 30px;
}
.container-page section {
  max-width: 1344px;
  width: 100%;
}
.container-page section.section_one .section__name {
  font-size: 1.75rem;
  letter-spacing: 0;
  line-height: 2.25rem;
  margin: 0 8px 10px 0;
}
.container-page section .section_description {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  color: #2d312f;
  margin: 0 0 24px;
}
.container-page section .section__name {
  align-items: center;
  display: flex;
}
.container-page section .section__name h2 {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2.25rem;
  margin: 0 8px 0 0;
}
.container-page section .section__name .more {
  margin-left: auto;
}
.container-page section .section__name .more .link__more {
  display: inline;
}
.container-page .banner {
  margin-top: 25px;
  margin-bottom: 25px;
  min-height: 240px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1344px;
  padding: 50px 60px;
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.container-page .banner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 12px;
  z-index: 2;
  position: relative;
  line-height: 1.3;
}
.container-page .banner p {
  font-size: 1.15rem;
  color: #2d312f;
  margin: 0 0 28px;
  z-index: 2;
  position: relative;
  line-height: 1.6;
  max-width: 500px;
}
.container-page .banner .btn__install:hover {
  background-color: rgba(218, 224, 228, 0.2117647059);
}
.container-page .banner a {
  text-decoration: none;
  z-index: 2;
  position: relative;
}
.container-page .banner:before {
  background: linear-gradient(135deg, #d3e3fd 0%, #b8d4fa 100%);
  background-image: var(--bp-image-url, none);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 20px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 1;
}
.container-page .banner * {
  z-index: 2;
}
@media (max-width: 768px) {
  .container-page .banner {
    min-height: 200px;
    padding: 40px 30px;
  }
  .container-page .banner h2 {
    font-size: 1.75rem;
  }
  .container-page .banner p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .container-page .banner {
    min-height: 180px;
    padding: 30px 20px;
  }
  .container-page .banner h2 {
    font-size: 1.5rem;
  }
  .container-page .banner p {
    font-size: 0.95rem;
  }
}

.cursors {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.collections_popular {
  display: flex;
  justify-content: space-between;
}
.collections_popular .card {
  align-items: center;
  background-color: var(--tc-bg-color);
  border-radius: 16px;
  box-sizing: border-box;
  color: initial;
  display: flex;
  height: 80px;
  padding: 16px;
  width: 252px;
  text-decoration: none;
}
.collections_popular .card:hover {
  background: #a8c7fa;
}
.collections_popular .card .name {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  color: #444746;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.collections_popular .card .name .icon {
  align-items: center;
  background-color: var(--tc-icon-bg-color);
  border-radius: 50%;
  color: var(--tc-icon-color);
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}
.collections_popular .card .name .icon .icon_svg {
  fill: currentColor;
  flex-shrink: 0;
}

.section_two {
  max-width: 1344px;
  width: 100%;
}
.section_two .name {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2.25rem;
  margin: initial;
}
.section_two .description {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  color: #2d312f;
  margin: 6px 0 0;
}
.section_two .collections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 24px;
  gap: 15px;
}

section .title {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2.25rem;
  margin: 24px auto 24px;
}

.tops {
  display: flex;
  justify-content: center;
  padding-top: 36px;
}
.tops .sidebar {
  margin-right: 48px;
  width: 256px;
}
.tops .sidebar nav {
  padding-left: 26px;
  width: 230px;
}
.tops .sidebar nav ul {
  margin: 0;
  padding: 8px 0;
  list-style-type: none;
}
.tops .sidebar nav ul span {
  font-size: 1rem;
  letter-spacing: 0;
  display: inline-block;
  line-height: 40px;
  padding: 0 24px;
  pointer-events: none;
}
.tops .sidebar nav ul li {
  height: 40px;
  letter-spacing: 0;
  line-height: 1.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  color: white;
  border-radius: 28px;
}
.tops .sidebar nav ul li a {
  font-size: 14px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
}
.tops .sidebar nav ul li:hover {
  background: #eaeaea;
}
.tops .sidebar nav ul li.active {
  background: #0b57d0;
  color: white;
}
.tops .sidebar nav ul li.active a {
  color: white;
}
.tops .content__right {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 64px;
  max-width: 1072px;
  min-width: 880px;
}
.tops .content__right .cursors {
  display: grid;
  gap: 16px 21.3333333333px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: space-between;
  width: 100%;
}
.tops .content__right .page__name {
  display: grid;
  gap: 16px 21.3333333333px;
  grid-column: 1/-1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 40px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.tops .content__right .page__name h1.page__tilte {
  grid-area: 1/1/1/3;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2.5rem;
  margin: 0;
}
.tops .content__right .page__name .UkM5db {
  grid-area: 1/3/1/3;
  max-width: 252px;
}
.tops .content__right .page__name .v7YRae {
  grid-area: 1/4/1/4;
  max-width: 252px;
}

.VWBXhd {
  padding-top: 24px;
}

.pack {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: flex-end;
}
.pack .pack__info {
  max-width: 800px;
  width: 100%;
}
.pack .pack__info .pack__name {
  align-items: center;
  display: flex;
  margin-bottom: 16px;
  text-decoration: none;
  color: #2962ff;
}
.pack .pack__info .row1 {
  align-items: center;
  display: flex;
  margin-bottom: 12px;
}
.pack .pack__info .row1 .icon {
  height: 28px;
  margin-right: 2px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.pack .pack__info .row1 .icon a {
  text-decoration: none;
}
.pack .pack__info .row1 .icon a:hover {
  color: #0a5dc2;
}
.pack .pack__info .row1 .link__author {
  color: #0b57d0;
  cursor: pointer;
  margin-right: 16px;
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pack .pack__info .row1 .icon {
  height: 28px;
  margin-right: 2px;
}
.pack .pack__info .row1 .recomended {
  color: #146c2e;
  margin-right: 16px;
  vertical-align: middle;
}
.pack .pack__info .row1 .Qm2rpf {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  align-items: center;
  color: #001d35;
  display: flex;
}

.row2 {
  font-size: 0.875rem;
  margin: 15px auto;
  letter-spacing: 0;
  line-height: 1.25rem;
  align-items: center;
  display: flex;
}
.row2 .tag {
  background-color: #eff2ef;
  color: initial;
  cursor: pointer;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.25rem;
  border-radius: 8px;
  margin-right: 8px;
  padding: 8px 12px;
}
.row2 .tag:hover {
  color: #0a5dc2;
}

.tag {
  background-color: #eff2ef;
  color: initial;
  cursor: pointer;
  text-decoration: none;
}

.x {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 25px;
  border-right: 10px;
  gap: 50px;
}

.image {
  background-color: #eff2ef;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  gap: 50px;
}
.image img {
  border-radius: 15px;
  padding: 15px;
}

.page_collection {
  width: 100%;
}
.page_collection main {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page_collection main .header {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 64px;
  position: relative;
}
.page_collection main .description {
  line-height: 2rem;
}
.page_collection .slide-collection {
  align-items: center;
  background-color: #e1e3e1;
  border-radius: 28px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  max-width: 1344px;
  padding: 25px 25px;
  position: relative;
}
.page_collection .slide-collection .additional {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.page_collection .slide-collection .additional .reviews {
  display: flex;
  gap: 5px;
}
.page_collection .slide-collection .additional .users {
  display: flex;
  gap: 5px;
}
.page_collection .slide-collection a.link {
  border-radius: 28px;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  text-decoration: none;
}
.page_collection .slide-collection .collection__image {
  aspect-ratio: 1.68;
  border-radius: 20px;
  height: 245px;
}
.page_collection .slide-collection .collection__info {
  color: #2d312f;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin-left: 64px;
}
.page_collection .slide-collection .phrase {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5rem;
  color: #444746;
  margin: initial;
}
.page_collection .slide-collection .collection__name {
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 2.5rem;
  margin: 16px 0 0;
}
.page_collection .slide-collection .collection__description {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5rem;
  margin: 16px 0;
}
.page_collection .slide-collection .btn:hover {
  background: #0b57d0;
}
.page_collection .slide-collection .btn {
  text-decoration: none;
}

.content__right {
  height: 50px;
  padding: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content__right form {
  max-width: 500px;
  width: 100%;
  height: 100%;
  display: flex;
}
.content__right .search-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.content__right .search-wrap .open-btn {
  z-index: 1;
  position: relative;
}
.content__right .search-wrap svg {
  z-index: 999999999;
  width: 26px;
  height: auto;
  position: absolute;
  top: 13px;
  left: 20px;
}
.content__right .search-wrap svg path {
  fill: #a8b0cd;
}
.content__right .search-wrap input {
  border: 1px solid #eaebf3;
  color: #353644;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  padding: 0 60px;
  box-sizing: border-box;
  background: #eff2ef;
}
.content__right .search-wrap input::placeholder {
  color: #6b7280;
}
.content__right .install-btn {
  height: 100%;
  border-radius: 25px;
  padding: 0px 30px 0px 7px;
  white-space: nowrap;
  margin-left: 20px;
}
.content__right .install-btn svg {
  width: 36px;
  height: auto;
  margin-right: 10px;
}

.twitter-typeahead {
  height: 100%;
  width: 40vw;
}

.search-wrap {
  padding-right: 45px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
.search-wrap .open-btn {
  display: block;
}
.search-wrap .close-btn {
  display: none;
  cursor: pointer;
}
.search-wrap .close-btn svg:hover {
  cursor: pointer;
}
.search-wrap .close-btn svg:hover path {
  fill: rebeccapurple;
}

.search__block .menu_search * {
  color: #353644;
}
.search__block .menu_search {
  background: white;
  box-shadow: 0 0px 6px 0 hsla(0, 0%, 88%, 0.78);
  border-radius: 10px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.search__block .menu_search .input_container {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  width: 100%;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.9);
}
.search__block .menu_search .input_container input {
  border: none;
  outline: none;
  padding: 5px 7px;
}
.search__block .menu_search .input_container input::placeholder {
  color: #6b7280;
}
.search__block .menu_search .input_container input {
  width: 100%;
}
.search__block .menu_search .input_container .icon__search i {
  width: 20px;
  height: 20px;
}
.search__block .menu_search .input_container .icon__close i {
  width: 20px;
  height: 20px;
}
.search__block .menu_search .input_container .icon__close:hover {
  text-decoration: none;
}
.search__block .menu_search .input_container .icon__close:hover * {
  color: #353644 !important;
}
.search__block .menu_search .input_container .icon__close .fa.fa-times {
  color: #353644;
  font-weight: bold;
}
.search__block .menu_search .block-name {
  color: #000000;
  padding: 0px 0px 0px 15px;
}
.search__block .menu_search .search__sub__menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-between;
  align-items: stretch;
}
.search__block .menu_search .search__sub__menu .search_sub_content {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-between;
  z-index: 9999;
}
.search__block .menu_search .search__sub__menu .search_sub_content .block-name {
  font-weight: bold;
}
.search__block .menu_search .search__sub__menu .search_sub_content ul {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.search__block .menu_search .search__sub__menu .search_sub_content ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px 0px;
}
.search__block .menu_search .search__sub__menu .search_sub_content ul li.tt-suggestion {
  padding: 0px 10px;
  align-content: center;
  align-items: center;
}
.search__block .menu_search .search__sub__menu .search_sub_content ul li:last-child {
  margin-bottom: 10px;
}
.search__block .menu_search .search__sub__menu .search_sub_content ul li:after {
  height: 30px;
  content: "";
  margin-top: 0px;
  position: absolute;
  left: 0px;
  transition: 0.2s ease;
  opacity: 0;
  background: deepskyblue;
  width: 0;
}
.search__block .menu_search .search__sub__menu .search_sub_content ul li:hover {
  background-color: rgba(96, 125, 139, 0.15);
  color: #000;
  cursor: pointer;
}
.search__block .menu_search .search__sub__menu .search_sub_content ul li:hover:after {
  opacity: 1;
  width: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.search__block .menu_search .search__sub__menu .search_sub_content ul li a {
  padding: 5px 32px;
  width: 100%;
  color: #2c2e3c;
  text-decoration: none;
  text-transform: lowercase;
}
.search__block .menu_search .search__sub__menu .search_sub_content ul li a:hover {
  text-decoration: none;
}

.btn.home {
  margin-top: 108px;
  display: flex;
  gap: 15px;
  padding: 7px 0px;
  height: auto;
  width: auto;
  align-content: center;
  flex-wrap: nowrap;
  justify-content: space-around;
  padding-right: 30px;
  padding-left: 6px;
}
.btn.home svg {
  width: 32px;
  height: 32px;
}

.cursor_pack {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  padding: 15px;
  border-radius: 15px;
  gap: 15px;
}
.cursor_pack .cursor, .cursor_pack .pointer {
  align-items: center;
  background-color: white;
  border-radius: 12px;
  display: flex;
  padding: 6px;
  cursor: var(--cursor);
}
.cursor_pack .cursor:hover, .cursor_pack .pointer:hover {
  background: #0d95e8;
}
.cursor_pack .cursor img, .cursor_pack .pointer img {
  aspect-ratio: 1;
  width: 64px;
  padding: 10px;
}

.modal-window {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  opacity: 0;
}
.modal-window__content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 600px;
  min-height: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-window__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.modal-window__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-window__icon svg {
  width: 50px;
  height: 50px;
}
.modal-window__text {
  margin-bottom: 30px;
}
.modal-window__text .caption {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.modal-window__text .description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}
.modal-window__actions {
  width: 100%;
  display: flex;
  justify-content: center;
}
.modal-window__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: #ffffff;
  color: #667eea;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.modal-window__actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}
.modal-window__actions .btn:active {
  transform: translateY(0);
}
.modal-window__actions .btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.modal-window__actions .btn span {
  white-space: nowrap;
}
.modal-window.show {
  opacity: 1;
  visibility: visible;
}
.modal-window.show .modal-window__content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(90deg);
}
.modal-close svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .modal-window {
    width: 95%;
    max-width: none;
    min-height: 280px;
  }
  .modal-window__content {
    padding: 30px 20px;
  }
  .modal-window__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  .modal-window__icon svg {
    width: 40px;
    height: 40px;
  }
  .modal-window__text {
    margin-bottom: 25px;
  }
  .modal-window__text .caption {
    font-size: 1.5rem;
  }
  .modal-window__text .description {
    font-size: 0.9rem;
  }
  .modal-window__actions .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  .modal-window__actions .btn svg {
    width: 20px;
    height: 20px;
  }
}
.alert-alert {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10001;
}
.alert-alert.show {
  display: block;
}
.alert-alert.show section {
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.alert-alert section {
  min-height: 100px;
  width: 380px;
  max-width: calc(100vw - 40px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transform: translateX(120%);
}
.alert-alert section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #4CAF50 0%, #45a049 100%);
}
.alert-alert__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}
.alert-alert__icon svg {
  width: 28px;
  height: 28px;
}
.alert-alert__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.alert-alert__content h1 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
}
.alert-alert__content p {
  font-size: 0.875rem;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}
.alert-alert__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.alert-alert__close:hover {
  background: rgba(0, 0, 0, 0.05);
}
.alert-alert__close svg {
  width: 16px;
  height: 16px;
  fill: #999999;
}
.alert-alert #success .alert-alert__icon {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

@keyframes slideInRight {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .alert-alert {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .alert-alert section {
    width: 100%;
    max-width: none;
    padding: 20px;
  }
  .alert-alert__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .alert-alert__icon svg {
    width: 24px;
    height: 24px;
  }
  .alert-alert__content h1 {
    font-size: 0.9rem;
  }
  .alert-alert__content p {
    font-size: 0.8rem;
  }
}
.contact-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-image: linear-gradient(to right, #ffffff, #fbfbfc, #f6f8fa, #f1f5f7, #ffffff);
}

.contact-container {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.contact-header {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #d3e3fd 0%, #b8d4fa 100%);
  color: #041e49;
}
.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #041e49;
}
.contact-header .contact-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  color: #2d312f;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  padding: 40px;
  background: #ffffff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.contact-info__item:hover {
  background: #eff2ef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #d3e3fd;
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041e49;
  font-size: 1.2rem;
}
.contact-info__icon i {
  color: #041e49;
}
.contact-info__content {
  flex: 1;
}
.contact-info__content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #041e49;
}
.contact-info__content a {
  color: #0a5dc2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-info__content a:hover {
  color: #0b57d0;
  text-decoration: underline;
}
.contact-info__content p {
  margin: 0;
  color: #2d312f;
  line-height: 1.6;
}

.contact-form-wrapper .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form-wrapper .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-wrapper .form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #041e49;
  margin-bottom: 4px;
}
.contact-form-wrapper .form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e1e3e1;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #041e49;
  box-sizing: border-box;
}
.contact-form-wrapper .form-input:focus {
  outline: none;
  border-color: #a8c7fa;
  box-shadow: 0 0 0 3px rgba(168, 199, 250, 0.15);
}
.contact-form-wrapper .form-input::placeholder {
  color: #999999;
}
.contact-form-wrapper .form-input:invalid:not(:placeholder-shown) {
  border-color: #f5a5a5;
  background-color: #fff5f5;
}
.contact-form-wrapper .form-input:valid:not(:placeholder-shown) {
  border-color: #a5d4a5;
  background-color: #f5fff5;
}
.contact-form-wrapper .form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.contact-form-wrapper select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230a5dc2' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-form-wrapper .form-error {
  font-size: 0.875rem;
  color: #c62828;
  min-height: 20px;
  display: none;
}
.contact-form-wrapper .form-error.show {
  display: block;
}
.contact-form-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  color: #041e49;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 199, 250, 0.25);
}
.contact-form-wrapper .btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 199, 250, 0.35);
  background: linear-gradient(135deg, #7cacf8 0%, #4c8df6 100%);
}
.contact-form-wrapper .btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.contact-form-wrapper .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-form-wrapper .btn-primary i {
  font-size: 1rem;
}
.contact-form-wrapper .form-message {
  padding: 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}
.contact-form-wrapper .form-message.success {
  display: block;
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #c8e6c9;
}
.contact-form-wrapper .form-message.error {
  display: block;
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ffcdd2;
}

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-header {
    padding: 30px 20px;
  }
  .contact-header h1 {
    font-size: 2rem;
  }
  .contact-header .contact-intro {
    font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .contact-section {
    padding: 20px 16px;
  }
  .contact-container {
    border-radius: 16px;
  }
  .contact-header {
    padding: 24px 20px;
  }
  .contact-header h1 {
    font-size: 1.75rem;
  }
  .contact-content {
    padding: 24px 20px;
    gap: 24px;
  }
  .contact-info__item {
    padding: 20px;
  }
  .contact-info__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .contact-info__icon svg {
    width: 20px;
    height: 20px;
  }
  .contact-form-wrapper .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .contact-form-wrapper .btn-primary {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}
.terms-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.terms-container {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.terms-header {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}
.terms-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #ffffff;
}
.terms-header .terms-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

.terms-content {
  padding: 40px;
}
.terms-content .terms-section-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}
.terms-content .terms-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.terms-content .terms-section-item h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 16px;
  line-height: 1.4;
}
.terms-content .terms-section-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin: 0 0 16px;
}
.terms-content .terms-section-item p:last-child {
  margin-bottom: 0;
}
.terms-content .terms-section-item p strong {
  font-weight: 600;
  color: #041e49;
}
.terms-content .terms-section-item p a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.terms-content .terms-section-item p a:hover {
  color: #764ba2;
  text-decoration: underline;
}
.terms-content .terms-section-item ul {
  margin: 16px 0;
  padding-left: 24px;
}
.terms-content .terms-section-item ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 12px;
}
.terms-content .terms-section-item ul li:last-child {
  margin-bottom: 0;
}

.terms-footer {
  padding: 30px 40px;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.terms-footer .terms-updated {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}
.terms-footer .terms-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.terms-footer .terms-links a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.terms-footer .terms-links a:hover {
  color: #764ba2;
  text-decoration: underline;
}
.terms-footer .terms-links span {
  color: #cccccc;
}

@media (max-width: 768px) {
  .terms-section {
    padding: 20px 16px;
  }
  .terms-header {
    padding: 30px 20px;
  }
  .terms-header h1 {
    font-size: 2rem;
  }
  .terms-header .terms-intro {
    font-size: 1rem;
  }
  .terms-content {
    padding: 30px 20px;
  }
  .terms-content .terms-section-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .terms-content .terms-section-item h2 {
    font-size: 1.3rem;
  }
  .terms-content .terms-section-item p {
    font-size: 0.95rem;
  }
  .terms-content .terms-section-item ul {
    padding-left: 20px;
  }
  .terms-content .terms-section-item ul li {
    font-size: 0.95rem;
  }
  .terms-footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .terms-footer .terms-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .terms-footer .terms-links span {
    display: none;
  }
}
.privacy-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-container {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.privacy-header {
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}
.privacy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #ffffff;
}
.privacy-header .privacy-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

.privacy-content {
  padding: 40px;
}
.privacy-content .privacy-section-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}
.privacy-content .privacy-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.privacy-content .privacy-section-item h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 16px;
  line-height: 1.4;
}
.privacy-content .privacy-section-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #041e49;
  margin: 16px 0 8px;
  line-height: 1.4;
}
.privacy-content .privacy-section-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin: 0 0 16px;
}
.privacy-content .privacy-section-item p:last-child {
  margin-bottom: 0;
}
.privacy-content .privacy-section-item p strong {
  font-weight: 600;
  color: #041e49;
}
.privacy-content .privacy-section-item p a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.privacy-content .privacy-section-item p a:hover {
  color: #764ba2;
  text-decoration: underline;
}
.privacy-content .privacy-section-item ul {
  margin: 16px 0;
  padding-left: 24px;
}
.privacy-content .privacy-section-item ul li {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 12px;
}
.privacy-content .privacy-section-item ul li:last-child {
  margin-bottom: 0;
}
.privacy-content .privacy-section-item ul li h3 {
  margin-top: 0;
}
.privacy-content .privacy-section-item ul li p {
  margin-top: 8px;
}

.privacy-footer {
  padding: 30px 40px;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.privacy-footer .privacy-updated {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}
.privacy-footer .privacy-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.privacy-footer .privacy-links a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.privacy-footer .privacy-links a:hover {
  color: #764ba2;
  text-decoration: underline;
}
.privacy-footer .privacy-links span {
  color: #cccccc;
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 20px 16px;
  }
  .privacy-header {
    padding: 30px 20px;
  }
  .privacy-header h1 {
    font-size: 2rem;
  }
  .privacy-header .privacy-intro {
    font-size: 1rem;
  }
  .privacy-content {
    padding: 30px 20px;
  }
  .privacy-content .privacy-section-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .privacy-content .privacy-section-item h2 {
    font-size: 1.3rem;
  }
  .privacy-content .privacy-section-item h3 {
    font-size: 1.1rem;
  }
  .privacy-content .privacy-section-item p {
    font-size: 0.95rem;
  }
  .privacy-content .privacy-section-item ul {
    padding-left: 20px;
  }
  .privacy-content .privacy-section-item ul li {
    font-size: 0.95rem;
  }
  .privacy-footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .privacy-footer .privacy-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .privacy-footer .privacy-links span {
    display: none;
  }
}
.packs-header {
  margin-bottom: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #d3e3fd 0%, #b8d4fa 100%);
  border-radius: 20px;
  color: #041e49;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.packs-header__content {
  max-width: 800px;
  margin: 0 auto;
}
.packs-header .packs-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #041e49;
}
.packs-header .packs-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #2d312f;
}
.packs-header .packs-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.packs-header .packs-stats .packs-count {
  font-size: 0.95rem;
  background: rgba(168, 199, 250, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  color: #041e49;
  font-weight: 500;
}

.packs-filters {
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e9ecef;
}
.packs-filters__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.packs-filters .packs-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}
.packs-filters .packs-sort__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #041e49;
}
.packs-filters .packs-sort__options {
  display: flex;
  gap: 8px;
}
.packs-filters .packs-sort__option {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d312f;
  text-decoration: none;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.packs-filters .packs-sort__option:hover {
  background: #eff2ef;
  border-color: #d3e3fd;
  color: #041e49;
}
.packs-filters .packs-sort__option.active {
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  color: #041e49;
  border-color: #7cacf8;
  font-weight: 600;
}

.cursors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.cursors-grid .cursor-card-wrapper {
  transition: transform 0.3s ease;
}
.cursors-grid .cursor-card-wrapper:hover {
  transform: translateY(-4px);
}

.packs-section .cursors-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1600px) {
  .packs-section .cursors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  .packs-section .cursors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .packs-section .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .packs-section .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.packs-ads-top,
.packs-ads-bottom {
  margin: 30px 0;
  text-align: center;
}

.packs-ads-inline {
  grid-column: 1/-1;
  margin: 20px 0;
  text-align: center;
}

.packs-empty {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}
.packs-empty__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #d3e3fd;
}
.packs-empty__icon svg {
  width: 100%;
  height: 100%;
}
.packs-empty__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 12px;
}
.packs-empty__text {
  font-size: 1rem;
  color: #2d312f;
  margin: 0;
}

.packs-pagination {
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .packs-section {
    padding: 20px 16px;
  }
  .packs-header {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .packs-header .packs-title {
    font-size: 2rem;
  }
  .packs-header .packs-description {
    font-size: 1rem;
  }
  .packs-header .packs-stats {
    flex-direction: column;
    gap: 12px;
  }
  .packs-filters {
    padding: 16px;
  }
  .packs-filters__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .packs-filters .packs-sort {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .packs-filters .packs-sort__options {
    width: 100%;
    flex-wrap: wrap;
  }
  .packs-filters .packs-sort__option {
    flex: 1;
    min-width: 100px;
    text-align: center;
  }
  .packs-section .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .cursors-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
  .packs-empty {
    padding: 60px 20px;
  }
  .packs-empty__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .packs-empty__title {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .packs-section .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .packs-header .packs-title {
    font-size: 1.75rem;
  }
}
.categories-section {
  padding: 40px 20px;
  max-width: 1344px;
  margin: 0 auto;
}

.categories-header {
  margin-bottom: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  color: #ffffff;
  text-align: center;
}
.categories-header__content {
  max-width: 800px;
  margin: 0 auto;
}
.categories-header .categories-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #ffffff;
}
.categories-header .categories-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 20px;
  opacity: 0.95;
}
.categories-header .categories-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.categories-header .categories-stats .categories-count {
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.categories-filters {
  margin-bottom: 30px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.categories-filters__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.categories-filters .categories-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}
.categories-filters .categories-sort__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #041e49;
}
.categories-filters .categories-sort__options {
  display: flex;
  gap: 8px;
}
.categories-filters .categories-sort__option {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666666;
  text-decoration: none;
  background: #f8f9fa;
  transition: all 0.3s ease;
}
.categories-filters .categories-sort__option:hover {
  background: #e9ecef;
  color: #041e49;
}
.categories-filters .categories-sort__option.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.collections-grid .collection {
  transition: transform 0.3s ease;
}
.collections-grid .collection:hover {
  transform: translateY(-4px);
}

.categories-ads-top,
.categories-ads-bottom {
  margin: 30px 0;
  text-align: center;
}

.categories-ads-inline {
  grid-column: 1/-1;
  margin: 20px 0;
  text-align: center;
}

.categories-empty {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.categories-empty__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #cccccc;
}
.categories-empty__icon svg {
  width: 100%;
  height: 100%;
}
.categories-empty__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 12px;
}
.categories-empty__text {
  font-size: 1rem;
  color: #666666;
  margin: 0;
}

@media (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .categories-section {
    padding: 20px 16px;
  }
  .categories-header {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .categories-header .categories-title {
    font-size: 2rem;
  }
  .categories-header .categories-description {
    font-size: 1rem;
  }
  .categories-header .categories-stats {
    flex-direction: column;
    gap: 12px;
  }
  .categories-filters {
    padding: 16px;
  }
  .categories-filters__content {
    flex-direction: column;
    align-items: flex-start;
  }
  .categories-filters .categories-sort {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .categories-filters .categories-sort__options {
    width: 100%;
    flex-wrap: wrap;
  }
  .categories-filters .categories-sort__option {
    flex: 1;
    min-width: 100px;
    text-align: center;
  }
  .collections-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .categories-empty {
    padding: 60px 20px;
  }
  .categories-empty__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .categories-empty__title {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .categories-header .categories-title {
    font-size: 1.75rem;
  }
}
.search-section {
  padding: 40px 20px;
  max-width: 1344px;
  margin: 0 auto;
}

.search-header {
  margin-bottom: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #d3e3fd 0%, #b8d4fa 100%);
  border-radius: 20px;
  color: #041e49;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.search-header__content {
  max-width: 800px;
  margin: 0 auto;
}
.search-header .search-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #041e49;
}
.search-header .search-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #2d312f;
}
.search-header .search-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.search-header .search-stats .search-count {
  font-size: 0.95rem;
  background: rgba(168, 199, 250, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  color: #041e49;
  font-weight: 500;
}

.search-form-container {
  margin-bottom: 40px;
  padding: 0 20px;
}

.search-form-page {
  max-width: 800px;
  margin: 0 auto;
}
.search-form-page__wrapper {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.search-form-page__label {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.search-form-page__icon {
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  color: #a8c7fa;
  pointer-events: none;
  z-index: 2;
  transition: color 0.3s ease;
}
.search-form-page__input {
  width: 100%;
  height: 56px;
  padding: 0 60px 0 56px;
  border: 2px solid #d3e3fd;
  border-radius: 50px;
  background: #ffffff;
  color: #041e49;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  outline: none;
  font-family: inherit;
}
.search-form-page__input::placeholder {
  color: #6b7280;
  font-weight: 400;
}
.search-form-page__input:focus {
  border-color: #7cacf8;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(124, 172, 248, 0.2);
}
.search-form-page__input:focus ~ .search-form-page__icon {
  color: #7cacf8;
}
.search-form-page__input:hover:not(:focus) {
  border-color: #b8d4fa;
  background: #fafbfc;
}
.search-form-page__clear {
  position: absolute;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: transparent;
  border-radius: 50%;
  color: #6b7280;
  transition: all 0.2s ease;
  z-index: 3;
}
.search-form-page__clear:hover {
  background: rgba(168, 199, 250, 0.2);
  color: #041e49;
}
.search-form-page__clear i {
  font-size: 14px;
}
.search-form-page__submit {
  height: 56px;
  padding: 0 32px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  color: #041e49;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(168, 199, 250, 0.25);
  font-family: inherit;
}
.search-form-page__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 199, 250, 0.35);
  background: linear-gradient(135deg, #7cacf8 0%, #4c8df6 100%);
}
.search-form-page__submit:active {
  transform: translateY(0);
}
.search-form-page__submit i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .search-form-container {
    padding: 0;
    margin-bottom: 30px;
  }
  .search-form-page__wrapper {
    flex-direction: column;
    gap: 12px;
  }
  .search-form-page__submit {
    width: 100%;
  }
}
.search-section .cursors-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1600px) {
  .search-section .cursors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  .search-section .cursors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .search-section .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .search-section .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.cursors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.cursors-grid .cursor-card-wrapper {
  transition: transform 0.3s ease;
}
.cursors-grid .cursor-card-wrapper:hover {
  transform: translateY(-4px);
}

.search-ads-top,
.search-ads-bottom {
  margin: 30px 0;
  text-align: center;
}

.search-ads-inline {
  grid-column: 1/-1;
  margin: 20px 0;
  text-align: center;
}

.search-empty {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}
.search-empty__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #d3e3fd;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-empty__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 12px;
}
.search-empty__text {
  font-size: 1rem;
  color: #2d312f;
  margin: 0 0 24px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.search-empty__action {
  margin-top: 24px;
}
.search-empty__action .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  color: #041e49;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 199, 250, 0.25);
}
.search-empty__action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 199, 250, 0.35);
  background: linear-gradient(135deg, #7cacf8 0%, #4c8df6 100%);
}

@media (max-width: 768px) {
  .search-section {
    padding: 20px 16px;
  }
  .search-header {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .search-header .search-title {
    font-size: 2rem;
  }
  .search-header .search-description {
    font-size: 1rem;
  }
  .search-header .search-stats {
    flex-direction: column;
    gap: 12px;
  }
  .search-section .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .cursors-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .search-empty {
    padding: 60px 20px;
  }
  .search-empty__icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .search-empty__title {
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .search-section .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cursors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .search-header .search-title {
    font-size: 1.75rem;
  }
}
.about-section {
  padding: 40px 20px;
  max-width: 1344px;
  margin: 0 auto;
  background-image: linear-gradient(to right, #ffffff, #fbfbfc, #f6f8fa, #f1f5f7, #ffffff);
}

.about-header {
  margin-bottom: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #d3e3fd 0%, #b8d4fa 100%);
  border-radius: 20px;
  color: #041e49;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.about-header__content {
  max-width: 800px;
  margin: 0 auto;
}
.about-header .about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: #041e49;
}
.about-header .about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  color: #2d312f;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-intro {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  text-align: center;
}
.about-intro__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041e49;
  font-size: 2rem;
}
.about-intro__title {
  font-size: 2rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 20px;
}
.about-intro__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2d312f;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-features__title {
  font-size: 2rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 30px;
  text-align: center;
}
.about-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about-feature {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  text-align: center;
  transition: all 0.3s ease;
}
.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-color: #d3e3fd;
}
.about-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041e49;
  font-size: 1.5rem;
}
.about-feature__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #041e49;
  margin: 0 0 12px;
}
.about-feature__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #2d312f;
  margin: 0;
}

.about-collections {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}
.about-collections__title {
  font-size: 2rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 12px;
  text-align: center;
}
.about-collections__description {
  font-size: 1.1rem;
  color: #2d312f;
  margin: 0 0 30px;
  text-align: center;
}
.about-collections__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.about-collection-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.about-collection-item:hover {
  background: #eff2ef;
  border-color: #d3e3fd;
  transform: translateX(4px);
}
.about-collection-item__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041e49;
  font-size: 0.9rem;
}
.about-collection-item__name {
  font-size: 1rem;
  color: #041e49;
  font-weight: 500;
}

.about-usage {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}
.about-usage__title {
  font-size: 2rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 12px;
  text-align: center;
}
.about-usage__description {
  font-size: 1.1rem;
  color: #2d312f;
  margin: 0 0 40px;
  text-align: center;
}
.about-usage__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.about-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.about-step__number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #041e49;
  font-size: 1.5rem;
  font-weight: 700;
}
.about-step__content {
  flex: 1;
  padding-top: 4px;
}
.about-step__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #041e49;
  margin: 0 0 8px;
}
.about-step__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #2d312f;
  margin: 0;
}

.about-cta {
  background: linear-gradient(135deg, #d3e3fd 0%, #b8d4fa 100%);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.about-cta__content {
  max-width: 700px;
  margin: 0 auto;
}
.about-cta__title {
  font-size: 2rem;
  font-weight: 700;
  color: #041e49;
  margin: 0 0 16px;
}
.about-cta__text {
  font-size: 1.1rem;
  color: #2d312f;
  margin: 0 0 32px;
  line-height: 1.6;
}
.about-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #a8c7fa 0%, #7cacf8 100%);
  color: #041e49;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 199, 250, 0.25);
}
.about-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 199, 250, 0.35);
  background: linear-gradient(135deg, #7cacf8 0%, #4c8df6 100%);
}
.about-cta__button i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .about-section {
    padding: 20px 16px;
  }
  .about-header {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  .about-header .about-title {
    font-size: 2rem;
  }
  .about-header .about-description {
    font-size: 1rem;
  }
  .about-content {
    gap: 40px;
  }
  .about-intro {
    padding: 30px 20px;
  }
  .about-intro__icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .about-intro__title {
    font-size: 1.75rem;
  }
  .about-intro__text {
    font-size: 1rem;
  }
  .about-features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-feature {
    padding: 24px;
  }
  .about-collections {
    padding: 30px 20px;
  }
  .about-collections__list {
    grid-template-columns: 1fr;
  }
  .about-usage {
    padding: 30px 20px;
  }
  .about-usage__steps {
    gap: 20px;
  }
  .about-step {
    gap: 16px;
  }
  .about-step__number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.25rem;
  }
  .about-cta {
    padding: 40px 30px;
  }
  .about-cta__title {
    font-size: 1.75rem;
  }
  .about-cta__text {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .about-header .about-title {
    font-size: 1.75rem;
  }
  .about-intro__title {
    font-size: 1.5rem;
  }
  .about-features__title {
    font-size: 1.75rem;
  }
  .about-collections__title {
    font-size: 1.75rem;
  }
  .about-usage__title {
    font-size: 1.75rem;
  }
  .about-cta__title {
    font-size: 1.5rem;
  }
}
.alert-alert #fail .icon {
  background-color: #E44B5E;
}

.alert-alert.show section {
  -webkit-animation: slideInTop 0.5s linear forwards;
  animation: slideInTop 0.5s linear forwards;
  transform: translateX(0%);
}

@-webkit-keyframes slideInTop {
  0% {
    transform: translateX(500px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInTop {
  0% {
    transform: translateX(500px);
  }
  100% {
    transform: translateX(0);
  }
}
