* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #0a0a0a;
}

body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  color: #e0e0e0;
  background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  line-height: 1.6;
}

/* Cosmic particles background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 20% 30%, rgba(100, 200, 255, 0.1) 0%, transparent 30%),
      radial-gradient(circle at 80% 70%, rgba(255, 100, 200, 0.1) 0%, transparent 30%),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.5"/></svg>') repeat;
  background-size: 200px 200px;
  animation: twinkle 200s linear infinite;
  z-index: -2;
}

@keyframes twinkle {
  0% { background-position: 0 0; }
  100% { background-position: 10000px 5000px; }
}

/* Nebula overlay */
body::after {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
      radial-gradient(circle at 30% 30%, rgba(65, 105, 225, 0.15), transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(220, 20, 60, 0.15), transparent 50%);
  animation: nebulaFlow 60s ease infinite alternate;
  z-index: -1;
  mix-blend-mode: overlay;
}

@keyframes nebulaFlow {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(5%, 10%) rotate(5deg); }
  100% { transform: translate(-5%, -10%) rotate(-5deg); }
}

header {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(100, 200, 255, 0.5), transparent);
}

.AFfreeText_freeText__1Jhir { 
  background: rgba(20, 30, 40, 0.7);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 200, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.AFfreeText_freeText__1Jhir:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

header img {
  max-width: 180px;
  margin: 20px auto;
  display: block;
  border-radius: 50%;
  border: 3px solid rgba(100, 200, 255, 0.5);
  box-shadow: 0 0 20px rgba(100, 200, 255, 0.3), 0 0 40px rgba(100, 200, 255, 0.2);
  transition: all 0.5s ease;
  filter: hue-rotate(0deg);
}

header img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(100, 200, 255, 0.5), 0 0 60px rgba(100, 200, 255, 0.3);
  filter: hue-rotate(360deg);
  animation: rainbowBorder 3s linear infinite;
}

@keyframes rainbowBorder {
  0% { border-color: rgba(100, 200, 255, 0.5); }
  33% { border-color: rgba(255, 100, 200, 0.5); }
  66% { border-color: rgba(200, 255, 100, 0.5); }
  100% { border-color: rgba(100, 200, 255, 0.5); }
}

.body {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}

.body-container {
  margin-top: 30px;
  width: 100%;
  max-width: 85%;
  padding: 20px;
}

.banner-img {
  width: 35%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.banner-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  filter: brightness(1) contrast(1.2);
}

