:root {
  --primary: #00d2ff;
  --secondary: #9d50bb;
  --bg-dark: #07080c;
  --card-bg: rgba(255, 255, 255, 0.05);
  --text-main: #e0e0e0;
  --text-dim: #a0a0a0;
  --glass: rgba(15, 15, 25, 0.7);
  --border-glass: rgba(255, 255, 255, 0.1);
}

html {
  scroll-behavior: smooth;
}


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

@media (hover: hover) and (pointer: fine) {
  * {
    cursor: none;
  }
}

/* Permitir cursor por defecto en el texto de la terminal para seleccionar */
.terminal-content,
.terminal-content * {
  cursor: text;
}

/* Accesibilidad global */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 70% 20%, rgba(0, 210, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(157, 80, 187, 0.1) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.text-center {
  text-align: center;
}

h1,
h2,
h3 {
  font-weight: 800;
}

/* Glassmorphism Classes */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
}

.glass-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 16, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 400;
  transition: color 0.3s;
}

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

.btn-github {
  background: var(--primary);
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
  /* Base spacing for fixed nav */
}

.badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2);
  color: white;
}

@keyframes floatBg {
  0% {
    transform: scale(1) translate(0, 0);
  }

  33% {
    transform: scale(1.05) translate(1%, -1%);
  }

  66% {
    transform: scale(1.02) translate(-1%, 2%);
  }

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cursor-blink {
  font-weight: 800;
  color: var(--primary);
  animation: blink 1s step-end infinite;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Terminal Window */
.terminal-window {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  text-align: left;
  position: relative;
  background: var(--glass);
}

/* Terminal Glow Logic */
.terminal-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 210, 255, 0.05),
      transparent 40%);
  z-index: 0;
}

.terminal-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y),
      var(--primary),
      transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.terminal-header {
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

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

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.close-btn {
  background: #ff5f56;
}

.minimize-btn {
  background: #ffbd2e;
}

.maximize-btn {
  background: #27c93f;
}

.terminal-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-family: "Outfit", sans-serif;
}

.copy-icon-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  margin-left: auto;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-icon-btn:hover {
  color: white;
}

.terminal-content {
  background: rgba(10, 11, 16, 0.9);
  padding: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  color: #e0e0e0;
  min-height: 120px;
  overflow-x: auto;
}

/* Scrollbar personalizado para la terminal */
.terminal-content::-webkit-scrollbar {
  height: 6px;
}

.terminal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.terminal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.terminal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.terminal-content .line {
  margin-bottom: 8px;
  display: block;
  white-space: nowrap;
}

.terminal-content .prompt {
  color: var(--primary);
  margin-right: 10px;
}

.terminal-content .command {
  color: #00ff88;
}

.terminal-content .output {
  color: #a0a0a0;
}

.terminal-content .os-highlight {
  color: #35A9DF;
  font-weight: 700;
}

.terminal-content .typing::after {
  content: "▋";
  animation: blink 1s step-end infinite;
  display: inline-block;
  vertical-align: text-bottom;
  color: #fff;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Features */
.features {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: var(--glass);
  transform-style: preserve-3d;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  will-change: transform;
}

/* Glow Effect */
.feature-card::before,
.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 210, 255, 0.1),
      transparent 40%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

/* Border Glow */
.feature-card::after,
.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y),
      rgba(0, 210, 255, 0.6),
      var(--secondary),
      transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 2;
}

.feature-card:hover::before,
.feature-card:hover::after,
.menu-card:hover::before,
.menu-card:hover::after {
  opacity: 1;
}

.feature-card>* {
  position: relative;
  z-index: 1;
  transform: translateZ(20px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-dim);
}

/* Installation Guides */
.installation-guides {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.menu-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.menu-card h4 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
}

.menu-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cmd-text {
  font-size: 0.95rem;
  color: var(--text-dim);
}

.cmd-id {
  color: var(--primary);
  font-family: "JetBrains Mono", monospace;
  font-weight: bold;
}

.guide-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 25px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid var(--border-glass);
  color: white;
  cursor: pointer;
  font-family: inherit;
  transition: 0.3s;
}

.tab-btn:focus-visible {
  outline-offset: 4px;
}

.tab-btn.active {
  background: var(--primary);
  color: black;
  border-color: var(--primary);
}

.tab-content {
  display: none;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  margin-bottom: 25px;
  color: var(--primary);
}

.tab-content ol {
  padding-left: 20px;
}

.tab-content li {
  margin-bottom: 15px;
}

