/* Combined Styles - All styles from index.css + command-generator.css */
:root {
  --main-green: #39ff14;
  --neon-green: #39ff14;
  --dark-green: #2db30d;
  --dark-bg: #0a1014;
  --card-bg: #101620;
  --section-bg: #0a1418;
  --text-color: #e6e6e6;
  --text-secondary: #a0a0a0;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --border-radius: 6px;
}

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



.wl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 32px;
}

.logo h1 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0px;
  color: white;
}

.logo span {
  color: var(--main-green);
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--main-green);
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-name {
  color: var(--text-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5rem;
}

.process-flow {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: var(--spacing-lg) 0;
  gap: 10px;
  flex-wrap: nowrap;
}

.process-step {
  background-color: rgba(30, 30, 30, 0.6);
  border: 1px solid #333;
  padding: var(--spacing-sm);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  min-width: 100px;
  animation: continuousBounce 4s ease-in-out infinite;
  transform-origin: center bottom;
}

.process-step:nth-child(1) { 
  animation-delay: 0s;
  animation-name: bounce1;
  animation-duration: 4s;
}
.process-step:nth-child(3) { 
  animation-delay: 0.8s;
  animation-name: bounce2;
  animation-duration: 4s;
}
.process-step:nth-child(5) { 
  animation-delay: 1.6s;
  animation-name: bounce3;
  animation-duration: 4s;
}
.process-step:nth-child(7) { 
  animation-delay: 2.4s;
  animation-name: bounce4;
  animation-duration: 4s;
}
.process-step:nth-child(9) { 
  animation-delay: 3.2s;
  animation-name: bounce5;
  animation-duration: 4s;
}

@keyframes bounce1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes bounce2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes bounce3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes bounce4 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes bounce5 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

.process-step:hover {
  box-shadow: 0 5px 15px rgba(57, 255, 20, 0.15);
  border-color: var(--neon-green);
}

.process-step .emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green) !important;
  font-size: 1.5rem;
  font-weight: bold;
}

.hero {
  padding: var(--spacing-lg) 0;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-sm);
}

