.vue3-marquee {
  display: flex !important;
  position: relative;
}

.vue3-marquee.horizontal {
  overflow-x: hidden !important;
  flex-direction: row !important;
  width: 100%;
  height: max-content;
}

.vue3-marquee.vertical {
  overflow-y: hidden !important;
  flex-direction: column !important;
  height: 100%;
  width: max-content;
}

.vue3-marquee:hover > .marquee {
  animation-play-state: var(--pauseOnHover);
}

.vue3-marquee:active > .marquee {
  animation-play-state: var(--pauseOnClick);
}

.vue3-marquee > .marquee {
  flex: 0 0 auto;
  min-width: var(--min-width);
  min-height: var(--min-height);
  z-index: 1;
  animation: var(--orientation) var(--duration) linear var(--delay) var(--loops);
  animation-play-state: var(--pauseAnimation);
  animation-direction: var(--direction);
}

.vue3-marquee.horizontal > .marquee {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.vue3-marquee.vertical > .marquee {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes scrollX {
  0% {
    transform: translate(0);
  }

  to {
    transform: translate(-100%);
  }
}

@keyframes scrollY {
  0% {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

.vue3-marquee > .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

.vue3-marquee > .transparent-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

.vue3-marquee > .overlay:before,
.vue3-marquee > .overlay:after {
  content: "";
  position: absolute;
  z-index: 2;
}

.vue3-marquee.horizontal > .overlay:before,
.vue3-marquee.horizontal > .overlay:after {
  background: linear-gradient(to right, var(--gradient-color));
  height: 100%;
  width: var(--gradient-length);
}

.vue3-marquee.vertical > .overlay:before,
.vue3-marquee.vertical > .overlay:after {
  background: linear-gradient(to bottom, var(--gradient-color));
  height: var(--gradient-length);
  width: 100%;
}

.vue3-marquee.horizontal > .overlay:after {
  transform: rotate(180deg);
}

.vue3-marquee.vertical > .overlay:after {
  transform: rotate(-180deg);
}

.vue3-marquee > .overlay:before {
  left: 0;
  top: 0;
}

.vue3-marquee.horizontal > .overlay:after {
  right: 0;
  top: 0;
}

.vue3-marquee.vertical > .overlay:after {
  left: 0;
  bottom: 0;
}

#overlay {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
}

#overlay-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
  box-sizing: border-box;
}

.lds-spinner {
  color: white;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: currentColor;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.hide {
  display: none !important;
}

.seo-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border: 3px solid #5227ff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(82, 39, 255, 0.1);
}
.seo-container {
  background: #fff;
}
.seo-section {
  margin-bottom: 50px;
}
.seo-h1 {
  font-size: 32px;
  font-weight: 700;
  color: #5227ff;
  margin-bottom: 30px;
  line-height: 1.4;
}
.seo-h2 {
  font-size: 28px;
  font-weight: 600;
  color: #5227ff;
  margin: 40px 0 20px 0;
  line-height: 1.3;
}
.seo-h3 {
  font-size: 22px;
  font-weight: 600;
  color: #5227ff;
  margin: 30px 0 15px 0;
  line-height: 1.3;
}
.seo-h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 12px 0;
}
.seo-h5 {
  font-size: 16px;
  font-weight: 600;
  color: #5227ff;
  margin: 20px 0 10px 0;
}
.seo-p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.seo-list {
  margin: 20px 0;
  padding-left: 30px;
}
.seo-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}
.seo-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}
.seo-feature {
  padding: 20px;
  border: 2px solid #5227ff;
  border-radius: 8px;
  background: #fff;
}
.seo-feature h4 {
  color: #5227ff;
  margin-bottom: 10px;
}
.seo-faq {
  margin: 20px 0;
  padding: 20px;
  background: #f8f9fa;
  border-left: 4px solid #5227ff;
}
.seo-faq h4 {
  color: #5227ff;
  margin-bottom: 10px;
}
.seo-review {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
}
.seo-review-author {
  font-weight: 600;
  color: #5227ff;
  margin-bottom: 8px;
}
.seo-review-text {
  font-style: italic;
  color: #555;
}
.seo-image {
  display: block;
  width: 800px;
  height: 400px;
  object-fit: cover;
  border: 3px solid #5227ff;
  border-radius: 8px;
  margin: 30px auto;
}
.seo-social {
  margin: 30px 0;
  text-align: center;
}
.seo-social-btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 5px;
  background: #5227ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}
.seo-social-btn:hover {
  background: #3d1bb8;
}
.seo-keyword {
  font-weight: 600;
  color: #5227ff;
}
.seo-link {
  color: #5227ff;
  text-decoration: underline;
}
.seo-link:hover {
  color: #3d1bb8;
}
.seo-cta {
  background: #f0e9ff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
  border: 2px solid #5227ff;
}
.seo-cta-button {
  background: #5227ff;
  color: #fff;
  padding: 15px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}
.seo-cta-button:hover {
  background: #3d1bb8;
}
