:root {
  --color-dark: #0B0E11;
  --color-bright: #F5F7F7;
  --color-accent: #0FC65C;
  --color-bg: #111417;
  --color-text: #E6EAEA;
  --color-muted: #8A9296;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --radius: 0.75rem;
  --header-height: 76px;
  --accent-glow: 0 0 15px rgba(15, 198, 92, 0.35);
}

/* Minimal CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100%;
  display: flex; 
  flex-direction: column;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Brand Layout Chrome */
.bcg-header {
  background-color: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.bcg-header-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.bcg-header-left {
  display: flex;
  align-items: center;
}
.bcg-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bcg-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Logo Class */
.bcg-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-bright);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  transition: opacity 0.2s ease;
}
.bcg-logo:hover {
  opacity: 0.9;
}
.bcg-logo img {
  max-height: 38px;
  width: auto;
}

/* CTAs Customization */
.bcg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
}
.bcg-cta--primary {
  background-color: var(--color-accent);
  color: var(--color-dark);
}
.bcg-cta--primary:hover {
  background-color: #12df69;
  box-shadow: var(--accent-glow);
  transform: translateY(-1px);
}
.bcg-cta--secondary {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.bcg-cta--secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Always Burger Menu Implementation (collapse_menu_to_burger is true) */
.bcg-nav {
  position: relative;
  display: flex;
  align-items: center;
}
.bcg-nav__checkbox {
  display: none !important;
}
.bcg-nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  z-index: 1010;
  position: relative;
}
.bcg-nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}
.bcg-nav__toggle:hover .bcg-nav__toggle-bar {
  background-color: var(--color-accent);
}

/* Transform Burger on Checkbox State */
.bcg-nav__checkbox:checked ~ .bcg-nav__toggle .bcg-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.bcg-nav__checkbox:checked ~ .bcg-nav__toggle .bcg-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.bcg-nav__checkbox:checked ~ .bcg-nav__toggle .bcg-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Sliding Menu Drawer always visible on toggle */
.bcg-nav__list {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background-color: var(--color-dark);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: -15px 0 40px rgba(0,0,0,0.85);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1005;
  overflow-y: auto;
}
.bcg-nav__checkbox:checked ~ .bcg-nav__list {
  right: 0;
}

/* Dropdown state / Item styling */
.bcg-nav__item {
  width: 100%;
}
.bcg-nav__link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.bcg-nav__link:hover {
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--color-accent);
}
.bcg-nav__link--active {
  background-color: rgba(15, 198, 92, 0.08);
  color: var(--color-accent);
  font-weight: 600;
  border-left: 3px solid var(--color-accent);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Submenu Accordion Style */
.bcg-nav__submenu {
  list-style: none;
  margin: 0.25rem 0 0.5rem 1.25rem;
  padding: 0 0 0 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bcg-nav__submenu .bcg-nav__link {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Language Switcher Compact Style */
.bcg-lang {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 3px;
  gap: 2px;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
}
.bcg-lang__item {
  display: block;
}
.bcg-lang__link {
  display: block;
  padding: 4px 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-muted);
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.15s ease;
}
.bcg-lang__link:hover {
  color: var(--color-text);
}
.bcg-lang__link--active {
  background-color: var(--color-accent);
  color: var(--color-dark);
}

/* Responsive Header optimization */
@media (max-width: 576px) {
  .bcg-header-actions .bcg-cta--secondary {
    display: none;
  }
}

/* Breadcrumbs Shell */
.bcg-breadcrumbs {
  background-color: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.85rem 1.5rem;
}
.bcg-breadcrumbs ol {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}
.bcg-breadcrumbs__item {
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--color-muted);
}
.bcg-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.3;
  color: var(--color-text);
}
.bcg-breadcrumbs__link {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.bcg-breadcrumbs__link:hover {
  color: var(--color-accent);
}
.bcg-breadcrumbs__item[aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

/* Main Content Region */
.bcg-main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* Footer Layout */
.bcg-footer {
  background-color: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 1.5rem 3rem;
  margin-top: auto;
}
.bcg-footer-container {
  max-width: 1440px;
  margin: 0 auto;
}
.bcg-footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .bcg-footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.bcg-footer-brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-bright);
  letter-spacing: -0.02em;
}
.bcg-footer-logo-fallback {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-bright);
  letter-spacing: -0.02em;
}
.bcg-footer-tagline {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  max-width: 320px;
}
.bcg-footer-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.bcg-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 2rem;
}
.bcg-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .bcg-footer-bottom {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}

/* Footer Nav (Compact layout) */
.bcg-footer-nav-wrapper {
  display: block;
}
.bcg-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bcg-footer-nav__link {
  color: var(--color-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.bcg-footer-nav__link:hover {
  color: var(--color-accent);
}
.bcg-footer-meta {
  color: var(--color-muted);
  font-size: 0.8125rem;
}
.bcg-footer-copyright {
  margin: 0;
}