/* Code Widget for Multi-Language Tabs */
.code-widget {
  background: #1e1e1e; /* Match code block bg */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #333;
}

.code-widget-header {
  display: flex;
  background: #2d2d2d;
  border-bottom: 1px solid #404040;
  padding: 0 1rem;
}

.code-tab-btn {
  background: transparent;
  border: none;
  color: #888;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.code-tab-btn:hover {
  color: #ccc;
}

.code-tab-btn.active {
  color: #fff;
  border-bottom-color: #61dafb; /* React Blue / Accent Color */
}

/* Hide the individual code block labels inside the widget */
.code-widget .code-block .code-label {
  display: none;
}

.code-widget .code-block {
  margin: 0;
  border-radius: 0;
}
/* Neo-Brutalist Design System for Monday Expert */

:root {
  --black: #0a0a0a;
  --white: #f5f5f0;
  --accent: #ff3d00;
  --accent-secondary: #00ff88;
  --grid-color: rgba(255, 61, 0, 0.1);
}

.light-theme {
  --black: #f5f5f0;
  --white: #0a0a0a;
  --accent: #ff3d00;
  --accent-secondary: #00bf66;
  --grid-color: rgba(255, 61, 0, 0.08);
}

.purple-theme {
  --black: #2d2640;
  --white: #f0edf5;
  --accent: #ff3d00;
  --accent-secondary: #4ade80;
  --grid-color: rgba(167, 139, 250, 0.1);
  --purple-accent: #a78bfa;
}

/* Fix stats bar border in light theme */
.light-theme .stats-bar,
.light-theme .credibility-strip,
.light-theme footer,
.light-theme .pricing-features li,
.light-theme .courses-list li {
  border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .pricing-card.featured .pricing-features li {
  border-color: rgba(255, 255, 255, 0.1);
}

.light-theme .service-card:hover {
  background: rgba(255, 61, 0, 0.05);
  /* Keep hover effect subtle */
}

/* Purple theme overrides */
.purple-theme .stats-bar,
.purple-theme .credibility-strip,
.purple-theme footer,
.purple-theme .pricing-features li,
.purple-theme .courses-list li {
  border-color: rgba(167, 139, 250, 0.2);
}

.purple-theme .service-card:hover {
  background: rgba(167, 139, 250, 0.1);
}

.purple-theme .card,
.purple-theme .service-card,
.purple-theme .pricing-card {
  border-color: rgba(167, 139, 250, 0.2);
}

.purple-theme .card:hover,
.purple-theme .service-card:hover,
.purple-theme .pricing-card:hover {
  border-color: var(--purple-accent);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Mono', monospace;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grid Background */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, var(--black) 60%, transparent);
}

.logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Navbar CTA Button - override nav-links padding */
.nav-links a.btn {
  padding: 10px 30px;
}

.nav-links a.btn::after {
  display: none;
}

/* Navbar Theme Toggle */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  cursor: pointer;
  padding: 5px 10px;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: var(--white);
  color: var(--black);
}

.theme-icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* Hide/Show icons based on theme */
.light-icon {
  display: none;
}

.dark-icon {
  display: block;
}

.purple-icon {
  display: none;
}

.light-theme .light-icon {
  display: block;
}

.light-theme .dark-icon {
  display: none;
}

.light-theme .purple-icon {
  display: none;
}

.purple-theme .light-icon {
  display: none;
}

.purple-theme .dark-icon {
  display: none;
}

.purple-theme .purple-icon {
  display: block;
  color: #a78bfa;
}

/* Mobile Nav Actions (theme toggle + hamburger) */
.mobile-nav-actions {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.mobile-theme-btn {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  padding: 100px 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 20px 0;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--accent);
}

.mobile-nav-cta {
  padding-top: 30px;
  border-bottom: none !important;
}

.mobile-nav-cta .btn {
  width: 100%;
  text-align: center;
}

body.menu-open {
  overflow: hidden;
}

/* Light theme mobile menu */
.light-theme .mobile-menu {
  background: var(--white);
}

