.btn-primary,
.section-title::after {
  background-color: var(--color-accent);
}
.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  transition: 0.3s;
}
.btn-primary,
.btn-secondary,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#preloader,
body {
  background-color: var(--color-bg-dark);
}
.preloader-content,
.section-subtitle,
.section-title {
  text-align: center;
}
.machine-body,
.section-title,
.tattoo-machine,
section {
  position: relative;
}
.copyright a,
.logo {
  text-decoration: none;
}
#header,
#preloader {
  top: 0;
  position: fixed;
}
.blog-read-more:hover,
.copyright a:hover,
.faq-popular-link:hover {
  text-decoration: underline;
}
.artist-img,
.author-img,
.blog-img,
.client-img,
.design-example img,
.jewelry-img,
.modal-artist-img,
.piercing-img,
.portfolio-img,
.shop-img,
.staff-img,
.upload-item img {
  object-fit: cover;
}
:root {
  --color-bg-dark: #0f0f10;
  --color-bg-light: #1a1a1d;
  --color-text-light: #f6f6f5;
  --color-text-muted: #b0b0b0;
  --color-accent: #c53d3d;
  --color-accent-alt: #3da4c5;
  --color-border: #2a2a2e;
  --font-heading: "Oswald", sans-serif;
  --font-body: "Raleway", sans-serif;
}
body {
  font-family: var(--font-body);
  color: var(--color-text-light);
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}
.section-title {
  margin-bottom: 60px;
}
.section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
#scrollToTop:hover,
.btn-primary:hover {
  background-color: #b03535;
}
.filter-btn::after,
.nav-link::after {
  width: 0;
  bottom: 0;
  transition: width 0.3s;
  content: "";
  height: 2px;
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.section-subtitle {
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}
.bg-texture {
  background-image: url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602066/html/assets/images/919046_OC3WJW0.jpg');
  background-size: cover;
}
.border-accent {
  border: 2px solid var(--color-accent);
}
.border-accent-top {
  border-top: 2px solid var(--color-accent);
}
.border-accent-bottom {
  border-bottom: 2px solid var(--color-accent);
}
.btn-primary {
  border-color: var(--color-accent);
  color: #fff;
  border-radius: 0;
}
.blog-title a:hover,
.btn-secondary,
.filter-btn.active,
.filter-btn:hover,
.logo span,
.map-placeholder i,
.recent-post-content h5 a:hover,
.social-icons a:hover {
  color: var(--color-accent);
}
.btn-primary:hover {
  border-color: #b03535;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  border-radius: 0;
}
.loading-text,
.logo {
  color: var(--color-text-light);
  letter-spacing: 2px;
  font-family: var(--font-heading);
}
.btn-secondary:hover {
  background-color: rgba(197, 61, 61, 0.1);
}
#preloader {
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.tattoo-machine {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.machine-body {
  width: 60px;
  height: 40px;
  background-color: var(--color-text-muted);
  border-radius: 5px;
  margin: 0 auto;
}
.filter-btn::after,
.machine-needle,
.nav-link::after {
  background-color: var(--color-accent);
}
.btn,
.hero-btns .btn {
  border-radius: 10px 20px;
}
.machine-needle {
  width: 4px;
  height: 30px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: 1.5s ease-in-out infinite needleMove;
  transform-origin: bottom;
}
@keyframes needleMove {
  0%,
  100% {
    transform: translateX(-50%) rotate(-5deg);
  }
  50% {
    transform: translateX(-50%) rotate(5deg);
  }
}
.loading-text {
  font-size: 18px;
  margin-top: 20px;
}
.loading-dots {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 20px;
}
.loading-dots div {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-dots div:first-child {
  left: 8px;
  animation: 0.6s infinite dots1;
}
.loading-dots div:nth-child(2) {
  left: 8px;
  animation: 0.6s infinite dots2;
}
.loading-dots div:nth-child(3) {
  left: 32px;
  animation: 0.6s infinite dots2;
}
.loading-dots div:nth-child(4) {
  left: 56px;
  animation: 0.6s infinite dots3;
}
@keyframes dots1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes dots3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes dots2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
#header {
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s;
  padding: 15px 0;
  background-color: rgba(15, 15, 16, 0.95);
  backdrop-filter: blur(10px);
}
#hero,
.filter-btn,
.nav-link,
.portfolio-item {
  position: relative;
}
#header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.logo {
  font-size: 28px;
  font-weight: 700;
}
.counter-text,
.filter-btn,
.nav-link,
.portfolio-category {
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-link {
  color: var(--color-text-light) !important;
  font-weight: 500;
  margin: 0 10px;
  padding: 8px 0 !important;
  transition: color 0.3s;
}
.filter-btn,
.hero-subtitle {
  color: var(--color-text-muted);
}
.ba-overlay,
.counter-number,
.healing-time,
.hero-title,
.piercing-price,
.price,
.step-number,
.type-price {
  font-weight: 700;
}
.nav-link::after {
  position: absolute;
  left: 0;
}
.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}
.nav-link.active,
.nav-link:hover {
  color: var(--color-accent) !important;
}
.social-icons a {
  color: var(--color-text-light);
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s;
}
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(15, 15, 16, 0.8), rgba(15, 15, 16, 0.9))
      center/cover fixed,
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602066/html/assets/images/17260.jpg') center/cover fixed;
  padding: 120px 0 80px;
}
.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
}
.hero-btns .btn {
  margin-right: 15px;
  margin-bottom: 15px;
}
.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: 0 0;
  border: none;
  font-family: var(--font-heading);
  font-size: 16px;
  padding: 8px 20px;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.filter-btn::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.benefit-card:hover,