code:not(#changelog-container code) {
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  border: 1px solid rgba(0, 210, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

#changelog-container code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-main);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  border: 1px solid var(--border-glass);
}

code:not(#changelog-container code):hover {
  background: rgba(0, 210, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2);
}

code:not(#changelog-container code):active {
  transform: translateY(0);
}

code:not(#changelog-container code)::after {
  content: var(--tooltip-content, "Click to Copy");
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-bg);
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

code:not(#changelog-container code):hover::after,
code:not(#changelog-container code).copied::after {
  opacity: 1;
}

code:not(#changelog-container code).copied::after {
  content: "¡Copiado!";
  color: var(--primary);
  border-color: var(--primary);
}

.confetti-particle {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  animation: particleFade 1s ease-out forwards;
}

@keyframes particleFade {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* Compatibility */
.compatibility {
  padding: 100px 0;
}

.os-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.os-badge {
  background: var(--card-bg);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  font-weight: 600;
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

footer {
  padding: 60px 0;
  border-top: 1px solid var(--border-glass);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
}

/* OS Carousel Section */
.os-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
  /* Temporarily removing mask to ensure visibility on all CDNs */
}

.os-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollInfinite 25s linear infinite;
  will-change: transform;
}

.os-track:hover {
  animation-play-state: paused;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-33.33% - 13.33px));
  }

  /* Adjusted for triple repeat if used */
}

/* Fallback for simple scroll if triple repeat is not used */
.os-track-simple {
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 20px));
  }
}

.os-card-minimal {
  width: 180px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  /* Lighter background for better contrast */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.os-card-minimal:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-8px);
}

.os-logo-svg {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.3));
}

.os-card-minimal span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-container {
    padding: 15px 20px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
    height: auto;
    min-height: 100vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .terminal-window {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    border-radius: 8px;
  }

  .terminal-header {
    padding: 10px 12px;
  }

  .terminal-content {
    font-size: 0.8rem;
    padding: 15px;
    min-height: 140px;
  }

  .terminal-content .line,
  .terminal-content .command,
  .terminal-content .output {
    white-space: pre-wrap !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100%;
    display: inline-block;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .feature-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .guide-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
  }

  .tab-content {
    padding: 20px;
  }

  .tab-content code {
    white-space: pre-wrap;
    word-break: break-all;
    display: inline-block;
  }

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

  .os-card-minimal {
    width: 140px;
    height: 100px;
  }

  /* Changelog Mobile */
  .mini-hero {
    min-height: 30vh !important;
    padding-top: 100px;
  }

  .changelog-content {
    padding: 25px 20px;
  }

  .changelog-content h2 {
    font-size: 1.5rem;
  }

  .changelog-content h3 {
    font-size: 1.1rem;
  }

  .changelog-content li {
    font-size: 0.9rem;
    padding-left: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .changelog-content code {
    white-space: pre-wrap;
    word-break: break-word;
  }

  .badges {
    gap: 8px;
    padding: 0 15px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }
}

/* Changelog Specific Styles */
.mini-hero {
  min-height: 40vh !important;
  padding-top: 120px;
}

.changelog-section {
  padding: 0 0 80px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.changelog-content {
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.changelog-content h2 {
  color: var(--primary);
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 10px;
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 2rem;
}

.changelog-content h2:first-of-type {
  margin-top: 0;
}

.changelog-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.changelog-content ul {
  list-style: none;
  padding-left: 10px;
}

.changelog-content li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
  color: var(--text-dim);
  line-height: 1.6;
}

.changelog-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.changelog-content strong {
  color: #fff;
}

.loading-state {
  text-align: center;
  padding: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 210, 255, 0.1);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Custom Cursor Premium */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.6), inset 0 0 10px rgba(0, 210, 255, 0.4);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  mix-blend-mode: screen;
}

.custom-cursor.hover {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 210, 255, 0.1);
  border-color: #fff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.6);
}

@media (hover: none) and (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

/* Shell Simulation Toast */
#shell-sim-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  pointer-events: none;
}

.shell-sim-toast {
  width: 320px;
  background: rgba(7, 8, 12, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
  animation: shellSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: auto;
}

@keyframes shellSlideIn {
  from {
    transform: translateX(120%) scale(0.9);
    opacity: 0;
  }

  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

.shell-sim-toast.fade-out {
  animation: shellFadeOut 0.5s ease forwards;
}

@keyframes shellFadeOut {
  to {
    transform: translateY(20px);
    opacity: 0;
  }
}

.shell-sim-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shell-sim-dots {
  display: flex;
  gap: 5px;
}

.shell-sim-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.shell-sim-title {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shell-sim-body {
  padding: 15px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.4;
}

.shell-prompt {
  color: var(--primary);
  margin-right: 8px;
}

.shell-command {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}

.shell-output {
  margin-top: 10px;
  color: #00ff88;
  font-weight: bold;
  opacity: 0;
  animation: fadeIn 0.3s ease 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .shell-sim-toast {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 20px;
  }
}