.light-theme .mobile-nav-links li {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.light-theme .mobile-nav-links a {
  color: var(--black);
}

.light-theme .hamburger-line {
  background: var(--black);
}

.purple-theme .mobile-menu {
  background: var(--black);
}

.purple-theme .mobile-nav-links li {
  border-bottom-color: rgba(167, 139, 250, 0.2);
}

.purple-theme .hamburger-line {
  background: var(--white);
}

@media (max-width: 768px) {
  .mobile-nav-actions {
    display: flex;
  }

  .mobile-nav-actions .mobile-theme-btn {
    display: flex;
  }

  .mobile-nav-actions .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block !important;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 130px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 6vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero h1 span {
  display: block;
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.hero h1 span:nth-child(1) {
  animation-delay: 0.1s;
}

.hero h1 span:nth-child(2) {
  animation-delay: 0.2s;
}

.hero h1 span:nth-child(3) {
  animation-delay: 0.3s;
}

.hero h1 .accent-text {
  color: var(--accent);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  max-width: 500px;
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 40px;
  animation: slideUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: slideUp 0.8s ease 0.5s forwards;
}

.btn {
  padding: 18px 40px;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  /* Fix overflow clipping on anchor tags */
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

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

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary::before {
  background: var(--white);
}

.btn-primary:hover {
  color: var(--black);
}

.btn-sm {
  padding: 10px 30px;
  font-size: 0.75rem;
}

/* Resource Lists */
.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-list li {
  margin-bottom: 15px;
}

.resource-list a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  display: block;
  padding-left: 15px;
  border-left: 2px solid transparent;
}

.resource-list a:hover {
  opacity: 1;
  color: var(--accent);
  border-left-color: var(--accent);
}

/* Stats Bar */
.stats-bar {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.stat:nth-child(1) {
  animation-delay: 0.6s;
}

.stat:nth-child(2) {
  animation-delay: 0.7s;
}

.stat:nth-child(3) {
  animation-delay: 0.8s;
}

.stat-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Services Section */
.services {
  padding: 120px 40px;
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 8rem;
  line-height: 1;
  -webkit-text-stroke: 1px var(--accent);
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.service-card {
  background: var(--black);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(255, 61, 0, 0.05);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 30px;
  display: block;
}

.service-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-desc {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 30px;
}

.service-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.service-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-card:hover .service-link::after {
  transform: translateX(5px);
}

/* Expertise Section */
.expertise {
  padding: 120px 40px;
  position: relative;
  z-index: 1;
  background: var(--accent);
  color: var(--black);
}

.expertise .section-number {
  -webkit-text-stroke: 1px var(--black);
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.expertise-list {
  list-style: none;
}

.expertise-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: padding-left 0.3s ease;
}

.expertise-item:hover {
  padding-left: 20px;
}

.expertise-item span,
.expertise-item a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}

.expertise-item::after {
  content: '+';
  font-size: 1.5rem;
  opacity: 0.5;
}

.expertise-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.expertise-text strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
  padding: 120px 40px;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 60px;
}

.pricing-card {
  background: var(--black);
  padding: 60px 40px;
  position: relative;
  transition: all 0.4s ease;
}

.pricing-card.featured {
  background: var(--white);
  color: var(--black);
}

.pricing-card.featured .pricing-cta {
  background: var(--black);
  color: var(--white);
}

.pricing-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.6;
}

.pricing-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.pricing-card.featured .pricing-features li {
  border-color: rgba(0, 0, 0, 0.1);
}

.pricing-cta {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  border: none;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  background: var(--accent-secondary);
  color: var(--black);
}

/* Make pricing-cta work as link */
a.pricing-cta {
  display: block;
  text-align: center;
  text-decoration: none;
}

/* Credibility Strip */
.credibility-strip {
  padding: 40px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.credibility-strip p {
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Section Intro */
.section-intro {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin-bottom: 60px;
  margin-top: -40px;
}

/* Courses Section */
.courses-section {
  padding: 120px 40px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
}

.courses-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.courses-info h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.1;
}

.courses-info h3 span {
  color: var(--accent);
  font-size: 1rem;
  display: block;
  margin-top: 10px;
  letter-spacing: 3px;
}

.courses-info>p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.courses-list {
  list-style: none;
  margin-bottom: 30px;
}

.courses-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.courses-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.courses-note {
  font-size: 0.85rem;
  opacity: 0.6;
  font-style: italic;
}

/* Newsletter Signup */
.newsletter-signup {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-signup h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.newsletter-signup>p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Philosophy Section */
.philosophy {
  padding: 120px 40px;
  position: relative;
  z-index: 1;
  background: var(--accent);
  color: var(--black);
}

.philosophy .section-number {
  -webkit-text-stroke: 1px var(--black);
}

.philosophy-content {
  margin-top: 60px;
  max-width: 800px;
}

.philosophy-text strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.philosophy-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.philosophy-list {
  list-style: none;
  margin: 30px 0;
}

.philosophy-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  padding-left: 30px;
  position: relative;
}

.philosophy-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Testimonial Section */
.testimonial-section {
  padding: 120px 40px;
  position: relative;
  z-index: 1;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
  margin-top: 40px;
}

/* Final CTA Section */
.final-cta {
  padding: 100px 40px;
  position: relative;
  z-index: 1;
  background: var(--black);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-content>p {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  justify-content: center;
}

.cta-form-row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 500px;
}

.cta-input {
  flex: 1;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
}

.cta-input:focus {
  outline: none;
  border-color: var(--accent);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact {
  padding: 120px 40px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-info h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.1;
}

.contact-info h3 span {
  color: var(--accent);
}

.contact-details {
  margin-top: 40px;
}

.contact-details p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.7;
}

.contact-details a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
  padding: 60px 40px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-newsletter h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-newsletter p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-form-row {
  display: flex;
  gap: 10px;
}

.footer-input {
  flex: 1;
  padding: 10px 15px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-nav-column h5 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.footer-nav-column a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-nav-column a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .expertise-content,
  .contact-content,
  .courses-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-form-row {
    flex-direction: column;
  }

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

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 100px 20px 80px;
  }

  .stats-bar {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
  }

  .services,
  .expertise,
  .pricing,
  .contact,
  .courses-section,
  .philosophy,
  .testimonial-section {
    padding: 80px 20px;
  }

  .section-number {
    font-size: 4rem;
  }

  .final-cta {
    padding: 60px 20px;
  }

  .cta-content h3 {
    font-size: 1.8rem;
  }

  .courses-info h3 {
    font-size: 1.8rem;
  }

  .philosophy-text strong {
    font-size: 1.8rem;
  }

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

  .footer-form-row {
    flex-direction: column;
  }

  .newsletter-signup {
    padding: 30px 20px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* Mermaid diagrams - prevent text from becoming unreadable on mobile */
  pre.mermaid {
    padding: 20px 15px;
    margin: 30px -15px;
    width: calc(100% + 30px);
  }

  pre.mermaid svg {
    max-width: none;
    min-width: 500px;
  }

  /* Fix Safari foreignObject bug - position:relative on parent breaks text positioning */
  .article-content {
    position: static;
  }
}

/* ========================================
   ARTICLE PAGES
   ======================================== */

/* Article Header */
.article-header {
  padding: 140px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.article-category {
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.article-type {
  padding: 6px 16px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.article-type.tutorial-type {
  background: #2196F3;
  color: var(--white);
}

.article-type.article-type-badge {
  background: #9C27B0;
  color: var(--white);
}

.article-type.template-type {
  background: #FF9800;
  color: var(--white);
}

.article-date,
.article-read-time {
  font-size: 0.8rem;
  opacity: 0.6;
}

.article-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.article-excerpt {
  font-size: 1.2rem;
  opacity: 0.8;
  line-height: 1.8;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

/* Article Container - provides solid background */
.article-container {
  background: #0a0a0a;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Article Content */
.article-content {
  padding: 60px 40px 120px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.article-content h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin: 60px 0 30px;
  color: var(--accent);
}

.article-content h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 40px 0 20px;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 25px;
  opacity: 0.9;
}

.article-content ul,
.article-content ol {
  margin: 25px 0;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.article-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.3s;
}

.article-content a:hover {
  opacity: 0.7;
}

/* Code Blocks */
.code-block {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  padding: 25px;
  margin: 30px 0;
  overflow-x: auto;
  font-size: 0.9rem;
  line-height: 1.6;
}

.code-block code {
  color: var(--white);
  background: none;
  padding: 0;
  border: none;
}

.code-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
  display: block;
}

/* Mermaid Diagrams */
pre.mermaid {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  padding: 30px;
  margin: 40px 0;
  overflow-x: auto;
  text-align: center;
}

pre.mermaid svg {
  max-width: 100%;
  height: auto;
}

/* Light theme mermaid adjustments */
.light-theme pre.mermaid {
  background: #f0f0f0;
  border-color: rgba(0, 0, 0, 0.1);
}

/* Diagram SVG containers for dark/light theme */
.diagram-container {
  margin: 30px 0;
  text-align: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.diagram-container img {
  max-width: 100%;
  height: auto;
  min-width: 500px;
}

/* Dark theme: show dark diagram, hide light and purple */
.diagram-dark {
  display: block;
  margin: 0 auto;
}

.diagram-light,
.diagram-purple {
  display: none;
}

/* Light theme: show light diagram, hide dark and purple */
.light-theme .diagram-dark,
.light-theme .diagram-purple {
  display: none;
}

.light-theme .diagram-light {
  display: block;
  margin: 0 auto;
}

/* Purple theme: show purple diagram, hide dark and light */
.purple-theme .diagram-dark,
.purple-theme .diagram-light {
  display: none;
}

.purple-theme .diagram-purple {
  display: block;
  margin: 0 auto;
}

/* Light theme article container - white background to improve readability over grid */
.light-theme .article-container {
  background: #f5f5f0;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.light-theme .author-box {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Light theme tables */
.light-theme .article-content table {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.15);
}

.light-theme .article-content th,
.light-theme .article-content td {
  border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .article-content th {
  background: #f0f0f0;
}

.light-theme .article-content tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

.light-theme .article-content tr:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Inline Code */
.article-content code {
  background: #1a1a1a;
  padding: 3px 8px;
  font-size: 0.9em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.article-content th,
.article-content td {
  padding: 16px 20px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content th {
  background: #1a1a1a;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.article-content td {
  font-size: 0.95rem;
  line-height: 1.6;
}

.article-content tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.article-content tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Article Images */
.article-image {
  margin: 40px 0;
}

.article-image img {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.article-image figcaption {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 15px;
  text-align: center;
}

/* Video Embed */
.video-embed {
  margin: 40px 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Callout Boxes */
.callout {
  padding: 25px 30px;
  margin: 30px 0;
  border-left: 4px solid;
}

.callout-tip {
  background: rgba(0, 255, 136, 0.1);
  border-color: var(--accent-secondary);
}

.callout-warning {
  background: rgba(255, 61, 0, 0.1);
  border-color: var(--accent);
}

.callout-info {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
}

.callout-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.callout-tip .callout-label {
  color: var(--accent-secondary);
}

.callout-warning .callout-label {
  color: var(--accent);
}

.callout p {
  margin-bottom: 0;
}

/* Table of Contents */
.toc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  margin: 40px 0;
}

.toc h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--accent);
}

.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0;
}

.toc a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.9rem;
  border: none;
}

.toc a:hover {
  color: var(--accent);
  opacity: 1;
}

/* Article Tags */
.article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}

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

/* Author Box */
.author-box {
  display: flex;
  gap: 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  margin-top: 60px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  background: var(--accent);
  flex-shrink: 0;
}

.author-info h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Related Articles */
.related-articles {
  padding: 80px 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-articles h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.related-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
}

.related-card:hover {
  border-color: var(--accent);
  background: rgba(255, 61, 0, 0.05);
}

.related-card-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
}

.related-card h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Article Newsletter */
.article-newsletter {
  background: var(--accent);
  color: var(--black);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.article-newsletter h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.article-newsletter p {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

.article-newsletter .newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  flex-direction: row;
}

.article-newsletter .newsletter-form input[type="email"] {
  flex: 1;
  padding: 18px 20px;
  background: var(--black);
  border: none;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
}

.article-newsletter .newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.article-newsletter .newsletter-form input[type="submit"] {
  padding: 18px 30px;
  background: var(--black);
  border: none;
  color: var(--white);
}

.article-newsletter .newsletter-form input[type="submit"]:hover {
  background: var(--white);
  color: var(--black);
}

/* ========================================
   ARTICLES INDEX PAGE
   ======================================== */

.articles-header {
  padding: 140px 40px 60px;
  position: relative;
  z-index: 1;
}

.articles-header .section-intro {
  margin-top: 0;
  margin-bottom: 40px;
}

/* Articles Search */
.articles-search {
  margin-bottom: 30px;
}

.search-form {
  max-width: 500px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 14px 50px 14px 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.search-clear {
  position: absolute;
  right: 14px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s ease;
}

.search-clear:hover {
  color: var(--white);
}

.category-filters {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.category-filter {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.category-filter:hover,
.category-filter.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* Featured Articles */
.featured-articles {
  padding: 0 40px 80px;
  position: relative;
  z-index: 1;
}

.featured-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.featured-card {
  background: var(--black);
  padding: 40px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
}

.featured-card:hover {
  background: rgba(255, 61, 0, 0.05);
}

.featured-card-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
}

.featured-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 15px;
}

.featured-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-card-meta {
  font-size: 0.75rem;
  opacity: 0.5;
  display: flex;
  gap: 20px;
}

/* Articles List */
.articles-list {
  padding: 40px;
  position: relative;
  z-index: 1;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.article-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
}

.article-card:hover {
  border-color: var(--accent);
  background: rgba(255, 61, 0, 0.05);
}

.article-card-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
}

.article-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 15px;
}

.article-card-excerpt {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-card-meta {
  font-size: 0.75rem;
  opacity: 0.5;
  display: flex;
  gap: 20px;
}

.no-articles {
  text-align: center;
  padding: 80px 40px;
  opacity: 0.6;
}

/* Article Page Responsive */
@media (max-width: 768px) {

  .article-header,
  .article-content,
  .related-articles {
    padding-left: 20px;
    padding-right: 20px;
  }

  .related-grid,
  .featured-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .article-newsletter .newsletter-form {
    flex-direction: column;
  }

  .search-form {
    max-width: 100%;
  }

  .search-input {
    padding: 12px 44px 12px 42px;
    font-size: 0.85rem;
  }

  .category-filters {
    gap: 10px;
  }

  .category-filter {
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .articles-header,
  .articles-list,
  .featured-articles {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Mobile table styles */
  .article-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .article-content th,
  .article-content td {
    padding: 12px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

/* ========================================
   AUTHENTICATION PAGES
   ======================================== */

.auth-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.auth-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px;
  width: 100%;
  max-width: 480px;
}

.auth-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
  color: var(--white);
}

.auth-form .form-group {
  margin-bottom: 25px;
}

.auth-form .form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.7;
  color: var(--white);
}

.auth-form .form-group input[type="email"],
.auth-form .form-group input[type="password"],
.auth-form .form-group input[type="text"] {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.auth-form .form-group input:focus {
  outline: none;
  border-color: var(--accent);
}

.auth-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.auth-form .form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-form .form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  cursor: pointer;
}

.auth-form .form-checkbox label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.85rem;
}

.auth-form .password-hint {
  font-size: 0.7rem;
  opacity: 0.5;
  margin-left: 10px;
}

.auth-form .form-actions {
  margin-top: 35px;
}

.btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

.auth-links {
  margin-top: 30px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.auth-links a:hover {
  opacity: 0.7;
}

/* Auth error messages */
.auth-form .field_with_errors input {
  border-color: #ff4444;
}

.auth-form .error-messages,
#error_explanation {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid #ff4444;
  padding: 20px;
  margin-bottom: 30px;
}

.auth-form .error-messages h3,
#error_explanation h2 {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: #ff4444;
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-form .error-messages ul,
#error_explanation ul {
  margin: 0;
  padding-left: 20px;
  font-size: 0.85rem;
}

.auth-form .error-messages li,
#error_explanation li {
  margin-bottom: 5px;
  opacity: 0.9;
}

/* Flash messages on auth pages */
.auth-flash {
  margin-bottom: 30px;
  padding: 15px 20px;
  font-size: 0.85rem;
}

.auth-flash.notice {
  background: rgba(0, 255, 136, 0.1);
  border-left: 3px solid var(--accent-secondary);
}

.auth-flash.alert {
  background: rgba(255, 68, 68, 0.1);
  border-left: 3px solid #ff4444;
}

/* Auth Page Responsive */
@media (max-width: 768px) {
  .auth-container {
    padding: 20px;
  }

  .auth-box {
    padding: 40px 25px;
  }

  .auth-title {
    font-size: 2rem;
  }
}

/* Fix for technical terms in headers */
h1 code,
h2 code,
h3 code,
h4 code,
h5 code,
h6 code {
  text-transform: none !important;
}

/* Requested Utility Class */
.camel-case {
  text-transform: none !important;
}

/* Ultra specific override */
.article-content h1 code,
.article-content h2 code,
.article-content h3 code {
  text-transform: none !important;
}

/* Author Box Updates */
.author-link {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: all 0.2s ease;
}

.author-link:hover {
  background: var(--accent);
  color: var(--black);
}

.author-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem !important;
  color: var(--accent);
  margin-bottom: 10px !important;
  opacity: 0.9 !important;
}

.pronunciation {
  opacity: 0.6;
  font-style: italic;
  font-size: 0.75rem;
  margin-left: 5px;
}
/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.image-modal.open {
  opacity: 1;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border: 2px solid var(--primary);
  box-shadow: 8px 8px 0 var(--black);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--white);
}

.image-modal.open .image-modal-content {
  transform: scale(1);
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  font-family: 'Archivo Black', sans-serif;
  text-shadow: 2px 2px 0 var(--black);
  transition: transform 0.2s ease;
}

.image-modal-close:hover {
  transform: scale(1.1);
  color: var(--primary);
}

.clickable-image {
  cursor: zoom-in;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.clickable-image:hover {
  transform: scale(1.02);
  opacity: 1 !important;
}

/* --- Uniform Grid System (Option A) --- */
.grid-uniform {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.card-uniform {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}

.card-uniform:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.card-uniform-image-wrapper {
  height: 200px; /* Enforced Height */
  width: 100%;
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Style A1: Cover (Cropped) */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}

/* Style A2: Contain (Full image with letterboxing) */
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
  padding: 20px;
}

.card-uniform:hover img {
  opacity: 1;
}

.card-meta {
  padding: 20px;
}

.card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--white);
}

.card-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 6px;
  display: inline-block;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Modal Action Bar */
.modal-action-bar {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.modal-btn {
  background: var(--accent);
  color: var(--black);
  border: none;
  padding: 10px 20px;
  font-family: 'Space Mono', monospace; 
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.modal-btn:hover {
  background: var(--white);
}

/* Share Controls */
.share-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.share-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 currentColor;
}

.share-btn:active {
  transform: translate(0, 0);
  box-shadow: none;
}

.share-btn--linkedin {
  color: #0A66C2;
}

.share-btn--linkedin:hover {
  background: #0A66C2;
  color: #fff;
}

.share-btn--twitter {
  color: var(--white);
}

.share-btn--twitter:hover {
  background: var(--white);
  color: var(--black);
}

.share-btn--facebook {
  color: #1877F2;
}

.share-btn--facebook:hover {
  background: #1877F2;
  color: #fff;
}

.share-btn--copy {
  color: var(--accent);
}

.share-btn--copy:hover {
  background: var(--accent);
  color: var(--black);
}

.share-btn--copied {
  background: var(--accent-secondary);
  color: var(--black);
  border-color: var(--accent-secondary);
}

.share-icon {
  flex-shrink: 0;
}

.article-share-footer {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 61, 0, 0.05);
  border: 1px solid rgba(255, 61, 0, 0.1);
}

.article-share-footer p {
  margin: 0 0 15px 0;
  font-size: 14px;
  opacity: 0.8;
}

/* Light theme share controls */
.light-theme .share-btn--twitter {
  color: var(--white);
}

.light-theme .share-btn--twitter:hover {
  background: var(--white);
  color: var(--black);
}

.light-theme .article-share-footer {
  background: rgba(255, 61, 0, 0.03);
}


/* ========================================
   LIVE BUILD SESSION PAGE
   ======================================== */

.live-build-session-page {
  min-height: 100vh;
}

/* Hero Section */
.lbs-hero {
  padding: 160px 40px 80px;
  background: var(--black);
  color: var(--white);
}

.lbs-hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 30px;
  max-width: 800px;
}