.hero-title h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.hero-title span {
  color: var(--main-green);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.terminal-demo {
  background-color: #121820;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: var(--spacing-md) 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.terminal-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.terminal-content p {
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  animation: indexTyping 2.5s steps(40, end) forwards;
  opacity: 0;
}

.terminal-content p:nth-child(1) { animation-delay: 0s; }
.terminal-content p:nth-child(2) { animation-delay: 0.8s; }
.terminal-content p:nth-child(3) { animation-delay: 1.6s; }
.terminal-content p:nth-child(4) { animation-delay: 2.4s; }
.terminal-content p:nth-child(5) { animation-delay: 3.2s; }
.terminal-content p:nth-child(6) { animation-delay: 4s; }
.terminal-content p:nth-child(7) { animation-delay: 4.8s; }
.terminal-content p:nth-child(8) { animation-delay: 5.6s; }
.terminal-content p:nth-child(9) { animation-delay: 6.4s; }
.terminal-content p:nth-child(10) { animation-delay: 7.2s; }
.terminal-content p:nth-child(11) { animation-delay: 8s; }
.terminal-content p:nth-child(12) { animation-delay: 8.8s; }
.terminal-content p:nth-child(13) { animation-delay: 9.6s; }
.terminal-content p:nth-child(14) { animation-delay: 10.4s; }
.terminal-content p:nth-child(15) { animation-delay: 11.2s; }
.terminal-content p:nth-child(16) { animation-delay: 12s; }
.terminal-content p:nth-child(17) { animation-delay: 12.8s; }
.terminal-content p:nth-child(18) { animation-delay: 13.6s; }
.terminal-content p:nth-child(19) { animation-delay: 14.4s; }
.terminal-content p:nth-child(20) { animation-delay: 15.2s; }
.terminal-content p:nth-child(21) { animation-delay: 16s; }

@keyframes indexTyping {
  from { 
    width: 0;
    opacity: 1;
  }
  to { 
    width: 100%;
    opacity: 1;
  }
}

.prompt {
  color: #3d85c6;
  margin-right: 5px;
}

.ai-response { color: #fff; }
.wl-label { color: #39ff14; font-weight: bold; }

.user-input {
  color: var(--text-color);
}

.question {
  color: #e6b450;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: var(--spacing-lg) 0 var(--spacing-md);
  font-weight: 600;
}

.section-title .number {
  color: var(--main-green);
  opacity: 0.8;
  font-size: 1rem;
}

.section-title h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--main-green);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::after {
  background-color: #9b4dca;
  width: 6px;
  opacity: 1;
}

.feature-card h3 {
  color: var(--main-green);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  opacity: 0.3;
}

.step-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(57, 255, 20, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.code-block {
  background-color: #121820;
  border-radius: var(--border-radius);
  padding: 1rem;
  margin: var(--spacing-md) 0;
  font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
  font-size: 0.9rem;
  overflow-x: auto;
}

.button {
  display: inline-block;
  background-color: transparent;
  color: var(--main-green);
  border: 1px solid var(--main-green);
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
  margin-right: 1rem;
  margin-top: 1rem;
}

.button:hover {
  background-color: rgba(57, 255, 20, 0.1);
}

.button-primary {
  background-color: var(--main-green);
  color: #121820;
}

.button-primary:hover {
  background-color: var(--dark-green);
  color: #121820;
}

.demo-section {
  margin: var(--spacing-lg) 0;
}

.split-pane {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin: var(--spacing-md) 0;
}

.pane {
  background-color: #121820;
  border-radius: var(--border-radius);
  padding: 1rem;
}

.pane-label {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: var(--spacing-md);
  margin-top: var(--spacing-lg);
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer {
  background: #0a1014;
  color: var(--text-secondary);
  padding: 2.5rem 0 0.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 220px;
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #181818;
}
.footer-title {
  color: var(--main-green);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.footer-columns {
  display: flex;
  gap: 3rem;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-col-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--main-green);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-top: 1.2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.neon-select .choices__inner {
  background: #101620;
  border: 2px solid #39ff14;
  border-radius: 8px;
  color: #39ff14;
  font-weight: 600;
  padding: 0.5rem 1rem;
  box-shadow: 0 0 8px #39ff1433;
  transition: border 0.2s, box-shadow 0.2s;
}

.neon-select .choices__inner:hover {
  border: 2px solid #39ff14;
  box-shadow: 0 0 12px #39ff14;
}

.neon-select .choices__list--dropdown {
  background: #18191f;
  border: 2px solid #39ff14;
  border-radius: 8px;
  box-shadow: 0 0 12px #39ff1433;
  color: #39ff14;
  font-weight: 600;
}

.neon-select .choices__list--dropdown .choices__item {
  color: #39ff14;
  padding: 0.5rem 1rem;
  transition: background 0.2s, color 0.2s;
}

.neon-select .choices__list--dropdown .choices__item:hover {
  background: #39ff14;
  color: #101620;
}

.neon-select .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: #39ff14;
  color: #101620;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.full-text { display: inline; }
.short-text { 
  display: none; 
  color: #fff;
}

.process-flow-mobile { 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2rem 0;
}

/* Enhanced Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background-color: rgba(26, 26, 26, 0.95);
  min-width: min-content;
  width: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  border-radius: 8px;
  padding: 8px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(57, 255, 20, 0.1);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.1s;
}

.dropdown-menu:hover {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Add a small invisible area to help with hover */
.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  color: #fff;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.dropdown-menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--main-green);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: rgba(57, 255, 20, 0.1);
  color: var(--main-green);
  padding-left: 20px;
}

.dropdown-menu li a:hover::before {
  transform: scaleY(1);
}

.dropdown-menu li:first-child a {
  border-radius: 8px 8px 0 0;
}

.dropdown-menu li:last-child a {
  border-radius: 0 0 8px 8px;
}

.dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav {
  display: none;
}

.mobile-nav .mobile-section-header {
  color: white;
  font-size: 0.85em;
  font-weight: bold;
  padding: 0.75rem 1rem 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
}

.mobile-nav .mobile-section-header:first-child {
  margin-top: 0;
}

/* Copy button styles */
.copy-buttons {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 15;
}

.copy-label {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  font-weight: 600;
  color: #39ff14;
  text-shadow: 0 0 4px rgba(57, 255, 20, 0.3);
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.copy-btn {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(20, 20, 20, 0.9));
  border: 1px solid #39ff14;
  border-radius: 3px;
  color: #39ff14;
  padding: 4px 6px;
  font-size: 10px;
  font-family: 'Courier New', monospace;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.copy-btn:hover {
  opacity: 1;
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.15), rgba(57, 255, 20, 0.08));
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(57, 255, 20, 0.25);
  border-color: #4dff28;
}

.copy-btn:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.1s ease;
}

.copy-btn svg {
  color: #39ff14;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 2px rgba(57, 255, 20, 0.3));
}

.copy-btn:hover svg {
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
  transform: rotate(5deg);
}

.copy-btn .copy-text {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 0 4px rgba(57, 255, 20, 0.3);
}

/* Success state for copy button */
.copy-btn.copied {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.3), rgba(57, 255, 20, 0.15));
  border-color: #4dff28;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
  animation: pulse-success 0.6s ease-out;
}

