:root {
  --accent: #C1D108;
  --accent-hover: #a8b807;
  --bg-primary: #0b0b13;
  --bg-secondary: #16161e;
  --bg-card: #09090e;
  --border-color: #333333;
  --text-primary: #ffffff;
  --text-muted: #aaaaaa;
  --text-dim: #666666;
  --danger: #cc2626;
  --success: #26b545;
}

/* ===================== FAQ SECTION ON INDEX.HTML ===================== */

.faq-section-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  margin-top: 64px;
}

.faq-section-inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 64px 40px 80px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .faq-section-inner {
    padding: 48px 16px 64px;
  }
}

/* SEO H1 heading */
.faq-seo-h1 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.faq-seo-h1 span {
  color: var(--accent);
}

@media (max-width: 1000px) {
  .faq-seo-h1 {
    font-size: 2.4rem;
  }
}

.faq-seo-subtitle {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0 0 48px 0;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .faq-seo-subtitle {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }
}

/* FAQ heading label */
.faq-label {
  display: inline-block;
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: 100px;
}

/* Accordion container */
.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

/* Accordion item */
.faq-accordion-item {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-card);
  transition: background-color 200ms ease;
}

.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-item.faq-open {
  background-color: #111118;
}

/* Question (h2) */
.faq-accordion-question {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.faq-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  gap: 16px;
  transition: opacity 150ms ease;
}

.faq-accordion-trigger:hover {
  opacity: 0.8;
}

@media (max-width: 1000px) {
  .faq-accordion-trigger {
    padding: 18px 16px;
    font-size: 1.4rem;
  }
}

/* Chevron icon */
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

/* Answer (h3) */
.faq-accordion-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1), padding 350ms ease;
}

.faq-open .faq-accordion-answer {
  max-height: 600px;
}

.faq-accordion-answer-inner {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  padding: 0 24px 22px;
}

@media (max-width: 1000px) {
  .faq-accordion-answer-inner {
    padding: 0 16px 18px;
    font-size: 1.4rem;
  }
}

/* FAQ footer links */
.faq-footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.faq-footer-link:hover {
  background-color: rgba(193, 209, 8, 0.12);
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.faq-footer-link.primary {
  background-color: var(--accent);
  color: #000000;
  border-color: var(--accent);
}

.faq-footer-link.primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #000000;
}

/* ===================== SHARED PAGE STYLES (FAQ & ABOUT PAGES) ===================== */

.page-body {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #0b0b13;
}

.page-root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Page nav */
.page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background-color: rgba(22, 22, 30, 0.95);
  border-bottom: 1px solid #333333;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .page-nav {
    padding: 0 16px;
    height: 60px;
  }
}

.page-nav-logo {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.page-nav-logo span {
  color: #C1D108;
}

.page-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 600px) {
  .page-nav-links {
    gap: 16px;
  }
}

.page-nav-link {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #aaaaaa;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}

.page-nav-link:hover,
.page-nav-link.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
  text-decoration: none;
}

.page-nav-cta {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background-color 200ms ease, opacity 200ms ease;
}

.page-nav-cta:hover {
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 0.9;
  text-decoration: none;
}

/* Page main */
.page-main {
  flex: 1;
}

/* Page footer */
.page-footer {
  border-top: 1px solid #333333;
  padding: 32px 40px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-footer {
    padding: 24px 16px;
  }
}

.page-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.page-footer-copy {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  color: #aaaaaa;
  margin: 0;
}

.page-footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.page-footer-links a {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  color: #aaaaaa;
  text-decoration: none;
  transition: color 200ms ease;
}

.page-footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ===================== PAGE HERO ===================== */

.page-hero {
  background-color: #16161e;
  border-bottom: 1px solid #333333;
  padding: 80px 40px 64px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 48px 16px 40px;
  }
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.page-hero-breadcrumb a,
.page-hero-breadcrumb span {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  transition: color 150ms ease;
}

.page-hero-breadcrumb a:hover {
  color: #aaaaaa;
  text-decoration: none;
}

.page-hero-breadcrumb .sep {
  color: #333333;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #C1D108;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid #C1D108;
  border-radius: 100px;
}