.wrapp {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.wrapp-text {
  display: flex;
  gap: 15px;
  justify-content: start;
  align-items: center;
}

.wrapp h3 {
  font-size: 48px;
  background: linear-gradient(90deg, #64c8ff, #ff64c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.body-banner {
  padding: 30px;
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
  animation: fadeInUp 1s ease-in;
  background: rgba(15, 25, 35, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 200, 255, 0.1);
}

.body-banner .wrapp p,
.body-banner h3 {
  margin: 0;
  color: #d0d0d0;
}

.wrapp-con {
  display: flex;
  gap: 50px;
}

.wrapp-con-el {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 15px;
}

.wrapp-con-el img {
  width: 36px;
  border-radius: 50%;
  background: rgba(100, 200, 255, 0.2);
  padding: 5px;
  transition: all 0.3s ease;
}

.wrapp-con-el:hover img {
  transform: rotate(15deg) scale(1.1);
  background: rgba(100, 200, 255, 0.4);
}

.wrapp-con-el p {
  margin: 0;
  font-weight: 500;
}

.rating-wrapp {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 8px;
}

ul {
  margin-left: 30px;
  list-style: none;
}

ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #64c8ff;
  font-size: 18px;
}

.product {
  position: relative;
  background: linear-gradient(145deg, rgba(30, 40, 50, 0.8), rgba(15, 20, 25, 0.9));
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(100, 200, 255, 0.1);
  transition: all 0.5s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(100, 200, 255, 0.3);
}

.mark {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #64c8ff, #ff64c8);
  color: #111;
  font-weight: bold;
  padding: 6px 20px;
  border-bottom-right-radius: 12px;
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.product h1 {
  font-size: 28px;
  background: linear-gradient(90deg, #64c8ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.product a {
  background: linear-gradient(45deg, #64c8ff, #ff64c8);
  padding: 12px 25px;
  color: #111;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(100, 200, 255, 0.3);
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.product a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(100, 200, 255, 0.4);
}

.product a:active {
  transform: translateY(1px);
}

.product-wrapp {
  display: flex;
  gap: 60px;
  align-items: center;
}

.product-wrapp img {
  width: 180px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.product-wrapp img:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.text-wrapp-area {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.text-wrapp-area h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin-top: 0;
  letter-spacing: 1px;
  color: #64c8ff;
}

.text-wrapp-area h3 {
  font-size: 24px;
  margin-top: 10px;
  color: #d0d0d0;
  font-weight: 400;
}

.faq {
  margin-top: 80px;
}

.faq-main-title {
  font-size: 36px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #64c8ff, #ff64c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-item {
  margin-bottom: 20px;
  background: rgba(20, 30, 40, 0.7);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(100, 200, 255, 0.1);
}

.faq-item:hover {
  border-color: rgba(100, 200, 255, 0.3);
}

.faq-title {
  padding: 20px;
  cursor: pointer;
  background: rgba(30, 40, 50, 0.5);
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  font-size: 18px;
  color: #f0f0f0;
}

.faq-title:hover {
  background: rgba(40, 50, 60, 0.6);
}

.faq-title::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #64c8ff;
  transition: all 0.3s ease;
}

.faq-title.active::after {
  content: "-";
  transform: translateY(-50%) rotate(0deg);
}

.faq-text {
  background: transparent;
  color: #d0d0d0;
  transition: all 0.5s ease;
  display: none;
  padding: 0 20px;
}

.faq-item.active .faq-text {
  padding: 20px;
  max-height: 500px;
  display: block;
}

.d-none {
  display: none;
}

.faq-title.active {
  background: rgba(40, 50, 60, 0.8);
}

.faq-title.active::after {
  content: "-";
}

.responsibility {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 36px;
  margin: 60px 0;
  text-align: center;
  background: linear-gradient(90deg, #64c8ff, #ff64c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.img-wrapp {
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: rgba(20, 30, 40, 0.7);
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(100, 200, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-img {
  transition: all 0.5s ease;
  filter: grayscale(30%) brightness(0.8);
}

.footer-img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: grayscale(0%) brightness(1.2);
}

.popup-18 {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 10, 15, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.popup-18-box {
  background: linear-gradient(145deg, rgba(30, 40, 50, 0.9), rgba(15, 20, 25, 0.95));
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(100, 200, 255, 0.2);
  backdrop-filter: blur(10px);
  animation: popupAppear 0.5s ease-out;
}

@keyframes popupAppear {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.popup-18-box h2 {
  background: linear-gradient(90deg, #64c8ff, #ff64c8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  font-size: 32px;
}

.popup-18-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.popup-18-buttons button {
  margin: 0;
  padding: 12px 30px;
  background: linear-gradient(45deg, #64c8ff, #ff64c8);
  color: #111;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(100, 200, 255, 0.3);
  min-width: 120px;
}

.popup-18-buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(100, 200, 255, 0.4);
}

.popup-18-buttons button:active {
  transform: translateY(1px);
}

.popup-18-buttons button:last-child {
  background: linear-gradient(45deg, #ff64c8, #64c8ff);
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(145deg, rgba(30, 40, 50, 0.95), rgba(15, 20, 25, 0.97));
  color: #d0d0d0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(100, 200, 255, 0.2);
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-buttons button {
  margin: 0;
  padding: 10px 20px;
  background: linear-gradient(45deg, #64c8ff, #ff64c8);
  color: #111;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(100, 200, 255, 0.3);
}

.cookie-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 200, 255, 0.4);
}

.cookie-buttons button:active {
  transform: translateY(1px);
}

footer {
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(10, 15, 20, 0.9), rgba(5, 10, 15, 1));
  color: #aaa;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(100, 200, 255, 0.5), transparent);
}

.footer {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-around;
  width: 90%;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer img {
  width: 180px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.footer img:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.footer-menu-item a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-menu-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #64c8ff, #ff64c8);
  transition: width 0.3s ease;
}

.footer-menu-item a:hover {
  color: #fff;
}

.footer-menu-item a:hover::after {
  width: 100%;
}

.footer-img img {
  width: 80px;
  height: auto;
  transition: all 0.5s ease;
}

.footer-img img:hover {
  transform: scale(1.2) rotate(10deg);
  filter: brightness(1.2) contrast(1.2);
}

.copyright {
  text-align: center;
  width: 100%;
  padding-top: 30px;
  border-top: 1px solid rgba(100, 200, 255, 0.1);
  font-size: 14px;
  color: #777;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 1200px) {
  .body-container {
      max-width: 90%;
  }
  
  .product-wrapp {
      gap: 40px;
  }
  
  .wrapp h3 {
      font-size: 42px;
  }
  
  .banner-img {
      width: 45%;
  }
  
  .faq-main-title {
      font-size: 32px;
  }
  
  .responsibility {
      font-size: 32px;
  }
}

@media (max-width: 992px) {
  .body-container {
      max-width: 95%;
  }
  
  .product-wrapp {
      flex-direction: column;
      text-align: center;
      gap: 30px;
  }
  
  .wrapp-con {
      flex-direction: column;
      gap: 20px;
  }
  
  .body-banner {
      flex-direction: column;
      align-items: center;
  }
  
  .banner-img {
      width: 60%;
  }
  
  .footer {
      gap: 40px;
  }
}

@media (max-width: 768px) {
  .AFfreeText_freeText__1Jhir {
      padding: 30px;
      border-radius: 14px;
  }
  
  header img {
      max-width: 150px;
  }
  
  .wrapp h3 {
      font-size: 36px;
  }
  
  .body-banner {
      padding: 20px;
      gap: 30px;
  }
  
  .banner-img {
      width: 80%;
  }
  
  .product {
      flex-direction: column;
      padding: 25px;
      gap: 25px;
  }
  
  .product-wrapp img {
      width: 140px;
  }
  
  .text-wrapp-area h2 {
      font-size: 28px;
  }
  
  .text-wrapp-area h3 {
      font-size: 20px;
  }
  
  .faq-main-title {
      font-size: 28px;
  }
  
  .faq-title {
      padding: 15px;
      font-size: 16px;
  }
  
  .responsibility {
      font-size: 28px;
      margin: 40px 0;
  }
  
  .img-wrapp {
      padding: 20px;
  }
  
  .footer-img img {
      width: 60px;
  }
  
  .popup-18-box {
      padding: 30px;
      max-width: 90%;
  }
  
  .popup-18-buttons {
      flex-direction: column;
      gap: 15px;
  }
}

@media (max-width: 576px) {
  .body-container {
      padding: 10px;
  }
  
  .AFfreeText_freeText__1Jhir {
      padding: 20px;
  }
  
  header img {
      max-width: 120px;
  }
  
  .wrapp h3 {
      font-size: 28px;
  }
  
  .banner-img {
      width: 100%;
  }
  
  .product {
      padding: 20px;
  }
  
  .product-wrapp img {
      width: 120px;
  }
  
  .text-wrapp-area h2 {
      font-size: 24px;
  }
  
  .faq-main-title {
      font-size: 24px;
  }
  
  .responsibility {
      font-size: 24px;
  }
  
  .footer {
      gap: 30px;
  }
  
  .footer-column {
      min-width: 150px;
  }
  
  .footer img {
      width: 140px;
  }
  
  #cookie-banner {
      flex-direction: column;
      text-align: center;
  }
  
  .cookie-buttons {
      width: 100%;
      flex-direction: column;
  }
  
  .cookie-buttons button {
      width: 100%;
  }
}