:root {
  --color-bg: #0a0e17;
  --color-bg-soft: #111827;
  --color-bg-muted: #0d1421;
  --color-accent: #06b6d4;
  --color-accent-strong: #0891b2;
  --color-secondary: #10b981;
  --color-text: #f9fafb;
  --color-muted: #9ca3af;
  --color-line: rgba(249, 250, 251, 0.12);
  --color-terminal: #000000;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.36);
  --font-sans: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --container: min(1200px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(6, 182, 212, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--color-bg) 0%, #070a11 100%);
  font-family: var(--font-sans);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(6, 182, 212, 0.7);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 14, 23, 0.86);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand__name {
  font-size: 1.05rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.nav-menu a,
.site-footer a {
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.site-footer a:hover {
  color: var(--color-accent);
}

.nav-menu a[aria-current="page"] {
  color: var(--color-text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.language-switch__button,
.nav-toggle {
  border: 0;
  color: var(--color-muted);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.language-switch__button {
  padding: 4px;
  font-weight: 700;
}

.language-switch__button.is-active {
  color: var(--color-accent);
}

.icon-button,
.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.icon-button--github {
  color: #ffffff;
  background: rgba(249, 250, 251, 0.08);
  border-color: rgba(249, 250, 251, 0.28);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.icon-button--github:hover {
  color: var(--color-accent);
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.56);
}

.icon-button svg,
.nav-toggle svg,
.button svg {
  width: 18px;
  height: 18px;
}

.icon-button--github svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke-width: 2.4;
}

.nav-toggle {
  display: none;
}

.hero {
  width: var(--container);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 4vw, 58px);
  padding: 72px 0 86px;
}

.hero__content {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.65rem, 5.15vw, 4.95rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero__subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.button--primary {
  color: #001016;
  background: var(--color-accent);
  box-shadow: 0 18px 44px rgba(6, 182, 212, 0.22);
}

.button--secondary {
  color: var(--color-text);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.03);
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary:hover {
  background: #22d3ee;
  box-shadow: 0 20px 54px rgba(6, 182, 212, 0.32);
}

.button--secondary:hover {
  border-color: rgba(6, 182, 212, 0.55);
}

.page-hero {
  width: var(--container);
  min-height: 360px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 82px 0 58px;
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero__subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.terminal-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.26);
  border-radius: 8px;
  background: var(--color-terminal);
  box-shadow: var(--shadow-soft), 0 0 44px rgba(16, 185, 129, 0.16);
}

.terminal-window__bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #080808;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.terminal-dot--red {
  background: #ff5f57;
}

.terminal-dot--yellow {
  background: #ffbd2e;
}

.terminal-dot--green {
  background: #28c840;
}

.terminal-title {
  margin-left: auto;
  color: #6b7280;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.terminal-window__body {
  min-height: 460px;
  margin: 0;
  padding: 26px;
  color: var(--color-secondary);
  font-family: var(--font-mono);
  font-size: clamp(0.76rem, 1.08vw, 0.94rem);
  line-height: 1.72;
  white-space: pre-wrap;
  text-shadow: 0 0 14px rgba(16, 185, 129, 0.45);
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background-color: var(--color-accent);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.features {
  width: var(--container);
  margin: 0 auto;
  padding: 70px 0 42px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 64px;
  padding: 74px 0;
  border-top: 1px solid var(--color-line);
}

.feature-row--reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(180px, 0.72fr);
}

.feature-row--reverse .feature-icon {
  order: 2;
}

.feature-row--reverse .feature-copy {
  order: 1;
}

.feature-icon {
  min-height: 240px;
  display: grid;
  place-items: center;
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(16, 185, 129, 0.07));
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.feature-icon svg {
  width: clamp(96px, 14vw, 150px);
  height: clamp(96px, 14vw, 150px);
  stroke-width: 1.25;
}

.feature-copy h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.feature-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
}

.check-list svg,
.gui-point svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
}

.inline-code code {
  display: inline-block;
  max-width: 100%;
  padding: 10px 12px;
  color: var(--color-secondary);
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  font-family: var(--font-mono);
  overflow-x: auto;
}

.gui-preview {
  padding: 38px 0 44px;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.gui-preview > * {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.gui-frame {
  max-width: 820px;
  aspect-ratio: 763 / 700;
  overflow: hidden;
  border-radius: 8px;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #0a0e17;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gui-frame:hover {
  transform: scale(1.015);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.42);
}

.gui-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gui-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
  color: var(--color-text);
}

.gui-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
}

.download-options {
  width: var(--container);
  margin: 0 auto;
  padding: 30px 0 84px;
}

.download-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.3fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  padding: 44px 0;
  border-top: 1px solid var(--color-line);
}

.download-row--reverse {
  grid-template-columns: auto minmax(0, 1fr) minmax(130px, 0.3fr);
}

.download-row--reverse .download-icon {
  order: 3;
}

.download-row--reverse .download-copy {
  order: 2;
}

.download-row--reverse .button {
  order: 1;
}

.download-icon {
  min-height: 142px;
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--color-accent);
  border-block: 1px solid var(--color-line);
}