.page-hero-h1 {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.page-hero-h1 span {
  color: #C1D108;
}

@media (max-width: 768px) {
  .page-hero-h1 {
    font-size: 2.8rem;
  }
}

.page-hero-desc {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
}

@media (max-width: 768px) {
  .page-hero-desc {
    font-size: 1.6rem;
  }
}

/* ===================== PAGE CONTENT SECTION ===================== */

.page-section {
  padding: 64px 40px;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .page-section {
    padding: 40px 16px;
  }
}

.page-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-section-alt {
  background-color: #16161e;
}

.page-section-title {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.page-section-subtitle {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #aaaaaa;
  margin: 0 0 40px 0;
  line-height: 1.6;
}

/* ===================== STAT BOXES ===================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background-color: #09090e;
  border-radius: 16px;
  border: 1px solid #1a1a24;
  transition: border-color 200ms ease;
}

.stat-box:hover {
  border-color: #333333;
}

.stat-box-label {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #aaaaaa;
  margin: 0;
}

.stat-box-value {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.stat-box-value.accent {
  color: #C1D108;
}

.stat-box-note {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #666666;
  margin: 0;
}

/* ===================== FEATURE CARDS ===================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background-color: #09090e;
  border-radius: 16px;
  border: 1px solid #1a1a24;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.feature-card:hover {
  border-color: #333333;
  background-color: #111118;
}

.feature-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(193, 209, 8, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-card-title {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.feature-card-desc {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
}

/* ===================== FAQ PAGE STYLES ===================== */

.faqpage-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faqpage-card {
  background-color: #09090e;
  border: 1px solid #1a1a24;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faqpage-card:hover {
  border-color: #333333;
}

.faqpage-card.faqpage-open {
  border-color: #333333;
}

.faqpage-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  gap: 16px;
  transition: opacity 150ms ease;
}

.faqpage-trigger:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .faqpage-trigger {
    padding: 18px 16px;
    font-size: 1.4rem;
  }
}

.faqpage-question {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  margin: 0;
  padding: 0;
  line-height: inherit;
}

.faqpage-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  color: #666666;
}

.faqpage-chevron svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faqpage-open .faqpage-chevron {
  transform: rotate(180deg);
  color: #C1D108;
}

.faqpage-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faqpage-open .faqpage-answer {
  max-height: 800px;
}

.faqpage-answer-inner {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.7;
  margin: 0;
  padding: 0 24px 22px;
  border-top: 1px solid #1a1a24;
}

@media (max-width: 768px) {
  .faqpage-answer-inner {
    padding: 0 16px 18px;
  }
}

/* FAQ page category title */
.faqpage-category {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  padding-top: 32px;
}

.faqpage-category:first-child {
  padding-top: 0;
}

/* ===================== ABOUT PAGE STYLES ===================== */

.about-hero {
  background: linear-gradient(135deg, #0c0c1a 0%, #16161e 50%, #0a1a0a 100%);
  border-bottom: 1px solid #333333;
  padding: 80px 40px 64px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 48px 16px 40px;
  }
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-mission {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.6;
  max-width: 720px;
  margin: 0;
}

@media (max-width: 768px) {
  .about-mission {
    font-size: 1.6rem;
  }
}

/* Content block */
.about-content-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-content-block p {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.7;
  margin: 0;
}

.about-content-block p strong {
  color: #ffffff;
  font-weight: 600;
}

/* Network list */
.network-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0 0;
  padding: 0;
  list-style: none;
}

.network-list li {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid #333333;
  border-radius: 100px;
}

/* Team / value cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  padding: 24px;
  background-color: #09090e;
  border: 1px solid #1a1a24;
  border-radius: 16px;
  transition: border-color 200ms ease;
}

.value-card:hover {
  border-color: #333333;
}

.value-card-title {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #C1D108;
  margin: 0 0 10px 0;
}

.value-card-desc {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
}

/* ===================== SHARED BUTTON STYLES ===================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  background-color: #C1D108;
  border: 1px solid #C1D108;
  border-radius: 8px;
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, opacity 200ms ease;
  box-sizing: border-box;
}

.btn-primary:hover {
  background-color: #a8b807;
  border-color: #a8b807;
  color: #000000;
  text-decoration: none;
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, opacity 200ms ease;
  box-sizing: border-box;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #555555;
  color: #ffffff;
  text-decoration: none;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================== DIVIDER ===================== */

.page-divider {
  width: 100%;
  height: 1px;
  background-color: #333333;
  border: none;
  margin: 0;
}

/* ===================== HIGHLIGHT TEXT ===================== */

.text-accent {
  color: #C1D108;
}

.text-muted-color {
  color: #aaaaaa;
}

.text-white {
  color: #ffffff;
}

/* ===================== NOTICE BOX ===================== */

.notice-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #1295f3;
  border-radius: 12px;
  margin-top: 32px;
}

.notice-box-text {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
}

.notice-box-text a {
  color: #6282ff;
  text-decoration: none;
}

.notice-box-text a:hover {
  text-decoration: underline;
}

/* ===================== RESPONSIVE UTILITY ===================== */

@media (max-width: 1200px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 1201px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ===================== SCROLLBAR STYLES FOR NEW PAGES ===================== */

.page-body::-webkit-scrollbar {
  width: 6px;
}

.page-body::-webkit-scrollbar-track {
  background: #09090e;
}

.page-body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.page-body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

/* ===================== TIMELINE (ABOUT) ===================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, #C1D108, rgba(193, 209, 8, 0.1));
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 0 0 32px 0;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #09090e;
  border: 2px solid #C1D108;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #C1D108;
}

.timeline-content {
  flex: 1;
  padding-top: 4px;
}

.timeline-year {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #C1D108;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px 0;
}

.timeline-title {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.timeline-desc {
  font-family: Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
}