/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #201c2b;
  color: #efeff1;
  line-height: 1.6;
  padding-top: 60px; /* Space for fixed navbar */
}

/* Link Styles */
a {
  color: #9147ff;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:link {
  color: #9147ff;
}

a:visited {
  color: #772ce8;
}

a:hover {
  color: #a970ff;
  text-decoration: underline;
}

a:active {
  color: #5c16c5;
  text-decoration: underline;
}

a:focus {
  color: #a970ff;
  outline: 2px solid #9147ff;
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #18181b;
  border-bottom: 2px solid #9147ff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-icon {
  width: auto;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0;
  padding: 4px 0;
}

.nav-link {
  color: #adadb8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: #efeff1;
  background: #1f1f23;
}

.nav-link:active,
.nav-link:focus,
.nav-link.active {
  color: #9147ff;
  background: rgba(145, 71, 255, 0.1);
}

.navbar-right {
  display: flex;
  align-items: center;
}

.install-button {
  background: #9147ff;
  color: white !important;
  text-decoration: none !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.install-button:link,
.install-button:visited,
.install-button:active,
.install-button:focus {
  color: white !important;
  text-decoration: none !important;
}

.install-button:hover {
  background: #772ce8;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

/* Header */
.header {
  position: relative;
  background: #18181b;
  border-bottom: 2px solid #9147ff;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
  margin-top: 0; /* Remove any top margin since navbar is fixed */
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/1.png');
  background-size: cover;
  background-position: center;
  opacity: 1.0;
  z-index: 1;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(24, 24, 27, 0.9) 0%, rgba(32, 28, 43, 0.95) 100%);
  z-index: 2;
}

.header-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.header-text {
  flex: 1;
  min-width: 300px;
}

.logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 32px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-avatar {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(145, 71, 255, 0.2));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Main Content */
.main {
  padding: 30px 0;
}

.section {
  margin-bottom: 45px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #9147ff;
  margin-bottom: 25px;
  text-align: center;
}

/* Marketing Section */
.marketing-section {
  background: linear-gradient(180deg, #201c2b 0%, #18181b 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.marketing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/4.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.marketing-section .container {
  position: relative;
  z-index: 2;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.lead {
  font-size: 20px;
  color: #efeff1;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: #1f1f23;
  border: 1px solid #3a3a3d;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #9147ff;
}

.feature-avatar {
  width: 180px;
  height: 180px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(145, 71, 255, 0.2));
  transition: transform 0.3s;
}

.feature-card:hover .feature-avatar img {
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #9147ff;
  margin-bottom: 12px;
}

.feature-card p {
  color: #adadb8;
  font-size: 15px;
  line-height: 1.6;
}

.cta-section {
  background: #1f1f23;
  border: 2px solid #9147ff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/4.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.cta-text {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.cta-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #efeff1;
  margin-bottom: 15px;
}

.cta-text p {
  color: #adadb8;
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-hero-avatar {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(145, 71, 255, 0.3));
  animation: float 3s ease-in-out infinite;
}

.cta-button {
  display: inline-block;
  background: #9147ff;
  color: white !important;
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.cta-button:link,
.cta-button:visited,
.cta-button:active,
.cta-button:focus {
  color: white !important;
  text-decoration: none !important;
}

.cta-button:hover {
  background: #772ce8;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

.avatar-showcase {
  margin-top: 45px;
  margin-bottom: 40px;
  background: #1f1f23;
  border: 1px solid #3a3a3d;
  border-radius: 12px;
  padding: 30px;
}

.avatar-showcase h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #9147ff;
  margin-bottom: 15px;
  text-align: center;
}

.showcase-intro {
  color: #adadb8;
  font-size: 16px;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}

.avatar-selector-container {
  display: flex;
  gap: 25px;
  margin-top: 25px;
  align-items: flex-start;
}

.avatar-preview {
  width: 256px;
  height: 256px;
  background: #18181b;
  border: 2px solid #3a3a3d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.avatar-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: avatarBgLayer1 20s infinite;
}

.avatar-preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: avatarBgLayer2 20s infinite;
}

@keyframes avatarBgLayer1 {
  0% {
    background-image: url('assets/1.png');
    opacity: 1;
  }
  20% {
    background-image: url('assets/1.png');
    opacity: 1;
  }
  20.01% {
    background-image: url('assets/2.png');
    opacity: 0;
  }
  25% {
    background-image: url('assets/2.png');
    opacity: 1;
  }
  45% {
    background-image: url('assets/2.png');
    opacity: 1;
  }
  45.01%, 95% {
    background-image: url('assets/2.png');
    opacity: 0;
  }
  95.01% {
    background-image: url('assets/1.png');
    opacity: 0;
  }
  100% {
    background-image: url('assets/1.png');
    opacity: 1;
  }
}

@keyframes avatarBgLayer2 {
  0%, 44% {
    background-image: url('assets/3.png');
    opacity: 0;
  }
  45% {
    background-image: url('assets/3.png');
    opacity: 0;
  }
  50% {
    background-image: url('assets/3.png');
    opacity: 1;
  }
  70% {
    background-image: url('assets/3.png');
    opacity: 1;
  }
  70.01% {
    background-image: url('assets/4.png');
    opacity: 0;
  }
  75% {
    background-image: url('assets/4.png');
    opacity: 1;
  }
  95% {
    background-image: url('assets/4.png');
    opacity: 1;
  }
  95.01%, 100% {
    background-image: url('assets/4.png');
    opacity: 0;
  }
}

.avatar-preview-img {
  width: 256px;
  height: 256px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(145, 71, 255, 0.2));
  position: relative;
  z-index: 10;
}

.avatar-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
  flex: 1;
  max-height: 270px;
  overflow-y: visible;
  padding: 5px 10px;
}