.lbs-subheadline {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
}

/* Sections */
.lbs-section {
  padding: 80px 40px;
}

.lbs-section h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 30px;
}

.lbs-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 800px;
}

.lbs-section-alt {
  background: var(--light-gray);
}

.lbs-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.lbs-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.lbs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--accent);
}

.lbs-emphasis {
  font-weight: 600;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin: 30px 0;
}

/* Fit Grid */
.lbs-fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.lbs-fit-box {
  padding: 30px;
  border: 2px solid var(--black);
}

.lbs-fit-box h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.lbs-fit-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lbs-fit-box li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.lbs-good-fit {
  background: rgba(0, 200, 83, 0.05);
  border-color: #00c853;
}

.lbs-good-fit li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #00c853;
  font-weight: bold;
  font-size: 1.2rem;
}

.lbs-not-fit {
  background: rgba(255, 61, 0, 0.05);
  border-color: var(--accent);
}

.lbs-not-fit li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Benefits List */
.lbs-benefits li::before {
  background: #00c853;
}

/* Cost Box */
.lbs-cost-box {
  background: var(--black);
  color: var(--white);
  padding: 30px;
  margin-top: 40px;
  max-width: 400px;
}

.lbs-cost-box p {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.lbs-cost-box p:last-child {
  margin-bottom: 0;
}

/* Apply Section */
.lbs-apply-section {
  background: var(--black);
  color: var(--white);
}

.lbs-apply-section h2 {
  color: var(--white);
}

.lbs-apply-section p {
  color: rgba(255, 255, 255, 0.9);
}

/* Form Container */
.lbs-form-container {
  background: var(--white);
  color: var(--black);
  padding: 50px;
  margin-top: 50px;
  max-width: 700px;
  border: 3px solid var(--white);
}

.lbs-form-container h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--black);
}