.contact-info-card:hover,
.factor-card:hover,
.mission-card:hover,
.service-card:hover,
.shop-item:hover {
  transform: translateY(-10px);
}
.filter-btn.active::after,
.filter-btn:hover::after {
  width: 70%;
}
#about,
#blog,
#booking,
#portfolio,
#services {
  margin-top: 30px;
}
#blog {
  padding-top: 30px;
  background-color: rgba(10, 10, 11, 0.5);
}
.copyright a {
  color: #e63946;
  font-weight: 500;
  margin: 0 5px;
  transition: 0.3s;
}
.article-author i,
.article-date i,
.article-read-time i,
.blog-date i {
  margin-right: 5px;
}
.blog-title a,
.footer-links a {
  transition: color 0.3s;
}
.copyright a:hover {
  color: #fff;
}
.portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-img {
  width: 100%;
  height: 300px;
  transition: transform 0.5s;
  border-radius: 10px 20px;
}
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 16, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card,
.shop-item {
  transition: transform 0.3s;
  text-align: center;
}
.back-to-top.show,
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.design-example:hover img,
.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
}
.portfolio-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-accent);
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 10px 20px;
}
.about-content,
.blog-sidebar,
.booking-form,
.service-card,
.studio-hours,
.testimonial-card {
  background-color: var(--color-bg-light);
}
.about-content {
  padding: 40px;
  position: relative;
  border-radius: 10px 20px;
}
.about-content::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--color-border);
  pointer-events: none;
}
.counter-item {
  text-align: center;
  padding: 20px;
}
.counter-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.form-control,
.service-icon,
.shop-img {
  margin-bottom: 20px;
}
.counter-text {
  font-size: 14px;
}
.blog-sidebar,
.studio-hours {
  padding: 30px;
  border-radius: 10px 20px;
}
.footer-links,
.hours-list,
.recent-posts {
  list-style: none;
  padding: 0;
}
.hours-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
}
.blog-date,
.client-info {
  align-items: center;
  display: flex;
}
.category-item:last-child,
.checklist-item:last-child,
.contact-detail-item:last-child,
.faq-item:last-child,
.feature-item:last-child,
.hours-list li:last-child,
.hours-row:last-child,
.type-features li:last-child {
  border-bottom: none;
}
.service-card {
  padding: 40px 30px;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 10px 20px;
}
.service-card:hover {
  border-color: var(--color-accent);
}
.service-icon {
  font-size: 3rem;
  color: var(--color-accent);
}
.testimonial-card {
  margin: 20px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.2;
  line-height: 1;
}
.client-info {
  margin-top: 30px;
}
.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid var(--color-accent);
}
.booking-form {
  padding: 40px;
  border-radius: 10px 20px;
}
.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  padding: 12px 15px;
  border-radius: 10px 20px;
}
.map-container,
.shop-item {
  background-color: var(--color-bg-light);
}
.map-placeholder,
.shop-img,
.shop-item {
  border-radius: 10px 20px;
}
.form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  color: var(--color-text-light);
  box-shadow: 0 0 0 0.25rem rgba(197, 61, 61, 0.25);
}
#scrollToTop,
.footer-title::after {
  background-color: var(--color-accent);
}
.copyright,
.modal-footer {
  border-top: 1px solid var(--color-border);
}
.blog-meta,
.copyright,
.footer-links a {
  color: var(--color-text-muted);
}
.form-control::placeholder {
  color: var(--color-text-muted);
}
.map-container {
  min-height: 400px;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.shop-item {
  padding: 30px;
  height: 100%;
}
#scrollToTop.show,
.design-example:hover .design-overlay,
.fade-in-up.visible {
  transform: translateY(0);
}
.shop-img {
  width: 100%;
  height: 200px;
}
.footer {
  background-color: #0a0a0b;
  padding: 80px 0 30px;
  margin-top: 20px;
}
.footer-title {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: 0;
  left: 0;
}
.faq-nav-item,
.footer-links li,
.privacy-nav-item,
.terms-nav-item {
  margin-bottom: 10px;
}
.footer-links a {
  text-decoration: none;
}
.blog-title a,
.recent-post-content h5 a {
  color: var(--color-text-light);
  text-decoration: none;
}
.categories-list a:hover,
.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}
.faq-answer-content p,
.newsletter-form .form-control {
  margin-bottom: 15px;
}
.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  font-size: 14px;
}
#scrollToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  color: #fff;
  border: none;
  border-radius: 10px 20px;
  font-size: 20px;
  z-index: 99;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translateY(20px);
}
#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background-color: var(--color-bg-dark);
  border-radius: 0;
  border: 1px solid var(--color-border);
}
.modal-header {
  border-bottom: 1px solid var(--color-border);
}
.btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  .blog-content,
  .shop-item {
    padding: 10px !important;
  }
  .nav-link {
    margin: 5px 0;
  }
  .blog-title {
    font-size: 1.1rem !important;
  }
  .social-icons {
    margin-top: 20px;
    justify-content: center !important;
  }
  .carousel-control-next,
  .carousel-control-prev {
    width: 10% !important;
  }
}
@media (max-width: 768px) {
  .carousel-control-next,
  .carousel-control-prev {
    width: 14% !important;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  section {
    padding: 60px 0;
  }
  .counter-number {
    font-size: 2.5rem;
  }
}
body,
html {
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
iframe,
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in-up.visible {
  opacity: 1;
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.offcanvas-body {
  height: auto;
  background-color: rgba(15, 15, 16, 0.95);
  overflow-y: visible;
}
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
.aos-fade-up-custom {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s;
}
.aos-fade-in-custom {
  opacity: 0;
  transition: opacity 0.8s;
}
.aos-zoom-in-custom {
  opacity: 0;
  transform: scale(0.9);
  transition: 0.6s;
}
.aos-slide-left-custom {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.6s;
}
.aos-slide-right-custom {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.6s;
}
.carousel-control-next,
.carousel-control-prev {
  width: 6%;
}
.blog-post {
  background-color: var(--color-bg-light);
  margin-bottom: 30px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 10px 20px;
}
.blog-category,
.sidebar-title::after {
  background-color: var(--color-accent);
}
.blog-cta,
.process-step {
  border-radius: 10px 20px;
  text-align: center;
}
.blog-post:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.blog-content {
  padding: 25px !important;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.blog-category {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-date i {
  font-size: 14px;
}
.blog-excerpt,
.categories-list a,
.recent-post-date,
.tag {
  color: var(--color-text-muted);
}
.blog-read-more {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}
.sidebar-title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
  position: relative;
}
.sidebar-title::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: -2px;
  left: 0;
}
.categories-list li {
  margin-bottom: 12px;
}
.categories-list a {
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recent-post,
.slider-handle {
  display: flex;
  align-items: center;
}
.categories-list .count {
  background-color: rgba(197, 61, 61, 0.2);
  color: var(--color-accent);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
}
.recent-post {
  border-bottom: 1px solid var(--color-border);
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag:hover {
  background-color: var(--color-accent);
  color: #fff;
}
.blog-cta {
  background-color: var(--color-bg-light);
  padding: 40px;
  margin-top: 50px;
}
.article-content,
.artists-section,
.before-after-gallery,
.community-section,
.consultation-form-section,
.consultation-section,
.contact-details,
.design-process,
.faq-section,
.healing-timeline,
.piercing-types,
.preparation-section,
.story-section,
.studio-culture,
.studio-hours-section,
.values-section {
  padding: 40px 0;
}
.process-step {
  padding: 30px 20px;
  margin-bottom: 30px;
  background: rgba(20, 20, 20, 0.7);
  border-left: 4px solid var(--accent-color);
  transition: transform 0.3s;
}
.pricing-card.featured,
.pricing-card:hover {
  border-color: var(--accent-color);
}
.blog-post-card:hover,
.blog-post-large:hover,
.process-step:hover,
.safety-feature:hover,
.staff-card:hover,
.value-card:hover {
  transform: translateY(-5px);
}
.step-number {
  background: var(--accent-color);
  color: var(--dark-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.design-example {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}
.design-example img {
  width: 100%;
  height: 300px;
  transition: transform 0.5s;
}
.design-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  color: #fff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.form-section-title,
.price,
.upload-icon {
  color: var(--accent-color);
}
.pricing-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 2px solid transparent;
  transition: 0.3s;
  height: 100%;
}
.pricing-card.featured {
  transform: scale(1.05);
}
.price {
  font-size: 3rem;
  margin: 20px 0;
}
.design-form-container {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
  padding: 40px;
  margin-top: 40px;
}
.artist-social a,
.file-item {
  background: rgba(255, 255, 255, 0.1);
}
.form-section-title {
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
}
.upload-area {
  border: 2px dashed var(--accent-color);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 20px;
}
.factor-card,
.safety-feature {
  border-top: 4px solid var(--accent-color);
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #0f0f11;
}
.upload-area:hover {
  background: rgba(220, 53, 69, 0.1);
}
.upload-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.ba-overlay,
.slider-handle {
  color: #fff;
  position: absolute;
}
.uploaded-files {
  margin-top: 20px;
}
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.about-hero,
.blog-hero,
.consultation-hero,
.contact-hero,
.coverup-hero,
.piercing-hero,
.team-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602066/html/assets/images/17260.jpg') center/cover no-repeat;
  padding: 150px 0 100px;
  text-align: center;
}
.about-hero .hero-title,
.blog-hero .hero-title,
.consultation-hero .hero-title,
.contact-hero .hero-title,
.coverup-hero .hero-title,
.faq-hero .hero-title,
.piercing-hero .hero-title,
.privacy-hero .hero-title,
.team-hero .hero-title,
.terms-hero .hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
.about-hero .hero-subtitle,
.blog-hero .hero-subtitle,
.consultation-hero .hero-subtitle,
.contact-hero .hero-subtitle,
.coverup-hero .hero-subtitle,
.faq-hero .hero-subtitle,
.piercing-hero .hero-subtitle,
.privacy-hero .hero-subtitle,
.team-hero .hero-subtitle,
.terms-hero .hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}
.consultation-types,
.coverup-factors,
.coverup-process,
.faq-section {
  background: rgba(20, 20, 20, 0.5);
}
.process-timeline,
.story-timeline,
.timeline-container {
  position: relative;
  padding: 40px 0;
}
.process-timeline::before,
.story-timeline::before,
.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-color);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: center;
}
.timeline-item:nth-child(2n) .timeline-content {
  margin-left: 50%;
  padding-left: 40px;
}
.timeline-dot {
  background: var(--accent-color);
  top: 0;
}
.timeline-content {
  border-left: 4px solid var(--accent-color);
}
.ba-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}
.ba-image,
.blog-img-large {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.ba-overlay {
  top: 20px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
}
.after-label,
.slider-handle {
  background: var(--accent-color);
}
.before-label {
  left: 20px;
}
.after-label {
  right: 20px;
}
.comparison-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  resize: horizontal;
  max-width: 100%;
  min-width: 10%;
  border-right: 3px solid var(--accent-color);
}
.faq-search button,
.slider-handle {
  top: 50%;
  transform: translateY(-50%);
}
.comparison-slider img {
  width: auto;
  height: 100%;
  max-width: none;
}
.slider-handle {
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  cursor: ew-resize;
  font-size: 1.5rem;
}
.do-dont,
.healing-item {
  align-items: center;
  display: flex;
}
.afterresponsive {
  left: 45%;
}
.factor-card {
  background: rgba(20, 20, 20, 0.8);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s;
}
.contact-icon,
.culture-icon,
.factor-icon,
.mission-icon,
.safety-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.coverup-cta {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602066/html/assets/images/17260.jpg') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
}
.aftercare-section,
.apprentice-section,
.benefits-section,
.contact-form-section,
.contact-info-section,
.jewelry-showcase,
.mission-section,
.parking-section,
.safety-section,
.studio-features,
.support-team,
.team-intro,
.testimonial-section {
  padding: 80px 0;
  background: rgba(20, 20, 20, 0.5);
}
.piercing-card,
.safety-feature,
.type-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  margin-bottom: 30px;
  transition: transform 0.3s;
}
.safety-feature {
  text-align: center;
  padding: 30px 20px;
}
.piercing-card,
.type-card {
  overflow: hidden;
  border: 2px solid transparent;
}
.artist-card:hover,
.piercing-card:hover,
.type-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
}
.artist-social a:hover,
.share-btn:hover {
  transform: translateY(-3px);
}
.piercing-img {
  width: 100%;
  height: 250px;
}
.artist-content,
.blog-content-card,
.piercing-content {
  padding: 25px;
}
.piercing-price {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin: 10px 0;
}
.piercing-difficulty {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.difficulty-easy {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid #28a745;
}
.difficulty-medium {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid #ffc107;
}
.difficulty-hard {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid #dc3545;
}
.jewelry-item {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
}
.jewelry-img {
  width: 150px;
  height: 150px;
  margin: auto auto 20px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
}
.checklist-item,
.healing-item,
.type-features li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.healing-chart,
.hours-table,
.prep-checklist {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 40px;
  margin-top: 30px;
}
.healing-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.healing-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 20px;
  min-width: 60px;
}
.do-icon,
.dont-icon,
.type-features li i {
  margin-right: 10px;
}
.healing-info h5 {
  margin-bottom: 5px;
}
.healing-time {
  color: var(--accent-color);
}
.aftercare-card {
  background: rgba(20, 20, 20, 0.9);
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  border-left: 4px solid var(--accent-color);
}
.do-dont {
  margin-bottom: 15px;
}
.do-icon {
  color: #28a745;
  font-size: 1.2rem;
}
.dont-icon {
  color: #dc3545;
  font-size: 1.2rem;
}
.consultation-form-container,
.contact-form-container,
.form-container {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.benefit-card,
.contact-info-card,
.mission-card {
  text-align: center;
  padding: 40px 25px;
  margin-bottom: 30px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  border-top: 4px solid var(--accent-color);
  transition: transform 0.3s;
  height: 100%;
}
.benefit-icon,
.emergency-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.step-number,
.type-header {
  background: var(--accent-color);
  color: var(--dark-color);
  text-align: center;
}
.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:nth-child(odd),
.timeline-step:nth-child(odd) {
  justify-content: flex-end;
  padding-right: 50%;
}
.timeline-step:nth-child(2n) {
  justify-content: flex-start;
  padding-left: 50%;
}
.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 52px;
  border-radius: 50%;
  margin-right: 15px;
}
.type-header {
  padding: 20px;
}
.checklist-icon,
.type-features li i,
.type-price {
  color: var(--accent-color);
}
.type-content {
  padding: 30px;
}
.type-price {
  font-size: 1.8rem;
  margin: 15px 0;
}
.type-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.type-features li {
  padding: 8px 0;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.checklist-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  min-width: 30px;
}
.form-tabs {
  display: flex;
}
.form-tab {
  flex: 1;
}
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.upload-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
}
.upload-item img {
  width: 100%;
  height: 100%;
}
.upload-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(220, 53, 69, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.artist-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s;
  border: 2px solid transparent;
  height: 100%;
}
.artist-img {
  width: 100%;
  height: 300px;
}
.artist-role {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.artist-specialty {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(220, 53, 69, 0.2);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 5px 5px 5px 0;
}
.artist-bio {
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.artist-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.artist-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.artist-social a:hover {
  background: var(--accent-color);
}
.artist-quote {
  font-style: italic;
  border-left: 3px solid var(--accent-color);
  padding-left: 15px;
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.7);
}
.years-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}
.culture-item,
.staff-card {
  background: rgba(20, 20, 20, 0.8);
  text-align: center;
}
.staff-card {
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: transform 0.3s;
  border-top: 4px solid var(--accent-color);
}
.staff-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: auto auto 20px;
  border: 3px solid var(--accent-color);
}
.culture-item,
.testimonial-card,
.timeline-content,
.value-card {
  border-left: 4px solid var(--accent-color);
}
.staff-role {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 10px;
}
.culture-item {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}
.booking-cta,
.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602066/html/assets/images/17260.jpg') center/cover no-repeat;
  text-align: center;
}
.modal-artist-img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.modal-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}
.modal-specialty {
  padding: 5px 15px;
  background: rgba(220, 53, 69, 0.1);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .consultation-form-container,
  .design-form-container,
  .form-container,
  .healing-chart {
    padding: 20px;
  }
  .process-step {
    padding: 20px 15px;
  }
  .afterresponsive {
    left: 15% !important;
  }
  .consultation-hero .hero-title,
  .coverup-hero .hero-title,
  .piercing-hero .hero-title,
  .team-hero .hero-title {
    font-size: 2.5rem;
  }
  .process-timeline::before,
  .timeline-container::before,
  .timeline-dot {
    left: 30px;
  }
  .timeline-item:nth-child(2n) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    margin: 0 0 0 60px;
    padding-left: 20px;
  }
  .ba-image {
    height: 300px;
  }
  .timeline-step:nth-child(2n),
  .timeline-step:nth-child(odd) {
    justify-content: flex-start;
    padding: 0 0 0 60px;
  }
  .form-tabs {
    flex-direction: column;
  }
  .artist-img {
    height: 250px;
  }
  .artist-social {
    justify-content: center;
  }
}
.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:nth-child(2n) {
  justify-content: flex-start;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-content {
  background: rgba(20, 20, 20, 0.8);
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
}
.year-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.detail-icon,
.feature-icon,
.value-icon {
  color: var(--accent-color);
}
.impact-stats,
.testimonial-card,
.value-card {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
}
.value-card {
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s;
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-icon {
  font-size: 2rem;
  margin-right: 20px;
  min-width: 50px;
}
.impact-stats {
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
.faq-stat-number,
.impact-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}
.article-category,
.blog-category,
.blog-read-more,
.day,
.faq-popular-link,
.faq-question,
.form-tab {
  font-weight: 500;
}
.testimonial-card {
  padding: 30px;
  margin-bottom: 30px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.author-img {
  border: 2px solid var(--accent-color);
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.detail-icon {
  font-size: 1.5rem;
  margin-right: 20px;
  min-width: 40px;
}
.form-tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.form-tab {
  flex: 1;
  padding: 15px;
  text-align: center;
  background: 0 0;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
  min-width: 120px;
}
.hours-row,
.transport-option {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.form-tab.active {
  color: #fff;
  border-bottom: 3px solid var(--accent-color);
}
.form-tab:hover {
  color: #fff;
}
.category-link:hover,
.faq-search button:hover,
.map-placeholder i,
.nav-article:hover,
.time,
.transport-icon {
  color: var(--accent-color);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: 0.5s fadeIn;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.map-container {
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
  position: relative;
}
.map-placeholder {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602066/html/assets/images/photo-1542744095-fcf48d80b0fd.jpg')
      center/cover no-repeat;
  padding: 30px;
  text-align: center;
}
.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.blog-meta,
.transport-option {
  display: flex;
  align-items: center;
}
.parking-info,
.sidebar-widget {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}
.transport-option {
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.transport-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  min-width: 40px;
}
.emergency-contact {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--accent-color);
  margin-top: 30px;
}
.article-main,
.blog-main {
  padding-right: 30px;
}
.article-sidebar,
.blog-sidebar {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-post-large {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
  transition: transform 0.3s;
}
.article-tag:hover,
.blog-category,
.category-btn.active,
.category-btn:hover,
.page-item.active .page-link,
.page-link:hover,
.tag:hover {
  background: var(--accent-color);
  color: var(--dark-color);
}
.featured-post {
  border: 2px solid var(--accent-color);
}
.blog-content-large {
  padding: 40px;
}
.blog-meta {
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}
.blog-category {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.blog-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.blog-title-large {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
.blog-excerpt-large {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
}
.blog-read-time {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-left: 10px;
}
.blog-post-card,
.page-link {
  background: rgba(20, 20, 20, 0.8);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.blog-post-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
}
.blog-img {
  width: 100%;
  height: 200px;
}
.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.blog-read-more {
  color: var(--accent-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.category-btn,
.page-link {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}
.blog-read-more i,
.faq-popular-link i {
  margin-left: 5px;
  transition: transform 0.3s;
}
.blog-read-more:hover i,
.faq-popular-link:hover i {
  transform: translateX(5px);
}
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-item {
  margin: 0 5px;
}
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  border-radius: 5px;
}
.blog-categories-nav {
  padding: 40px 0;
  background: rgba(20, 20, 20, 0.5);
}
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.category-btn {
  background: rgba(20, 20, 20, 0.8);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
}
.article-hero,
.faq-hero,
.privacy-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602066/html/assets/images/17260.jpg') center/cover no-repeat;
  padding: 150px 0 80px;
  text-align: center;
}
.article-hero .article-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.article-hero .article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.article-body {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 50px;
  margin-bottom: 40px;
}
.article-category,
.share-btn:hover {
  background: var(--accent-color);
  color: var(--dark-color);
}
.article-category {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
}
.article-featured-img,
.article-img-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.article-author,
.article-date,
.article-read-time {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.article-featured-img {
  height: 500px;
  margin: 40px 0;
}
.article-body h2 {
  font-size: 2rem;
  margin: 40px 0 20px;
  color: var(--accent-color);
}
.article-body h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
}
.article-body li,
.article-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.article-body p {
  margin-bottom: 25px;
}
.article-body ol,
.article-body ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.article-body li {
  margin-bottom: 10px;
}
.article-tips-box {
  background: rgba(220, 53, 69, 0.1);
  border-left: 4px solid var(--accent-color);
  padding: 25px;
  margin: 30px 0;
  border-radius: 0 5px 5px 0;
}
.article-tag,
.share-btn,
.tag {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.8);
}
.article-tips-box h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.article-tips-box p {
  margin-bottom: 0;
}
.article-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.article-img-grid img {
  height: 250px;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.article-tag,
.tag {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.article-navigation,
.article-share {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
}
.article-share {
  align-items: center;
  margin-top: 40px;
}
.article-share-title {
  margin-right: 15px;
  font-weight: 500;
}
.article-share-buttons {
  display: flex;
  gap: 10px;
}
.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.category-link,
.nav-article {
  transition: color 0.3s;
  text-decoration: none;
}
.back-to-top:hover,
.faq-popular-item:hover {
  transform: translateY(-5px);
}
.article-navigation {
  justify-content: space-between;
  margin-top: 50px;
}
.nav-article {
  display: flex;
  align-items: center;
  max-width: 45%;
  color: rgba(255, 255, 255, 0.8);
}
.nav-article.prev {
  text-align: left;
}
.nav-article.next {
  text-align: right;
  flex-direction: row-reverse;
}
.nav-arrow {
  font-size: 1.5rem;
  margin: 0 15px;
}
.nav-article h5 {
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.3;
}
.nav-article span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}
.author-bio {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  display: flex;
  align-items: center;
}
.author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 25px;
  border: 2px solid var(--accent-color);
}
.author-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--accent-color);
}
.author-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}
.comments-title,
.related-title {
  font-size: 2rem;
  color: var(--accent-color);
}
.author-bio p {
  font-size: 1rem;
  margin-bottom: 0;
}
.related-articles {
  margin: 80px 0 50px;
}
.related-title {
  margin-bottom: 40px;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.comments-section {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 50px;
  margin: 50px 0;
}
.comments-title {
  margin-bottom: 40px;
}
.comment-form .form-control,
.comment-form .form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
.comment-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.comment-form label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}
.widget-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
}
.category-item,
.recent-post {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.categories-list,
.faq-nav-list,
.privacy-nav-list,
.terms-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-item {
  padding: 12px 0;
}
.category-link {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-nav-link,
.faq-question {
  transition: 0.3s;
  display: flex;
}
.category-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}
.recent-post {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.recent-post-img {
  object-fit: cover;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}
.recent-post-content h5 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  line-height: 1.3;
}
.recent-post-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}
.newsletter-widget {
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.2),
    rgba(108, 117, 125, 0.2)
  );
  border: 1px solid var(--accent-color);
}
.newsletter-widget p {
  margin-bottom: 20px;
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.terms-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)),
    url('/newmoban/_external/demo.mobanwang.com/mb/lo202602/202602066/html/assets/images/2149525938.jpg') center/cover no-repeat;
  padding: 150px 0 80px;
  text-align: center;
}
.faq-content,
.privacy-content,
.terms-content {
  padding: 80px 0;
  background: rgba(10, 10, 10, 0.7);
}
.privacy-container,
.terms-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-nav,
.privacy-nav,
.terms-nav {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  position: sticky;
  top: 100px;
}
.faq-nav-title,
.privacy-nav-title,
.terms-nav-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
}
.privacy-nav-link,
.terms-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  padding: 8px 15px;
  border-radius: 5px;
  transition: 0.3s;
  border-left: 3px solid transparent;
}
.faq-nav-link:hover,
.privacy-nav-link:hover,
.terms-nav-link:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent-color);
}
.faq-nav-link.active,
.privacy-nav-link.active,
.terms-nav-link.active {
  color: var(--accent-color);
  background: rgba(220, 53, 69, 0.1);
  border-left: 3px solid var(--accent-color);
}
.faq-question:hover,
.privacy-table tr:nth-child(2n),
.terms-table tr:nth-child(2n) {
  background: rgba(255, 255, 255, 0.05);
}
.privacy-section,
.terms-section {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  scroll-margin-top: 100px;
}
.privacy-section-title,
.terms-section-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--accent-color);
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.privacy-section-subtitle,
.terms-section-subtitle {
  font-size: 1.3rem;
  margin: 25px 0 15px;
  color: rgba(255, 255, 255, 0.9);
}
.privacy-section p,
.terms-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}
.privacy-section ol,
.privacy-section ul,
.terms-section ol,
.terms-section ul {
  margin-bottom: 25px;
  padding-left: 25px;
}
.privacy-section li,
.terms-section li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.privacy-highlight,
.terms-highlight {
  background: rgba(220, 53, 69, 0.1);
  border-left: 4px solid var(--accent-color);
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 5px 5px 0;
}
.faq-tip p,
.privacy-highlight p,
.terms-highlight p {
  margin-bottom: 0;
  font-style: italic;
}
.privacy-table,
.terms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}
.privacy-table td,
.privacy-table th,
.terms-table td,
.terms-table th {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}
.privacy-table th,
.terms-table th {
  background: rgba(220, 53, 69, 0.2);
  color: var(--accent-color);
  font-weight: 600;
}
.privacy-cta,
.terms-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.2),
    rgba(108, 117, 125, 0.2)
  );
  border-radius: 10px;
  margin-top: 50px;
  border: 1px solid var(--accent-color);
}
.faq-contact h3,
.privacy-cta h3,
.terms-cta h3 {
  margin-bottom: 20px;
  color: var(--accent-color);
}
.privacy-last-updated,
.terms-last-updated {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.data-request h5,
.privacy-rights h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
}
.privacy-rights {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  border-left: 4px solid var(--accent-color);
}
.data-request {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  padding: 20px;
  border-top: 2px solid var(--accent-color);
  z-index: 9999;
  display: none;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.cookie-text {
  flex: 1;
  min-width: 300px;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
}
@media print {
  .back-to-top,
  .cookie-banner,
  .cta-section,
  .footer,
  .privacy-cta .btn,
  .privacy-nav,
  .terms-cta .btn,
  .terms-nav {
    display: none;
  }
  .privacy-content,
  .terms-content {
    padding: 20px 0;
    background: #fff;
  }
  .privacy-section,
  .terms-section {
    background: #fff;
    color: #000;
    border: 1px solid #ddd;
  }
  .privacy-section li,
  .privacy-section p,
  .privacy-section-title,
  .terms-section li,
  .terms-section p,
  .terms-section-title {
    color: #000;
  }
}
.faq-search {
  max-width: 600px;
  margin: 0 auto 60px;
  position: relative;
}
.faq-search input {
  background: rgba(20, 20, 20, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 50px 15px 20px;
  border-radius: 50px;
  font-size: 1.1rem;
  width: 100%;
}
.faq-search input:focus {
  background: rgba(30, 30, 30, 0.9);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  outline: 0;
}
.faq-category-title,
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-search button {
  position: absolute;
  right: 10px;
  background: 0 0;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  padding: 10px;
}
.faq-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  align-items: center;
  padding: 8px 15px;
  border-radius: 5px;
  border-left: 3px solid transparent;
}
.faq-nav-icon {
  margin-right: 10px;
  font-size: 1.1rem;
}
.faq-category {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}
.faq-category-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--accent-color);
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}
.faq-category-icon {
  margin-right: 15px;
  font-size: 1.8rem;
}
.faq-accordion {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  background: 0 0;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  padding: 25px 30px;
  width: 100%;
  font-size: 1.2rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}
