::-webkit-scrollbar {
  width: 10px;               /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #000;          /* Background color of the track (matches your page background) */
}

::-webkit-scrollbar-thumb {
  background-color: #555;     /* Color of the draggable thumb */
  border-radius: 5px;
  border: 2px solid #000;     /* Space around thumb to blend with track */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #888;     /* Thumb color on hover */
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #121829;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0px 0px 0px;
}

.btn {
  display: inline-block;
  background: #ff4081;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 20px;
}

h1 {
  color: #f9c74f;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.subheading {
  font-size: 0.95rem;
  color: #cfcfcf;
  margin-bottom: 25px;
}

.section {
  background: #1c2235;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.section h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.section ul {
  padding-left: 20px;
}

.section ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.highlight {
  color: #f9c74f;
  font-weight: 600;
}

.image-preview {
  width: 100%;
  border-radius: 10px;
  margin: 20px 0 30px 0;
}

p {
  line-height: 1.7;
  margin: 12px 0;
  }

em {
  color: #ffab40;
}

strong {
  color: #90caf9;
}

.disclaimer {
  font-size: 0.9rem;
  color: #ffa726;
}

.quote {
  background: #1e1e2f;
  padding: 12px 18px;
  border-left: 5px solid #00bcd4;
  border-radius: 6px;
  font-style: italic;
  color: #c0c0c0;
  margin-top: 20px;
}

.section ul li::marker {
  color: #00e676;
}


.features-section {
  background-color: #0d1117;
  color: #dcdcdc;
  font-family: Arial, sans-serif;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background-color: #1b2234;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
  color: #f39c12;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card ul,
.feature-card ol {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.feature-card ul li,
.feature-card ol li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.5;
}

.feature-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00ff7f;
  font-size: 1.2rem;
}

.highlight {
  color: #58a6ff;
  font-weight: bold;
}

.feature-card p {
  margin: 10px 0;
  line-height: 1.6;
}

.disclaimer {
  border-left: 4px solid #f39c12;
  padding-left: 15px;
}

/* carousel */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-image {
  width: 100%;
  flex-shrink: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.carousel-image:hover {
  transform: scale(1.05);
}
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(101, 98, 98, 0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.nav-btn-left {
  left: 10px;
}

.nav-btn-right {
  right: 10px;
}

.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.fullscreen-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* .fullscreen-img:hover {
  transform: scale(1.05);
} */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10000;
  border-radius: 8px;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #f00;
}

.fullscreen-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 2.5rem;
  padding: 10px 18px;
  cursor: pointer;
  z-index: 10001;
  border-radius: 8px;
}

.fullscreen-nav-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.fullscreen-left {
  left: 30px;
}

.fullscreen-right {
  right: 30px;
}

@media (max-width: 768px){
  .container {
  margin-top: 65px;
}
}