.download-icon svg {
  width: 64px;
  height: 64px;
  stroke-width: 1.35;
}

.download-icon span {
  color: var(--color-muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.download-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.1;
}

.download-copy p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.code-block {
  grid-column: 1 / -1;
  order: 4;
  margin: 0;
  padding: 22px 24px;
  color: var(--color-secondary);
  background: var(--color-bg);
  border-block: 1px solid rgba(16, 185, 129, 0.22);
  font-family: var(--font-mono);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  line-height: 1.75;
  overflow-x: auto;
  white-space: pre;
}

.source-install {
  padding: 80px 0 88px;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.source-install__inner {
  width: var(--container);
  margin: 0 auto;
}

.source-install h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.source-install p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.code-block--large {
  margin-top: 34px;
}

.integrity-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 42px 0 0;
  border-top: 1px solid var(--color-line);
}

.integrity-strip > svg {
  width: 48px;
  height: 48px;
  color: var(--color-secondary);
  stroke-width: 1.5;
}

.integrity-strip h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.integrity-strip p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.site-footer {
  padding: 50px 0;
  background: #070a11;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.site-footer p {
  max-width: 320px;
  color: var(--color-muted);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: var(--color-text);
}

.site-footer a:not(.brand) {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
}

.brand--footer {
  margin-bottom: 12px;
}

/* --- About Page Specifics --- */
.about-origin {
  width: var(--container);
  margin: 0 auto;
  padding: 40px 0 80px;
}

.about-origin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-quote__text {
  margin: 0;
  color: var(--color-accent);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
}

.about-quote__author {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.about-principles {
  width: var(--container);
  margin: 0 auto;
  padding: 80px 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px 32px;
}

.principle-item {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  gap: 16px;
}

.principle-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
}

.principle-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-secondary);
}

.principle-item__icon i,
.principle-item__icon svg {
  width: 32px;
  height: 32px;
}

.principle-item h3 {
  margin: 0;
  font-size: 1.25rem;
}

.principle-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.about-stack {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 80px;
}

.stack-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.badge {
  display: inline-flex;
  padding: 8px 18px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: var(--font-mono);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.badge:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.about-actions {
  width: 100%;
  padding: 38px 0 44px;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.about-actions > * {
  width: var(--container);
  margin: 0 auto;
}

/* --- FAQ Section --- */
.about-faq {
  width: var(--container);
  max-width: 840px;
  margin: 0 auto;
  padding: 0 0 80px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.is-active {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.04);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--color-muted);
}

.faq-item.is-active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;
  color: var(--color-muted);
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item.is-active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
  opacity: 1;
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .download-row,
  .download-row--reverse {
    grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
  }

  .download-row .button,
  .download-row--reverse .button {
    grid-column: 2;
    justify-self: start;
    order: initial;
  }

  .download-row--reverse .download-icon,
  .download-row--reverse .download-copy {
    order: initial;
  }

  .hero__content {
    max-width: 720px;
  }

  .terminal-window {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(10, 14, 23, 0.98);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .about-origin__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 48px 0 62px;
    gap: 34px;
  }

  .page-hero {
    min-height: 300px;
    padding: 58px 0 42px;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4.1rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .download-options {
    padding-bottom: 60px;
  }

  .download-row,
  .download-row--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 0;
  }

  .download-row .button,
  .download-row--reverse .button {
    grid-column: auto;
    justify-self: stretch;
  }

  .download-icon {
    min-height: 128px;
  }

  .code-block {
    padding: 18px;
    font-size: 0.72rem;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  .source-install {
    padding: 62px 0 68px;
  }

  .integrity-strip {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 46px 0;
  }

  .terminal-window__body {
    min-height: 420px;
    padding: 18px;
  }

  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 0;
  }

  .feature-row--reverse .feature-icon,
  .feature-row--reverse .feature-copy {
    order: initial;
  }

  .feature-icon {
    min-height: 176px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .brand__name {
    display: none;
  }

  .icon-button {
    display: none;
  }

  .icon-button--github {
    display: inline-flex;
  }

  .gui-points {
    align-items: flex-start;
    flex-direction: column;
  }
}

.button--support {
  color: #000;
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button--support:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
  background: linear-gradient(135deg, #FFD54F 0%, #FFB300 100%);
  color: #000;
}

@media (max-width: 480px) {
  .button--support {
    padding: 6px 10px;
    font-size: 13px;
  }
}

.donate-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.donate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
}

.donate-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-secondary);
}

.donate-card__icon i,
.donate-card__icon svg {
  width: 32px;
  height: 32px;
}

.nav-actions .button--support {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%) !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4) !important;
}

.nav-actions .button--support:hover {
  background: linear-gradient(135deg, #FFD54F 0%, #FFB300 100%) !important;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6) !important;
  color: #000 !important;
}

/* GUI Carousel Styles */
.carousel-container {
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  padding: 24px 24px 64px 24px; /* Space to breathe */
  box-sizing: border-box;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.gui-preview .section-heading {
  max-width: 900px;
}

.gui-preview .section-heading {
  max-width: 1000px !important;
}