.faq-popular-item:hover,
.faq-tip {
  border-left: 4px solid var(--accent-color);
}
.faq-contact,
.faq-stat,
.no-results {
  text-align: center;
}
.faq-question:hover {
  color: var(--accent-color);
}
.faq-question[aria-expanded="true"] {
  background: rgba(220, 53, 69, 0.1);
  color: var(--accent-color);
}
.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.faq-answer.show {
  padding: 0 30px 30px;
  max-height: 1000px;
}
.faq-answer-content {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}
.faq-answer-content ol,
.faq-answer-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}
.faq-answer-content li {
  margin-bottom: 8px;
}
.faq-tip {
  background: rgba(220, 53, 69, 0.1);
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 5px 5px 0;
}
.faq-contact {
  padding: 60px;
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.2),
    rgba(108, 117, 125, 0.2)
  );
  border-radius: 10px;
  margin-top: 50px;
  border: 1px solid var(--accent-color);
}
.faq-popular-item,
.faq-stat {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
}
.faq-contact p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}
.faq-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 60px 0;
}
.faq-stat {
  padding: 30px;
  border-top: 4px solid var(--accent-color);
}
.faq-stat-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}
.faq-popular {
  margin: 60px 0 40px;
}
.faq-popular-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--accent-color);
  text-align: center;
}
.faq-popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.faq-popular-item {
  padding: 25px;
  transition: transform 0.3s;
  border-left: 4px solid transparent;
}
.faq-popular-item h5 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.faq-popular-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.faq-popular-link {
  color: var(--accent-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transition: 0.3s;
  z-index: 1000;
}
.back-to-top:hover {
  color: var(--dark-color);
}
.no-results {
  padding: 60px;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 10px;
  margin: 40px 0;
  display: none;
}
.no-results.show {
  display: block;
}
@media (max-width: 992px) {
  .article-main,
  .blog-main {
    padding-right: 0;
  }
  .article-sidebar,
  .blog-sidebar {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 50px;
    margin-top: 50px;
  }
  .article-hero .article-title,
  .blog-hero .hero-title,
  .faq-hero .hero-title,
  .privacy-hero .hero-title,
  .terms-hero .hero-title {
    font-size: 2.5rem;
  }
  .article-body {
    padding: 30px;
  }
  .faq-nav,
  .privacy-nav,
  .terms-nav {
    position: static;
    margin-bottom: 30px;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  .faq-contact {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .afterresponsive {
    left: 15% !important;
  }
  .about-hero .hero-title,
  .contact-hero .hero-title {
    font-size: 2.5rem;
  }
  .story-timeline::before,
  .timeline-dot {
    left: 30px;
  }
  .timeline-item:nth-child(2n),
  .timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding: 0 0 0 60px;
  }
  .feature-item,
  .form-tabs,
  .hours-row {
    flex-direction: column;
  }
  .feature-icon {
    margin-bottom: 15px;
  }
  .contact-form-container {
    padding: 20px;
  }
  .hours-row {
    gap: 5px;
  }
  .author-bio,
  .transport-option {
    flex-direction: column;
    text-align: center;
  }
  .transport-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .article-featured-img,
  .blog-img-large {
    height: 300px;
  }
  .blog-content-large,
  .privacy-cta,
  .privacy-section,
  .terms-cta,
  .terms-section {
    padding: 25px;
  }
  .blog-title-large {
    font-size: 1.8rem;
  }
  .article-img-grid,
  .blog-grid,
  .faq-popular-grid,
  .faq-stats {
    grid-template-columns: 1fr;
  }
  .article-img-grid img {
    height: 200px;
  }
  .article-navigation {
    flex-direction: column;
    gap: 30px;
  }
  .nav-article {
    max-width: 100%;
  }
  .author-img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .comments-section {
    padding: 30px;
  }
  .privacy-section-title,
  .terms-section-title {
    font-size: 1.5rem;
  }
  .privacy-table,
  .terms-table {
    display: block;
    overflow-x: auto;
  }
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cookie-buttons .btn {
    width: 100%;
  }
  .faq-question {
    padding: 20px;
    font-size: 1.1rem;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-answer.show {
    padding: 0 20px 20px;
  }
  .faq-category-title {
    font-size: 1.7rem;
  }
}
@media (max-width: 576px) {
  .faq-hero .hero-title {
    font-size: 2rem;
  }
  .faq-search {
    margin-bottom: 40px;
  }
}