* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    color: #f5f5f5;
    background: linear-gradient(120deg, #1f1f1f, #111);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  
  /* Animated background */
  body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,0,150,0.1), transparent 60%),
                radial-gradient(circle at 70% 70%, rgba(0,255,255,0.1), transparent 60%);
    animation: moveBackground 20s linear infinite;
    z-index: -1;
  }
  @keyframes moveBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  header {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;

  }

  .AFfreeText_freeText__1Jhir { 
    background-color: #1a1a1a;
    border-radius: 50px;
    padding: 50px;
    margin-bottom: 50px;
  }

  header img {
    max-width: 200px;
    margin: 20px auto;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px #ff0066);
  }

  .body {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .body-container {
    margin-top: 50px;
    width: 100%;
    max-width: 80%;
    padding: 20px;
  }

  .banner-img {
    width: 30%;
    border-radius: 50px;
    filter: drop-shadow(0 0 10px #ff0066);
  }
  
  .wrapp {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .wrapp-text {
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: center;
  }

  .wrapp h3 {
    font-size: 55px;
  }
  /* Banner */
  .body-banner {
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-in;
  }
  
  .body-banner .wrapp p,
  .body-banner h3 {
    margin: 0;
  }
  
  .wrapp-con {
    display: flex;
    gap: 40px;
    
  }
  .wrapp-con-el {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .wrapp-con-el img {
    width: 32px;
    border-radius: 50%;
    background-color: #fff;
  }

  .wrapp-con-el p {
    margin: 0;
  }

  .rating-wrapp {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 5px;
}

ul {
    margin-left: 40px;
    list-style: linear-gradient(45deg, #ff0066, #ffcc00);
}
  
  /* Product */
  .product {
    position: relative; /* нужно для абсолютного позиционирования внутренних элементов */
    background: #111;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    box-shadow: 0 0 20px rgba(255, 0, 100, 0.1);
    overflow: hidden;
    align-items: center;
    justify-content: center;
  }
  
  .mark {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #ff0066, #ffcc00);
    color: #000;
    font-weight: bold;
    padding: 5px 15px;
    border-bottom-right-radius: 10px;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  .product h1 {
    font-size: 24px;
    color: #ffcc00;
  }
  .product a {
    background: linear-gradient(45deg, #ff0066, #ffcc00);
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  .product a:hover {
    transform: scale(1.05);
  }

  .product-wrapp {
    display: flex;
    gap: 50px;
    
    align-items: center;
    
  }

  .product-wrapp img {
    width: 150px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px #ff0066);
  }

  .text-wrapp-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .text-wrapp-area h2{
    font-size: 30px;
    text-transform: uppercase;
    margin-top: 40px;
  }

  .text-wrapp-area h3{
    font-size: 25px;
    margin-top: 10px;
  }
  
  /* FAQ */
  .faq {
    margin-top: 60px;
  }
  .faq-main-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffcc00;
    text-align: center;
  }
  .faq-item {
    margin-bottom: 15px;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
  }
  .faq-title {
    padding: 15px;
    cursor: pointer;
    background: #333;
    font-weight: bold;
    transition: background 0.3s;
  }
  .faq-title:hover {
    background: #444;
  }
  .faq-text {
    padding: 15px;
    background: #1a1a1a;
    color: #ddd;
    border-top: 1px solid #333;
    animation: slideDown 0.3s ease-in-out;
  }
  .d-none {
    display: none;
  }

  .responsibility {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 40px;
    margin: 50px;
  }

  .img-wrapp {
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: #3a3a3a;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
  }

  .footer-img {
  }
  
  /* Popup 18+ */
  .popup-18 {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .popup-18-box {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 100, 0.3);
  }
  .popup-18-box h2 {
    color: #ffcc00;
    margin-bottom: 10px;
  }
  .popup-18-buttons button {
    margin: 10px;
    padding: 10px 20px;
    background: #ff0066;
    color: #fff;
    border: none;
    border-radius: 6px;
    transition: background 0.3s;
  }
  .popup-18-buttons button:hover {
    background: #cc0052;
  }
  
  /* Cookie banner */
  #cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
  }
  .cookie-buttons button {
    margin-left: 10px;
    background: #ff0066;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
  }
  .cookie-buttons button:hover {
    background: #e6005c;
  }
  
  footer {
    padding: 40px 20px;
    background: #111;
    color: #aaa;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
  }
  /* Footer */
  .footer {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-around;
    width: 90%;
  }

  .footer img {
    width: 200px;
    border-radius: 50%;
  }

  .footer-menu-item a {
    color: #aaa;
    text-decoration: none;
  }
  .footer-menu-item a:hover {
    text-decoration: underline;
  }
  .footer-img img {
    width: 100px;
    height: auto;
  }
  .footer-img img:hover {
    transform: scale(1.1);
    opacity: 1;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
  }
  @keyframes fadeInUp {
    from {opacity: 0; transform: translateY(50px);}
    to {opacity: 1; transform: translateY(0);}
  }
  @keyframes slideDown {
    from {opacity: 0; max-height: 0;}
    to {opacity: 1; max-height: 500px;}
  }

  @media (max-width: 1024px) {
    .body-container {
      max-width: 90%;
      padding: 15px;
    }
  
    .product-wrapp {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  
    .product-wrapp img {
      width: 120px;
    }
  
    .wrapp h3 {
      font-size: 36px;
    }
  
    .banner-img {
      width: 50%;
    }
  
    .faq-main-title {
      font-size: 24px;
    }
  
    .responsibility {
      font-size: 30px;
      text-align: center;
    }
  
    .img-wrapp {
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .footer {
      flex-direction: column;
      gap: 20px;
    }
  
    .footer-column {
      text-align: center;
    }
  
    .footer img {
      width: 150px;
    }
  }
  
  /* ---------- Responsive: Phones ---------- */
  @media (max-width: 768px) {
    .AFfreeText_freeText__1Jhir {
      padding: 30px 20px;
      border-radius: 30px;
    }
  
    header img {
      max-width: 150px;
    }
  
    .body-banner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .wrapp-con {
      flex-direction: column;
      gap: 20px;
    }
  
    .text-wrapp-area h2 {
      font-size: 24px;
    }
  
    .text-wrapp-area h3 {
      font-size: 20px;
    }
  
    .faq-title {
      font-size: 16px;
    }
  
    .faq-text {
      font-size: 15px;
    }
  
    .popup-18-box {
      padding: 20px;
    }
  
    .cookie-buttons {
      flex-direction: column;
      gap: 10px;
    }
  
    .footer-img img {
      width: 60px;
    }
  
    .footer-menu-item {
      font-size: 15px;
    }
  
    .product {
      flex-direction: column;
      padding: 20px 10px;
      gap: 20px;
    }
  
    .product h1 {
      font-size: 20px;
    }
  
    .product a {
      font-size: 14px;
    }
  
    .banner-img {
      width: 80%;
    }
  
    .wrapp h3 {
      font-size: 28px;
    }
  
    .responsibility {
      font-size: 22px;
      margin: 30px 10px;
    }
  }