/* Form Errors */
.lbs-form-errors {
  background: rgba(255, 61, 0, 0.1);
  border: 2px solid var(--accent);
  padding: 20px;
  margin-bottom: 30px;
}

.lbs-form-errors p {
  margin: 0 0 10px 0;
  color: var(--accent);
}

.lbs-form-errors ul {
  margin: 0;
  padding-left: 20px;
}

.lbs-form-errors li {
  color: var(--accent);
  margin-bottom: 5px;
}

/* Form Groups */
.lbs-form-group {
  margin-bottom: 25px;
}

.lbs-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.lbs-helper-text {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 8px;
}

.lbs-input,
.lbs-select,
.lbs-textarea {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--black);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.lbs-input:focus,
.lbs-select:focus,
.lbs-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.lbs-textarea {
  resize: vertical;
  min-height: 100px;
}

.lbs-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 45px;
}

/* Consent Checkbox */
.lbs-consent-group {
  background: rgba(255, 61, 0, 0.05);
  padding: 20px;
  border: 2px solid var(--accent);
  margin-top: 30px;
}

.lbs-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
}

.lbs-checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent);
}

/* Submit Button */
.lbs-form-submit {
  margin-top: 40px;
}

.lbs-submit-btn {
  width: 100%;
  padding: 20px 40px;
  font-size: 1.1rem;
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Thanks Page */
.lbs-thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 40px 80px;
  background: var(--black);
  color: var(--white);
}

