* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f0f2f5;
  color: #2d1a4b;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.site-header {
  width: 100%;
  background: #1a0b3a;
  padding: 16px 0;
}

.head-line {
  width: 100%;
}

.head-line-w {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.top-menu {
  display: flex;
  align-items: center;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 28px;
}

.menu-item {
  position: relative;
}

.menu-link {
  color: #e6f0ff;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.menu-link:hover {
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  color: #fff;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a0b3a;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
  min-width: 200px;
}

.menu-item-dropdown:hover .submenu {
  display: block;
}

.submenu li {
  list-style: none;
}

.submenu a {
  display: block;
  padding: 10px;
  color: #e6f0ff;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.submenu a:hover {
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  color: #fff;
}

.mob-menu {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 20;
}

.mob-menu span {
  display: block;
  width: 24px;
  height: 3px;
  background: #e6f0ff;
  margin-bottom: 5px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mob-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mob-menu.active span:nth-child(2) {
  opacity: 0;
}

.mob-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Fallback for no JavaScript */
.no-js .top-menu {
  display: flex !important;
}

.no-js .mob-menu {
  display: none !important;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(145deg, #2d1a4b 0%, #1cdce3 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 75, 156, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  color: #e6f0ff;
  max-width: 650px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.search-form {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.search-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  font-size: 1.05rem;
  background: transparent;
  color: #2d1a4b;
  outline: none;
  min-width: 0;
  width: 100%;
}

.search-form input::placeholder {
  color: #5a5a5a;
  opacity: 0.8;
}

.search-form input:focus {
  background: rgba(255, 255, 255, 0.95);
}

.search-btn {
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  border: none;
  padding: 0 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: linear-gradient(90deg, #1cdce3, #ff4b9c);
}

/* AUTOCOMPLETE DROPDOWN (for jQuery UI autocomplete) */
ul.ui-autocomplete {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: none;
  max-height: 320px;
  z-index: 1000;
  position: absolute;
  margin-top: 8px !important;
}

ul.ui-autocomplete li {
  padding: 14px 24px;
  font-size: 1rem;
  color: #2d1a4b;
  border-bottom: 1px solid #f0f2f5;
  cursor: pointer;
  background: none;
  transition: background 0.2s ease;
  list-style: none !important;
  background-image: none !important;
}

ul.ui-autocomplete li:last-child {
  border-bottom: none;
}

ul.ui-autocomplete li.ui-state-focus,
ul.ui-autocomplete li:hover {
  background: linear-gradient(145deg, #ff4b9c, #1cdce3);
  color: #fff;
}

/* FEATURES SECTION */
.features-section {
  padding: 70px 0;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: #f0f2f5;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #ff4b9c, #1cdce3);
  -webkit-background-clip: text;
  -moz-background-clip: text-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #2d1a4b;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 1rem;
  color: #5a5a5a;
}

/* CREATORS SECTION */
.creators-section {
  padding: 90px 0;
  background: #f0f2f5;
}

.section-title {
  font-size: 2.8rem;
  color: #2d1a4b;
  text-align: center;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.15rem;
  color: #5a5a5a;
  text-align: center;
  max-width: 750px;
  margin: 0 auto 48px;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.creator-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 620px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 360px;
}

.creator-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creator-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
}

.creator-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #28a745, #34d058);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 14px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  text-transform: uppercase;
}

.creator-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.creator-card:hover .creator-image {
  transform: scale(1.06);
}

.creator-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.creator-name-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.creator-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d1a4b;
  letter-spacing: 0.5px;
}

.creator-flag img {
  width: 30px;
  height: 22px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.creator-desc {
  font-size: 0.95rem;
  color: #5a5a5a;
  text-align: center;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.7;
}

.creator-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.creator-btn:hover {
  background: linear-gradient(90deg, #1cdce3, #ff4b9c);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.creator-btn svg {
  transition: transform 0.3s ease;
}

.creator-btn:hover svg {
  transform: translateX(5px);
}

/* PAGINATION */
.pagination {
  margin-top: 48px;
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  background: linear-gradient(90deg, #fff, #f0f2f5);
  color: #2d1a4b;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0,0.1);
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pagination .page-numbers.current {
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0,0.2);
}

.pagination .page-numbers.dots {
  background: none;
  box-shadow: none;
  color: #5a5a5a;
  font-weight: normal;
  cursor: default;
  text-align: center;
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  padding: 0 24px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pagination .page-numbers.prev:hover svg,
.pagination .page-numbers.next:hover svg {
  transform: translateX(6px);
}

.pagination .page-numbers.prev svg,
.pagination .page-numbers svg.next {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.pagination .page-numbers.prev svg {
  transform: rotate(-180deg);
}

/* MAIN CONTENT SECTION */
.main-content-section {
  padding: 70px 0;
  margin-top: 40px; /* Spacing above section */
  background: none; /* Removed background */
}

.main-content-wrapper {
  background: none; /* Removed background wrapper */
  backdrop-filter: none; /* Removed blur */
  padding: 0; /* Adjusted padding */
  box-shadow: none; /* Removed shadow */
}

.main-content-title {
  font-size: 2.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}

.main-content-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d1a4b;
  margin: 32px 0 24px;
}

.main-content-desc {
  font-size: 1.15rem;
  color: #5a5a5a;
  margin-bottom: 24px;
  line-height: 1.8;
}

.main-content-benefits {
  list-style: none;
  margin-bottom: 32px;
}

.main-content-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-content-benefits li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2rem;
  background: linear-gradient(145deg, #ff4b9c, #1cdce3);
  -webkit-background-clip: text;
  -moz-background-clip: text-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-content-benefits div {
  flex: 1;
}

.main-content-benefits strong {
  color: #2d1a4b;
  font-weight: bold;
}

.main-content-benefits em {
  color: #ff4b9c;
  font-style: normal;
}

.free-onlyfans-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 16px 32px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.free-onlyfans-btn:hover {
  background: linear-gradient(90deg, #1cdce3, #ff4b9c);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* FAQ SECTION */
.faq-section {
  padding: 70px 0;
  background: #fff;
}

.faq-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f2f5;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d1a4b;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  color: #fff;
}

.faq-question[aria-expanded="true"] {
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  color: #fff;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 1rem;
  color: #5a5a5a;
  padding: 16px 0;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content height */
  padding: 16px 24px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(90deg, #2d1a4b, #1cdce3);
  color: #e6f0ff;
  text-align: center;
  padding: 36px 0;
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #e6f0ff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(90deg, #ff4b9c, #1cdce3);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-desc {
    font-size: 1.15rem;
    max-width: 550px;
  }

  .search-form {
    max-width: 450px;
  }

  .search-form input {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .search-btn {
    padding: 0 20px;
  }

  .autocomplete-suggestions {
    max-height: 250px;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }

  .creators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .creator-card {
    height: 580px;
    max-width: 100%;
  }

  .creator-image-wrapper {
    height: 360px;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .creator-name {
    font-size: 1.5rem;
  }

  .creator-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .menu-list {
    gap: 20px;
  }

  .menu-link {
    font-size: 1rem;
    padding: 7px 14px;
  }

  .pagination {
    margin-bottom: 40px;
  }

  .main-content-section {
    padding: 50px 0;
    margin-top: 30px;
  }

  .main-content-title {
    font-size: 2.3rem;
  }

  .main-content-subtitle {
    font-size: 1.6rem;
  }

  .main-content-desc {
    font-size: 1.05rem;
  }

  .free-onlyfans-btn {
    font-size: 1.1rem;
    padding: 14px 28px;
  }

  .faq-section {
    padding: 50px 0;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 16px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    max-height: 250px; /* Slightly increased for tablet */
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 1rem;
    max-width: 90%;
  }

  .search-form {
    max-width: 100%;
  }

  .search-form input {
    padding: 14px 20px;
    font-size: 1rem;
  }

  .search-btn {
    padding: 0 20px;
  }

  .autocomplete-suggestions {
    max-height: 200px;
  }

  .head-line-w {
    position: relative;
  }

  .top-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: linear-gradient(145deg, #2d1a4b 0%, #1cdce3 30%);
    padding: 20px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: right 0.3s ease-in-out;
  }

  .top-menu.active {
    right: 0;
  }

  .menu-list {
    flex-direction: column;
    gap: 12px;
  }

  .menu-link {
    display: block;
    padding: 10px 12px;
    font-size: 1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .menu-link:hover {
    background: linear-gradient(90deg, #ff4b9c, #1cdce3);
    transform: translateX(8px);
  }

  .submenu {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 6px;
    padding: 6px;
  }

  .menu-item-dropdown.active .submenu {
    display: block;
  }

  .submenu a {
    padding: 8px 14px;
    font-size: 0.9rem;
    color: #e6f0ff;
  }

  .submenu a:hover {
    background: rgba(255, 75, 156, 0.3);
  }

  .mob-menu {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 20;
  }

  .mob-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: #e6f0ff;
    margin: 4px 0;
    border-radius: 2px;
  }

  .logo {
    height: 42px;
  }

  .features-section {
    padding: 50px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 24px;
  }

  .creators-section {
    padding: 70px 0;
  }

  .creators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .creator-card {
    height: auto;
    max-width: 100%;
    flex-direction: column;
  }

  .creator-image-wrapper {
    height: 220px;
  }

  .creator-image {
    object-fit: cover;
    object-position: center;
  }

  .creator-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .creator-name-wrapper {
    margin-bottom: 8px;
  }

  .creator-name {
    font-size: 1.1rem;
  }

  .creator-flag img {
    width: 20px;
    height: 15px;
  }

 .creator-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    max-height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .creator-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    margin-top: auto;
  }

  .creator-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    top: 12px;
    right: 12px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 28px 0;
    font-size: 0.9rem;
  }

  .social-links {
    gap: 10px;
    margin-top: 12px;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-icon {
    width: 16px;
    height: 16px;
  }

  .pagination {
    margin-bottom: 30px;
  }

  .main-content-section {
    padding: 40px 0;
    margin-top: 20px;
  }

  .main-content-title {
    font-size: 1.8rem;
  }

  .main-content-subtitle {
    font-size: 1.4rem;
  }

  .main-content-desc {
    font-size: 0.95rem;
  }

  .main-content-benefits li {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    margin-bottom: 12px;
  }

  .benefit-icon {
    font-size: 1.8rem;
  }

  .free-onlyfans-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-question {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .faq-answer p {
    font-size: 0.9rem;
    padding: 12px 0;
  }

  .faq-item.active .faq-answer {
    max-height: 300px; /* Increased for mobile to handle longer content */
  }
}

@media (max-width: 640px) {
  .top-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: linear-gradient(145deg, #2d1a4b 0%, #1cdce3 30%);
    padding: 20px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: right 0.3s cubic-bezier(.52,.01,.47,1.02);
    /* display: block — всегда, не none! */
  }
  .top-menu.active {
    right: 0;
  }
}