.copy-btn.copied .copy-text {
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.copy-btn.copied svg {
  color: #fff;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

@keyframes pulse-success {
  0% {
    transform: translateY(-2px) scale(1.05);
  }
  50% {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 30px rgba(57, 255, 20, 0.4);
  }
  100% {
    transform: translateY(-2px) scale(1.05);
  }
}

/* Media queries and responsive design from index.css */
@media (max-width: 1024px) {
  .split-pane {
    grid-template-columns: 1fr;
  }
  
  .process-flow {
    flex-direction: column;
    align-items: center;
  }
  
  .arrow {
    transform: rotate(0deg);
    margin: 0.5rem 0;
  }
  
  .wl-header {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  nav {
    position: fixed;
    top: 60px; /* Adjust for header height */
    right: -100%;
    width: 250px;
    height: calc(100vh - 60px);
    background-color: var(--dark-bg);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--dark-bg);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 99;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  nav a {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .desktop-nav {
    display: none;
  }
  
  .mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    width: 250px;
    height: calc(100vh - 60px);
    background: var(--dark-bg);
    padding: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
  }

  .mobile-nav.active {
    display: flex;
    transform: translateX(0);
  }

  .mobile-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .mobile-nav li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .mobile-nav a {
    display: block;
    padding: 0.5rem 1rem;
    text-align: center;
    justify-content: center;
    font-size: 0.95rem;
  }

  .copy-buttons {
    gap: 4px;
    top: 4px;
    right: 4px;
    align-items: center;
  }
  
  .copy-label {
    font-size: 9px;
  }
  
  .copy-btn {
    font-size: 9px;
    padding: 3px 5px;
    gap: 2px;
  }
  
  .copy-btn svg {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer-columns {
    justify-content: flex-start;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .footer-col {
    min-width: 80px;
    flex: 1;
  }

  .footer-col-title {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }

  .footer-col a {
    font-size: 0.75rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    text-align: center;
  }

  .footer-bottom span {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .mobile-nav {
    display: none;
  }
  
  .desktop-nav {
    display: block;
  }
}  

@media (max-width: 600px) {
  .terminal-content {
    overflow-x: auto;
    white-space: nowrap;
    text-align: left;
  }
  .terminal-content p, .terminal-line {
    text-align: left;
  }
  .full-text { display: none; }
  .short-text { 
    display: inline; 
    color: #fff;
    font-size: 0.75rem;
  }

  .process-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.2rem;
    justify-items: center;
    align-items: center;
  }
  .process-step {
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    max-width: 90px;
    max-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(30,30,30,0.7);
    border-radius: 12px;
    margin: 0;
    box-sizing: border-box;
  }
  .process-step .emoji {
    font-size: 1.7rem;
    margin-bottom: 0.2rem;
  }
  .step-name {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0;
    word-break: break-word;
  }
  .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 1.2rem;
    margin: 0 0.2rem;
  }

  .process-flow { display: none; } /* Hide the old flow on mobile */
  .process-flow-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 2rem 0;
  }
  .process-step {
    background: rgba(30,30,30,0.7);
    border-radius: 12px;
    min-width: 90px;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(57,255,20,0.07);
    margin: 0.2rem 0;
  }
  .process-step .emoji {
    font-size: 1.7rem;
    margin-bottom: 0.2rem;
  }
  .step-name {
    font-size: 0.9rem;
    text-align: center;
    color: #e6e6e6;
  }
  .arrow {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
  }
  .process-flow-mobile { display: grid; }
  
  .quick-steps .code-block .terminal-content code {
    font-size: 0.75rem;
  }
}

/* Command Generator Specific Styles - KEEP ORIGINAL STYLES */

/* Ensure body has correct background and styling */
body {
  background: #0a1014;
  color: #e6ffe6;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  padding-top: 60px; /* Add padding to account for fixed header */
  box-sizing: border-box;
  position: relative;
}
.tmuxai-container {
  background: transparent !important;
  background-color: transparent !important;
  text-align: center;
  padding: 3rem 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.tmuxai-container header {
  background: transparent !important;
  background-color: transparent !important;
}

.tmuxai-container header h1 {
  background: transparent !important;
  background-color: transparent !important;
}

body .tmuxai-container {
  background: var(--dark-bg) !important;
  background-color: #0a1014 !important;
}

div.tmuxai-container {
  background: var(--dark-bg) !important;
  background-color: #0a1014 !important;
}

.tmuxai-container header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  color: var(--text-color);
  letter-spacing: -0.02em;
  text-align: center;
  display: block;
  width: 100%;
}

.tmuxai-container .neon-green {
  color: var(--neon-green);
}

.tmuxai-container .tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}

.terminal-container {
  background: #121820;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.terminal-header {
  background: #1a1a1a;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.terminal-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.control:hover {
  opacity: 0.8;
}

.control.close {
  background: #ff5f57;
}

.control.minimize {
  background: #ffbd2e;
}

.control.maximize {
  background: #28ca42;
}

.terminal-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #c7c7c7;
  font-size: 14px;
  font-weight: 500;
}

.terminal-content {
  background: #121820;
  padding: 20px;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.6;
  min-height: 400px;
}

.terminal-output {
  margin-bottom: 20px;
}

.prompt-line {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.prompt {
  color: var(--main-green);
  font-weight: 600;
}

.command {
  color: #e6e6e6;
  margin-left: 8px;
}

.info-line {
  color: #a0a0a0;
  margin-bottom: 8px;
  padding-left: 24px;
}

.empty-line {
  height: 20px;
}

.input-section {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
}

.terminal-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 12px 16px;
  color: #e6e6e6;
  font-family: inherit;
  font-size: 14px;
  margin-left: 24px;
  width: calc(100% - 24px);
  transition: all 0.2s ease;
}

.terminal-input:focus {
  outline: none;
  border-color: var(--main-green);
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.2);
}