.avatar-option {
  width: 80px;
  height: 80px;
  background: #1f1f23;
  border: 2px solid #3a3a3d;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.avatar-option:hover {
  transform: scale(1.05);
  border-color: #9147ff;
  box-shadow: 0 2px 8px rgba(145, 71, 255, 0.3);
}

.avatar-option.selected {
  border-color: #9147ff;
  border-width: 3px;
  box-shadow: 0 0 0 2px rgba(145, 71, 255, 0.3);
}

.avatar-option img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.screenshot-placeholder {
  margin-top: 50px;
}

.carousel-section {
  margin-bottom: 30px;
}

.carousel-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #efeff1;
  margin-bottom: 20px;
  text-align: center;
}

.placeholder-text {
  color: #adadb8;
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
}

.carousels-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.carousel-wrapper {
  position: relative;
  background: #1f1f23;
  border: 1px solid #3a3a3d;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.screenshot-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  margin-bottom: 15px;
}

.screenshot-description {
  color: #adadb8;
  font-size: 14px;
  text-align: center;
  font-style: italic;
  padding: 10px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(145, 71, 255, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  user-select: none;
}

.carousel-nav:hover {
  background: rgba(145, 71, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.creator-types {
  margin-top: 40px;
  background: #1f1f23;
  border-radius: 8px;
  padding: 25px;
  border: 1px solid #3a3a3d;
}

.creator-types h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #9147ff;
  margin-bottom: 15px;
}

.creator-types > p {
  color: #adadb8;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.8;
}

.creator-list {
  list-style: none;
  margin: 15px 0;
  padding-left: 0;
}

.creator-list li {
  color: #adadb8;
  font-size: 16px;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.creator-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #9147ff;
  font-weight: bold;
}

.creator-list li strong {
  color: #efeff1;
}

/* Changelog Section */
.changelog-section {
  background: #18181b;
  padding: 30px 0;
  border-top: 1px solid #3a3a3d;
  border-bottom: 1px solid #3a3a3d;
  position: relative;
  overflow: hidden;
}

.changelog-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 1;
}

.changelog-bg .container {
  position: relative;
  z-index: 2;
}

.changelog-content {
  max-width: 900px;
  margin: 0 auto;
}

.changelog-entry {
  background: #1f1f23;
  border: 1px solid #3a3a3d;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.changelog-entry h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #9147ff;
  margin-bottom: 12px;
}

.changelog-entry ul {
  list-style: none;
  padding-left: 0;
}

.changelog-entry li {
  color: #adadb8;
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.changelog-entry li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9147ff;
  font-size: 20px;
  line-height: 1;
}

/* FAQ Section */
.faq-section {
  padding: 30px 0;
  position: relative;
}

.faq-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/3.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 1;
}