.lbs-thanks-content {
  max-width: 600px;
  text-align: center;
}

.lbs-thanks-icon {
  color: #00c853;
  margin-bottom: 30px;
}

.lbs-thanks h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 30px;
}

.lbs-thanks p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.lbs-thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Inline Thanks (Turbo Stream) */
.lbs-thanks-inline {
  text-align: center;
  padding: 60px 40px;
}

.lbs-thanks-inline .lbs-thanks-icon {
  color: #00c853;
  margin-bottom: 20px;
}

.lbs-thanks-inline h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.lbs-thanks-inline p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Light Theme */
.light-theme .lbs-hero {
  background: var(--white);
  color: var(--black);
}

.light-theme .lbs-section-alt {
  background: #f5f5f5;
}

.light-theme .lbs-apply-section {
  background: var(--white);
  color: var(--black);
}

.light-theme .lbs-apply-section h2,
.light-theme .lbs-apply-section p {
  color: var(--black);
}

.light-theme .lbs-form-container {
  background: #f5f5f5;
  border-color: #0a0a0a;
}

.light-theme .lbs-input,
.light-theme .lbs-select,
.light-theme .lbs-textarea {
  background: #ffffff;
  border-color: #0a0a0a;
  color: #0a0a0a;
}

.light-theme .lbs-cost-box {
  background: var(--black);
  color: var(--white);
}