.terminal-input::placeholder {
  color: #666;
}

.terminal-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 12px 16px;
  color: #e6e6e6;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.2s ease;
}

.terminal-select:focus {
  outline: none;
  border-color: var(--main-green);
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.2);
}

.terminal-select option {
  background: #121820;
  color: #e6e6e6;
}

.advanced-options {
  margin-bottom: 20px;
}

.toggle-btn {
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid var(--main-green);
  border-radius: 4px;
  padding: 4px 12px;
  color: var(--main-green);
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  margin-left: 12px;
  transition: all 0.2s ease;
}

.toggle-btn:hover {
  background: rgba(57, 255, 20, 0.2);
}

.advanced-panel {
  margin-left: 24px;
  margin-top: 16px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #a0a0a0;
  font-size: 13px;
}

.platform-selector {
  margin-bottom: 20px;
}

.platform-buttons {
  display: flex;
  gap: 12px;
  margin-left: 24px;
  margin-top: 8px;
}

.platform-buttons.inline {
  display: inline-flex;
  margin-left: 12px;
  margin-top: 0;
  gap: 8px;
}

.platform-buttons.inline .platform-btn {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
}

.platform-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  color: #e6e6e6;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.platform-btn.active {
  background: rgba(57, 255, 20, 0.2);
  border-color: var(--main-green);
  color: var(--main-green);
}

.generate-section {
  text-align: center;
  margin: 30px 0;
}