.faq-bg .container {
  position: relative;
  z-index: 2;
}

.faq-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: center;
  margin: 30px auto 40px;
  max-width: 900px;
  padding: 15px 10px;
  background: #1f1f23;
  border: 1px solid #3a3a3d;
  border-radius: 8px;
}

.faq-nav-link {
  display: inline-block;
  padding: 8px 14px;
  color: #adadb8;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.faq-nav-link:hover {
  color: #efeff1;
  background: #3a3a3d;
  border-color: #9147ff;
  transform: translateY(-2px);
}

.faq-nav-link:active {
  transform: translateY(0);
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.faq-category h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #9147ff;
  margin-bottom: 20px;
  border-bottom: 2px solid #3a3a3d;
  padding-bottom: 8px;
}

.intro-text {
  color: #adadb8;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.8;
}

.faq-item {
  background: #1f1f23;
  border: 1px solid #3a3a3d;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.faq-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #efeff1;
  margin-bottom: 12px;
}

.faq-item p {
  color: #adadb8;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.faq-item ul,
.faq-item ol {
  color: #adadb8;
  font-size: 15px;
  margin: 15px 0;
  padding-left: 30px;
  line-height: 1.8;
}

.faq-item ul li,
.faq-item ol li {
  margin-bottom: 10px;
}

.faq-item ul li::marker {
  color: #9147ff;
}

.faq-item ol li::marker {
  color: #9147ff;
  font-weight: bold;
}

.faq-item strong {
  color: #efeff1;
  font-weight: 600;
}

/* Job System Styling */
.job-tier {
  background: #18181b;
  border: 1px solid #3a3a3d;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}

.job-tier h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #9147ff;
  margin-bottom: 10px;
}

.job-tier p {
  color: #adadb8;
  font-size: 15px;
  margin-bottom: 15px;
}

.job-tier ul {
  margin-top: 10px;
}

.job-tier ul li {
  color: #adadb8;
  font-size: 15px;
  margin-bottom: 8px;
}

/* Footer */
.footer {
  background: #18181b;
  border-top: 1px solid #3a3a3d;
  padding: 30px 0;
  text-align: center;
}

.footer p {
  color: #adadb8;
  font-size: 14px;
}

/* Image Modal/Lightbox */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s;
}

.image-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoomIn 0.3s;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10001;
}

.modal-close:hover,
.modal-close:focus {
  color: #9147ff;
}

.modal-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #f1f1f1;
  font-size: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 6px;
  max-width: 80%;
}

.screenshot-img {
  cursor: pointer;
  transition: opacity 0.2s;
}

.screenshot-img:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 50px;
  }

  .navbar-container {
    height: 50px;
    padding: 0 15px;
  }

  .navbar-icon {
    width: auto;
    height: 50px;
    padding: 3px 0;
  }

  .nav-link {
    font-size: 12px;
    padding: 6px 8px;
  }

  .install-button {
    padding: 8px 16px;
    font-size: 12px;
  }

  .navbar-left {
    gap: 10px;
  }

  .header {
    padding: 40px 0;
    min-height: auto;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .profile-image {
    max-height: 300px;
  }

  .header {
    min-height: 250px;
  }

  .logo {
    font-size: 24px;
  }

  .tagline {
    font-size: 16px;
  }

  .section-title {
    font-size: 24px;
  }

  .lead {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .avatar-selector-container {
    flex-direction: column;
    gap: 20px;
  }

  .avatar-preview {
    width: 100%;
    max-width: 256px;
    margin: 0 auto;
  }

  .avatar-selector {
    max-height: none;
    grid-template-columns: repeat(4, 1fr);
  }

  .avatar-showcase {
    padding: 25px;
  }

  .cta-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-text {
    text-align: center;
  }

  .cta-hero-avatar {
    max-height: 300px;
  }

  .carousels-container {
    gap: 20px;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  .screenshot-img {
    max-height: 300px;
  }

  .faq-category h3 {
    font-size: 24px;
  }

  .faq-item h4 {
    font-size: 18px;
  }
}

/* Scrollbar Styling (matching extension) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #9147ff;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #f5f5f5;
  border-radius: 5px;
  border: 2px solid #9147ff;
}

::-webkit-scrollbar-thumb:hover {
  background: #e5e5e5;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #f5f5f5 #9147ff;
}