.light-theme .lbs-thanks {
  background: var(--white);
  color: var(--black);
}

/* Purple Theme */
.purple-theme .lbs-hero {
  background: var(--purple-dark);
}

.purple-theme .lbs-section-alt {
  background: rgba(167, 139, 250, 0.05);
}

.purple-theme .lbs-fit-box {
  border-color: var(--purple-accent);
}

.purple-theme .lbs-good-fit {
  background: rgba(0, 200, 83, 0.1);
}

.purple-theme .lbs-not-fit {
  background: rgba(167, 139, 250, 0.1);
}

.purple-theme .lbs-apply-section {
  background: var(--purple-dark);
}

.purple-theme .lbs-form-container {
  background: var(--purple-bg);
  color: var(--white);
  border-color: var(--purple-accent);
}

.purple-theme .lbs-input,
.purple-theme .lbs-select,
.purple-theme .lbs-textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--purple-accent);
  color: var(--white);
}

.purple-theme .lbs-helper-text {
  color: rgba(255, 255, 255, 0.7);
}

.purple-theme .lbs-consent-group {
  background: rgba(167, 139, 250, 0.1);
  border-color: var(--purple-accent);
}

.purple-theme .lbs-cost-box {
  background: var(--purple-accent);
  color: var(--purple-dark);
}