.generate-btn {
  background: linear-gradient(135deg, var(--main-green), #2db30d);
  border: none;
  color: #000;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 20px 0;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.generate-btn:hover {
  background: linear-gradient(135deg, #2db30d, var(--main-green));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 255, 20, 0.4);
}

.generate-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(57, 255, 20, 0.3);
}

.output-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.command-output {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 16px;
  margin: 12px 0;
  margin-left: 24px;
  position: relative;
}

.command-output pre {
  color: var(--main-green);
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.5;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid var(--main-green);
  border-radius: 4px;
  padding: 6px 12px;
  color: var(--main-green);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: rgba(57, 255, 20, 0.2);
}

.success-line {
  margin-left: 24px;
  margin-top: 12px;
}

.success {
  color: var(--main-green);
  font-weight: 500;
}

.help-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.help-section h3 {
  color: var(--main-green);
  margin-bottom: 16px;
  font-size: 18px;
}

.help-section h4 {
  color: #e6e6e6;
  margin-bottom: 12px;
  margin-top: 20px;
  font-size: 16px;
}

.help-section ul {
  list-style: none;
  padding: 0;
}

.help-section li {
  color: #a0a0a0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.help-section li::before {
  content: "→";
  color: var(--main-green);
  position: absolute;
  left: 0;
}

.help-section strong {
  color: #e6e6e6;
}

.help-section code {
  background: rgba(57, 255, 20, 0.1);
  color: var(--main-green);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
  font-size: 13px;
}

.example-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tmuxai-container {
    padding: 2rem 1rem 1.5rem;
  }
  
  .tmuxai-container header h1 {
    font-size: 2rem;
  }
  
  .tmuxai-container .tagline {
    font-size: 1rem;
  }
  
  .container {
    padding: 0.5rem;
  }
  
  .terminal-container {
    margin: 0;
    border-radius: 8px;
  }
  
  .terminal-content {
    padding: 12px;
    font-size: 13px;
  }
  
  .terminal-header {
    padding: 8px 12px;
  }
  
  .terminal-title {
    font-size: 12px;
  }
  
  .prompt {
    font-size: 12px;
  }
  
  .command {
    font-size: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .prompt-line {
    flex-wrap: wrap;
    word-break: break-word;
  }
  
  .info-line {
    padding-left: 0;
    font-size: 12px;
    word-wrap: break-word;
  }
  
  .platform-buttons {
    flex-direction: column;
  }
  
  .platform-buttons.inline {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-top: 8px;
    gap: 6px;
  }
  
  .platform-btn {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 8px 12px;
  }
  
  .platform-buttons.inline .platform-btn {
    padding: 8px 12px;
    font-size: 12px;
    width: 100%;
  }
  
  .terminal-input, .terminal-select {
    margin-left: 0;
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .command-output {
    margin-left: 0;
    padding: 12px;
  }
  
  .command-output pre {
    font-size: 11px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
  }
  
  .success-line {
    margin-left: 0;
  }
  
  .copy-btn {
    position: static;
    margin-top: 12px;
    width: 100%;
    font-size: 12px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .form-group {
    margin-bottom: 12px;
  }
  
  .form-group label {
    font-size: 12px;
    word-wrap: break-word;
  }
  
  .advanced-panel {
    margin-left: 0;
    padding: 8px;
  }
  
  .toggle-btn {
    margin-left: 8px;
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .generate-btn {
    font-size: 14px;
    padding: 14px 20px;
    max-width: 100%;
    margin: 16px 0;
  }
  
  .help-section {
    padding: 16px;
    margin-top: 1rem;
  }
  
  .help-section h3 {
    font-size: 16px;
  }
  
  .help-section h4 {
    font-size: 14px;
  }
  
  .help-section li {
    font-size: 13px;
    word-wrap: break-word;
  }
  
  .help-section code {
    font-size: 11px;
    word-wrap: break-word;
  }
  
  small {
    font-size: 11px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .tmuxai-container {
    padding: 1.5rem 0.5rem 1rem;
  }
  
  .tmuxai-container header h1 {
    font-size: 1.75rem;
  }
  
  .tmuxai-container .tagline {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0.25rem;
  }
  
  .terminal-content {
    padding: 8px;
    font-size: 12px;
  }
  
  .terminal-header {
    padding: 6px 8px;
  }
  
  .control {
    width: 10px;
    height: 10px;
  }
  
  .terminal-title {
    font-size: 11px;
  }
  
  .prompt, .command {
    font-size: 11px;
  }
  
  .terminal-input, .terminal-select {
    font-size: 13px;
    padding: 8px 10px;
  }
  
  .platform-btn {
    font-size: 11px;
    padding: 6px 8px;
  }
  
  .command-output pre {
    font-size: 10px;
  }
  
  .generate-btn {
    font-size: 13px;
    padding: 12px 16px;
  }
  
  .help-section {
    padding: 12px;
  }
  
  .help-section h3 {
    font-size: 15px;
  }
  
  .help-section h4 {
    font-size: 13px;
  }
  
  .help-section li {
    font-size: 12px;
  }
  
  .help-section code {
    font-size: 10px;
  }
  
  .info-line {
    font-size: 11px;
  }
  
  small {
    font-size: 10px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Animation for command generation */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

.typing-animation {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 1.5s steps(40, end);
}

/* Cursor blink animation */
.cursor {
  display: inline-block;
  background-color: var(--main-green);
  width: 2px;
  height: 1.2em;
  animation: blink 1s infinite;
}

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