.purple-theme .lbs-thanks {
  background: var(--purple-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .lbs-hero {
    padding: 120px 20px 60px;
  }

  .lbs-section {
    padding: 60px 20px;
  }

  .lbs-fit-grid {
    grid-template-columns: 1fr;
  }

  .lbs-form-container {
    padding: 30px 20px;
  }

  .lbs-thanks {
    padding: 120px 20px 60px;
  }

  .lbs-thanks-actions {
    flex-direction: column;
  }

  .lbs-thanks-actions .btn {
    width: 100%;
  }
}
/* Syntax Highlighting (Rouge/Monokai-ish Dark) */
.code-block pre,
.code-block code {
    color: #f8f8f2;
    white-space: pre-wrap;
    /* Wrap long lines, preserve formatting */
    word-break: break-all;
    /* Prevent overflow */
    display: block;
    /* Ensure block layout */
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.code-block .hll {
    background-color: #49483e
}

.code-block .c {
    color: #75715e
}

/* Comment */
.code-block .err {
    color: #960050;
    background-color: #1e0010
}

/* Error */
.code-block .k {
    color: #66d9ef
}

/* Keyword */
.code-block .l {
    color: #ae81ff
}

/* Literal */
.code-block .n {
    color: #f8f8f2
}

/* Name */
.code-block .o {
    color: #f92672
}

/* Operator */
.code-block .p {
    color: #f8f8f2
}

/* Punctuation */
.code-block .cm {
    color: #75715e
}

/* Comment.Multiline */
.code-block .cp {
    color: #75715e
}

/* Comment.Preproc */
.code-block .c1 {
    color: #75715e
}

/* Comment.Single */
.code-block .cs {
    color: #75715e
}

/* Comment.Special */
.code-block .gd {
    color: #f92672
}

/* Generic.Deleted */
.code-block .ge {
    font-style: italic
}

/* Generic.Emph */
.code-block .gr {
    color: #f92672
}

/* Generic.Error */
.code-block .gh {
    color: #f8f8f2
}

/* Generic.Heading */
.code-block .gi {
    color: #a6e22e
}

/* Generic.Inserted */
.code-block .go {
    color: #66d9ef
}

/* Generic.Output */
.code-block .gp {
    color: #f92672;
    font-weight: bold
}

/* Generic.Prompt */
.code-block .gs {
    font-weight: bold
}

/* Generic.Strong */
.code-block .gu {
    color: #75715e
}

/* Generic.Subheading */
.code-block .gt {
    color: #f92672
}

/* Generic.Traceback */
.code-block .kc {
    color: #66d9ef
}

/* Keyword.Constant */
.code-block .kd {
    color: #66d9ef
}

/* Keyword.Declaration */
.code-block .kn {
    color: #f92672
}

/* Keyword.Namespace */
.code-block .kp {
    color: #66d9ef
}

/* Keyword.Pseudo */
.code-block .kr {
    color: #66d9ef
}

/* Keyword.Reserved */
.code-block .kt {
    color: #66d9ef
}

/* Keyword.Type */
.code-block .ld {
    color: #e6db74
}

/* Literal.Date */
.code-block .m {
    color: #ae81ff
}

/* Literal.Number */
.code-block .s {
    color: #e6db74
}

/* Literal.String */
.code-block .na {
    color: #a6e22e
}

/* Name.Attribute */
.code-block .nb {
    color: #f8f8f2
}

/* Name.Builtin */
.code-block .nc {
    color: #a6e22e
}

/* Name.Class */
.code-block .no {
    color: #66d9ef
}

/* Name.Constant */
.code-block .nd {
    color: #a6e22e
}

/* Name.Decorator */
.code-block .ni {
    color: #f8f8f2
}

/* Name.Entity */
.code-block .ne {
    color: #a6e22e
}

/* Name.Exception */
.code-block .nf {
    color: #a6e22e
}

/* Name.Function */
.code-block .nl {
    color: #f8f8f2
}

/* Name.Label */
.code-block .nn {
    color: #f8f8f2
}

/* Name.Namespace */
.code-block .nx {
    color: #a6e22e
}

/* Name.Other */
.code-block .py {
    color: #f8f8f2
}

/* Name.Property */
.code-block .nt {
    color: #f92672
}

/* Name.Tag */
.code-block .nv {
    color: #f8f8f2
}

/* Name.Variable */
.code-block .ow {
    color: #f92672
}

/* Operator.Word */
.code-block .w {
    color: #f8f8f2
}

/* Text.Whitespace */
.code-block .mf {
    color: #ae81ff
}

/* Literal.Number.Float */
.code-block .mh {
    color: #ae81ff
}

/* Literal.Number.Hex */
.code-block .mi {
    color: #ae81ff
}

/* Literal.Number.Integer */
.code-block .mo {
    color: #ae81ff
}

/* Literal.Number.Oct */
.code-block .sb {
    color: #e6db74
}

/* Literal.String.Backtick */
.code-block .sc {
    color: #e6db74
}

/* Literal.String.Char */
.code-block .sd {
    color: #e6db74
}

/* Literal.String.Doc */
.code-block .s2 {
    color: #e6db74
}

/* Literal.String.Double */
.code-block .se {
    color: #ae81ff
}

/* Literal.String.Escape */
.code-block .sh {
    color: #e6db74
}

/* Literal.String.Heredoc */
.code-block .si {
    color: #e6db74
}

/* Literal.String.Interpol */
.code-block .sx {
    color: #e6db74
}

/* Literal.String.Other */
.code-block .sr {
    color: #e6db74
}

/* Literal.String.Regex */
.code-block .s1 {
    color: #e6db74
}

/* Literal.String.Single */
.code-block .ss {
    color: #e6db74
}

/* Literal.String.Symbol */
.code-block .bp {
    color: #f8f8f2
}

/* Name.Builtin.Pseudo */
.code-block .vc {
    color: #f8f8f2
}

/* Name.Variable.Class */
.code-block .vg {
    color: #f8f8f2
}

/* Name.Variable.Global */
.code-block .vi {
    color: #f8f8f2
}

/* Name.Variable.Instance */
.code-block .il {
    color: #ae81ff
}

/* Literal.Number.Integer.Long */
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
