/* ===========================
   Radix Color Palette (Slate)
   =========================== */
   :root {
     /* Kubernetes-inspired color palette */
     --k8s-blue: #326ce5;
     --k8s-light-blue: #4285f4;
     --k8s-dark-blue: #1a73e8;
     --k8s-navy: #1e3a8a;
     --k8s-gray: #6b7280;
     --k8s-light-gray: #f8fafc;
     --k8s-success: #10b981;
     --k8s-warning: #f59e0b;
     --k8s-danger: #ef4444;
     --k8s-purple: #8b5cf6;
     
     /* Typography colors */
     --color-text: #0f172a;
     --color-text-secondary: #475569;
     --color-text-muted: #64748b;
   
     /* Border color */
     --color-border: rgba(0,0,0,0.05);
   
     /* Backgrounds */
     --color-bg: #ffffff;
     --color-surface: #f8fafc;
   }
   
   /* ===========================
      Typography
      =========================== */
   body {
     font-family: 'Inter', sans-serif;
     font-size: 16px;
     line-height: 1.6;
     color: var(--color-text);
     background-color: var(--color-bg);
     letter-spacing: -0.01em;
     padding-top: 80px;
   }
   
   /* Headings */
   h1 {
     font-size: 64px;
     letter-spacing: -0.02em;
     line-height: 1.1;
     font-weight: 700;
   }
   
   h2 {
     font-size: 48px;
     letter-spacing: -0.02em;
     line-height: 1.2;
     font-weight: 700;
   }
   
   h3 {
     font-size: 42px;
     letter-spacing: -0.01em;
     line-height: 1.3;
     font-weight: 600;
   }
   
   h4 {
     font-size: 24px;
     letter-spacing: -0.01em;
     line-height: 1.4;
     font-weight: 600;
   }
   
   h5 {
     font-size: 18px;
     letter-spacing: -0.01em;
     line-height: 1.4;
     font-weight: 600;
   }
   
   h6 {
     font-size: 16px;
     letter-spacing: -0.01em;
     line-height: 1.4;
     font-weight: 600;
   }
   
   /* Paragraphs */
   p {
     font-size: 16px;
     line-height: 1.6;
     margin-bottom: 1rem;
   }
   
   .lead {
     font-size: 20px;
     line-height: 1.6;
     font-weight: 400;
   }
   
   /* ===========================
      Custom Bootstrap Overrides
      =========================== */
   .btn-primary {
     background-color: var(--k8s-blue);
     border-color: var(--k8s-blue);
     font-weight: 500;
     border-radius: 8px;
     padding: 8px 16px;
     font-size: 0.9rem;
     transition: all 0.2s ease;
   }
   
   .btn-primary:hover {
     background-color: var(--k8s-dark-blue);
     border-color: var(--k8s-dark-blue);
     transform: translateY(-1px);
   }
   
   .btn-outline-primary {
     color: var(--k8s-blue);
     border-color: var(--k8s-blue);
     font-weight: 500;
     border-radius: 8px;
     padding: 8px 16px;
     font-size: 0.9rem;
     transition: all 0.2s ease;
   }
   
   .btn-outline-primary:hover {
     background-color: var(--k8s-blue);
     border-color: var(--k8s-blue);
     transform: translateY(-1px);
   }
   
   .text-primary {
     color: var(--k8s-blue) !important;
   }
   
   .text-success {
     color: var(--k8s-success) !important;
   }
   
   .text-warning {
     color: var(--k8s-warning) !important;
   }
   
   .text-danger {
     color: var(--k8s-danger) !important;
   }
   
   .text-purple {
     color: var(--k8s-purple) !important;
   }
   
   .bg-primary {
     background-color: var(--k8s-blue) !important;
   }
   
   /* ===========================
      Navigation
      =========================== */
   .navbar {
     padding: 1rem 0;
     backdrop-filter: blur(10px);
     background-color: rgba(255, 255, 255, 0.95) !important;
     transition: all 0.3s ease;
     height: 80px;
     z-index: 1000;
   }
   
   .navbar-brand {
     font-size: 24px;
     font-weight: 700;
     transition: all 0.3s ease;
   }
   
   .logo-container {
     display: flex;
     align-items: center;
     justify-content: center;
   }
   
   .logo-svg {
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
     transition: all 0.3s ease;
   }
   
   /* Logo image styles */
   .logo-img {
     height: 50px;
     width: auto;
     max-width: 200px;
     object-fit: contain;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
     transition: all 0.3s ease;
   }
   
   .logo-img:hover {
     transform: scale(1.05);
     filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
   }
   
   .footer-logo {
     height: 40px;
     max-width: 150px;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
   }
   
   .nav-link {
     font-weight: 500;
     color: var(--color-text-secondary) !important;
     transition: all 0.2s ease;
     padding: 0.5rem 1rem !important;
     border-radius: 6px;
   }
   
   .nav-link:hover {
     color: var(--k8s-blue) !important;
     background-color: rgba(50, 108, 229, 0.1);
   }
   
   .navbar-toggler {
     border: none;
     padding: 0.25rem 0.5rem;
     background: transparent;
   }
   
   .navbar-toggler:focus {
     box-shadow: 0 0 0 0.2rem rgba(50, 108, 229, 0.25);
   }
   
   .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
   }
   
   .navbar-collapse {
     transition: all 0.3s ease;
   }
   
   .navbar-nav .btn {
     margin-left: 0.5rem;
     transition: all 0.2s ease;
   }
   
   .navbar-nav .btn:hover {
     transform: translateY(-1px);
   }
   
   /* Mobile Navigation Styles */
   @media (max-width: 991px) {
     .navbar-collapse {
       background: rgba(255, 255, 255, 0.98);
       border-radius: 12px;
       margin-top: 1rem;
       padding: 1rem;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
       border: 1px solid var(--color-border);
     }
     
     .navbar-nav {
       gap: 0.5rem;
     }
     
     .navbar-nav .nav-item {
       margin-bottom: 0.25rem;
     }
     
     .navbar-nav .btn {
       margin-left: 0;
       margin-top: 0.5rem;
       width: 100%;
       text-align: center;
     }
   }
   
   /* ===========================
      Hero Section
      =========================== */
   .hero-section {
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
     position: relative;
     overflow: hidden;
     min-height: calc(100vh - 80px);
     padding: 2rem 0 3rem 0;
     display: flex;
     align-items: center;
     margin-bottom: 0;
   }
   
   .hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
     opacity: 0.3;
   }
   
   /* Enhanced background patterns */
   .hero-patterns {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     pointer-events: none;
     z-index: 1;
   }
   
   .pattern-dots {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 20% 20%, rgba(50, 108, 229, 0.1) 0%, transparent 50%),
                 radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                 radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
     animation: patternFloat 20s ease-in-out infinite;
   }
   
   .pattern-grid {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23cbd5e1" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
     opacity: 0.4;
     animation: patternSlide 30s linear infinite;
   }
   
   .pattern-waves {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,20 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(50, 108, 229, 0.05)"/></svg>');
     animation: waveFloat 25s ease-in-out infinite;
   }
   
   @keyframes patternFloat {
     0%, 100% { transform: translateY(0px) rotate(0deg); }
     50% { transform: translateY(-20px) rotate(2deg); }
   }
   
   @keyframes patternSlide {
     0% { transform: translateX(0); }
     100% { transform: translateX(20px); }
   }
   
   @keyframes waveFloat {
     0%, 100% { transform: translateY(0px) scale(1); }
     50% { transform: translateY(-10px) scale(1.05); }
   }
   
   .pattern-dots {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 20% 20%, rgba(50, 108, 229, 0.1) 0%, transparent 50%),
                 radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                 radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
     animation: patternFloat 20s ease-in-out infinite;
   }
   
   .pattern-grid {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23cbd5e1" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
     opacity: 0.4;
     animation: patternSlide 30s linear infinite;
   }
   
   .pattern-waves {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,20 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(50, 108, 229, 0.05)"/></svg>');
     animation: waveFloat 25s ease-in-out infinite;
   }
   
   @keyframes patternFloat {
     0%, 100% { transform: translateY(0px) rotate(0deg); }
     50% { transform: translateY(-20px) rotate(2deg); }
   }
   
   @keyframes patternSlide {
     0% { transform: translateX(0); }
     100% { transform: translateX(20px); }
   }
   
   @keyframes waveFloat {
     0%, 100% { transform: translateY(0px) scale(1); }
     50% { transform: translateY(-10px) scale(1.05); }
   }
   
   .floating-elements {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     pointer-events: none;
     z-index: 1;
   }
   
   .floating-element {
     position: absolute;
     font-size: 24px;
     opacity: 0.15;
     animation: float 6s ease-in-out infinite;
     transition: all 0.3s ease;
   }
   
   .floating-element:hover {
     opacity: 0.3;
     transform: scale(1.2);
   }
   
   .floating-docker { animation-delay: 0s; }
   .floating-k8s { animation-delay: 1.5s; }
   .floating-network { animation-delay: 3s; }
   .floating-security { animation-delay: 4.5s; }
   .floating-helm { animation-delay: 1s; }
   .floating-monitor { animation-delay: 2.5s; }
   .floating-git { animation-delay: 4s; }
   .floating-cloud { animation-delay: 5.5s; }
   
   /* Default floating element animation delays */
   .floating-element:nth-child(1) { animation-delay: 0s; }
   .floating-element:nth-child(2) { animation-delay: 1.5s; }
   .floating-element:nth-child(3) { animation-delay: 3s; }
   .floating-element:nth-child(4) { animation-delay: 4.5s; }
   
   @keyframes float {
     0%, 100% { transform: translateY(0px) rotate(0deg); }
     50% { transform: translateY(-20px) rotate(5deg); }
   }
   
   .hero-content {
     position: relative;
     z-index: 2;
     padding-top: 0;
   }
   
   /* Enhanced badge styles */
   .badge-container {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     align-items: flex-start;
     margin-bottom: 1rem;
   }
   
   .hero-badge {
     font-size: 12px;
     font-weight: 500;
     border-radius: 20px;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     white-space: nowrap;
     z-index: 2;
     padding: 0.25rem 0.5rem;
   }
   
   .hero-badge:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   }
   
   /* Prevent badge overlapping */
   .hero-badge:nth-child(2) {
     margin-left: 0;
   }
   
   .hero-badge:nth-child(3) {
     margin-left: 0;
   }
   
   /* Enhanced title styles */
   .hero-title {
     font-size: 40px;
     line-height: 1.1;
     margin-bottom: 0.5rem;
   }
   
   .hero-title-line {
     display: block;
     margin-bottom: 0.5rem;
   }
   
   .hero-title-highlight {
     position: relative;
     display: inline-block;
   }
   
   .title-underline {
     position: absolute;
     bottom: -8px;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, var(--k8s-blue), var(--k8s-light-blue));
     border-radius: 2px;
     animation: underlineGrow 2s ease-out 0.5s both;
   }
   
   .title-glow {
     position: absolute;
     bottom: -12px;
     left: -10px;
     right: -10px;
     height: 8px;
     background: linear-gradient(90deg, var(--k8s-blue), var(--k8s-light-blue));
     border-radius: 4px;
     opacity: 0.3;
     filter: blur(4px);
     animation: glowPulse 3s ease-in-out infinite;
   }
   
   /* Fix for simplified title structure */
   .hero-title .text-primary {
     position: relative;
     display: inline-block;
   }
   
   @keyframes underlineGrow {
     from { width: 0; }
     to { width: 100%; }
   }
   
   @keyframes glowPulse {
     0%, 100% { opacity: 0.3; transform: scale(1); }
     50% { opacity: 0.6; transform: scale(1.05); }
   }
   
   /* Hero subtitle styles */
   .hero-subtitle {
     font-size: 0.9rem;
     line-height: 1.4;
     color: var(--color-text-secondary);
     margin-bottom: 0.75rem;
   }
   
   .hero-subtitle code {
     background: rgba(50, 108, 229, 0.1);
     padding: 2px 6px;
     border-radius: 4px;
     font-size: 0.9em;
     color: var(--k8s-blue);
   }
   
   /* Value proposition styles */
   .hero-value-props {
     background: rgba(255, 255, 255, 0.8);
     border-radius: 12px;
     padding: 0.75rem;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.2);
     margin-bottom: 1rem;
   }
   
   .value-prop-item {
     padding: 0.5rem;
     border-radius: 8px;
     transition: all 0.3s ease;
   }
   
   .value-prop-item:hover {
     background: rgba(50, 108, 229, 0.1);
     transform: translateY(-2px);
   }
   
   .value-prop-item i {
     font-size: 1.5rem;
   }
   
   /* Enhanced setup highlight */
   .setup-highlight {
     background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
     border-left: 4px solid var(--k8s-blue) !important;
     position: relative;
     overflow: hidden;
     padding: 0.4rem 0.6rem !important;
     margin-bottom: 0.75rem !important;
   }
   
   .setup-highlight::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, transparent 30%, rgba(50, 108, 229, 0.05) 50%, transparent 70%);
     animation: shimmer 3s ease-in-out infinite;
   }
   
   .setup-highlight code {
     font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
     font-size: 12px;
     color: var(--k8s-dark-blue);
     background: rgba(50, 108, 229, 0.1);
     padding: 6px 10px;
     border-radius: 6px;
     display: inline-block;
     margin-top: 6px;
   }
   
   .code-container {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: rgba(50, 108, 229, 0.1);
     padding: 8px 12px;
     border-radius: 6px;
     margin-top: 8px;
   }
   
   .code-container code {
     font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
     font-size: 14px;
     color: var(--k8s-dark-blue);
     flex: 1;
     margin: 0;
   }
   
   .copy-btn {
     margin-left: 8px;
     padding: 4px 8px;
     font-size: 12px;
   }
   
   @keyframes shimmer {
     0% { transform: translateX(-100%); }
     100% { transform: translateX(100%); }
   }
   
   /* Enhanced CTA styles */
   .hero-cta {
     position: relative;
     margin-bottom: 0.75rem;
   }
   
   .hero-cta .d-flex {
     gap: 0.75rem;
   }
   
   .hero-cta-primary {
     background: linear-gradient(135deg, var(--k8s-blue), var(--k8s-light-blue));
     border: none;
     position: relative;
     overflow: hidden;
   }
   
   .hero-cta-primary:hover {
     background: linear-gradient(135deg, var(--k8s-dark-blue), var(--k8s-blue));
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(50, 108, 229, 0.3);
   }
   
   .hero-cta-secondary {
     border: 2px solid var(--k8s-blue);
     background: transparent;
   }
   
   .hero-cta-secondary:hover {
     background: var(--k8s-blue);
     color: white;
     transform: translateY(-2px);
   }
   
   /* Trust indicators */
   .hero-trust-indicators {
     margin-top: 1rem;
   }
   
   .trust-stars {
     display: flex;
     align-items: center;
   }
   
   .trust-stars i {
     font-size: 14px;
     margin-right: 2px;
   }
   
   .trust-indicators {
     margin-top: 0.5rem;
   }
   
   .trust-indicators .badge {
     font-size: 12px;
     border-radius: 16px;
   }
   
   /* ===========================
      Terminal Demo
      =========================== */
   .hero-visual {
     position: relative;
     z-index: 2;
     margin-top: -40px;
   }
   
   .chat-demo-container {
     max-width: 450px;
     margin: 0 auto;
     position: relative;
   }
   
   .terminal-window {
     background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
     border-radius: 16px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 
                 0 0 0 1px rgba(255, 255, 255, 0.1),
                 inset 0 1px 0 rgba(255, 255, 255, 0.1);
     overflow: hidden;
     font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
     position: relative;
     border: 1px solid rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     transform: perspective(1000px) rotateX(2deg);
     transition: all 0.3s ease;
   }
   
   .terminal-window:hover {
     transform: perspective(1000px) rotateX(0deg) translateY(-5px);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
                 0 0 0 1px rgba(255, 255, 255, 0.15),
                 inset 0 1px 0 rgba(255, 255, 255, 0.15);
   }
   
   .terminal-header {
     background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
     padding: 16px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     position: relative;
   }
   
   .terminal-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
   }
   
   .terminal-status {
     display: flex;
     align-items: center;
     gap: 8px;
   }
   
   .status-indicator {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: #4ade80;
     animation: statusPulse 2s ease-in-out infinite;
   }
   
   .status-text {
     font-size: 12px;
     color: #a0aec0;
   }
   
   @keyframes statusPulse {
     0%, 100% { opacity: 1; }
     50% { opacity: 0.5; }
   }
   
   .terminal-buttons {
     display: flex;
     gap: 10px;
   }
   
   .terminal-button {
     width: 16px;
     height: 16px;
     border-radius: 50%;
     position: relative;
     transition: all 0.2s ease;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
   }
   
   .terminal-button:hover {
     transform: scale(1.1);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
   }
   
   .terminal-button.red { 
     background: linear-gradient(135deg, #ff5f56, #ff3b30);
     box-shadow: 0 2px 4px rgba(255, 95, 86, 0.3);
   }
   .terminal-button.yellow { 
     background: linear-gradient(135deg, #ffbd2e, #ff9500);
     box-shadow: 0 2px 4px rgba(255, 189, 46, 0.3);
   }
   .terminal-button.green { 
     background: linear-gradient(135deg, #27ca3f, #34c759);
     box-shadow: 0 2px 4px rgba(39, 202, 63, 0.3);
   }
   
   .terminal-title {
     color: #ffffff;
     font-size: 14px;
     font-weight: 600;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
     letter-spacing: 0.5px;
   }
   
   .terminal-content {
     padding: 20px;
     color: #ffffff;
     font-size: 14px;
     line-height: 1.6;
     min-height: 200px;
     background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
     position: relative;
   }
   
   .terminal-content::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
   }
   
   .terminal-line {
     margin-bottom: 6px;
   }
   
   .prompt {
     color: #4ade80;
     font-weight: bold;
     text-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
   }
   
   .command {
     color: #60a5fa;
     font-weight: 500;
     text-shadow: 0 0 8px rgba(96, 165, 250, 0.2);
   }
   
   .typing-text {
     animation: typing 3s steps(40, end) 1s both;
     overflow: hidden;
     white-space: nowrap;
     border-right: 2px solid #60a5fa;
   }
   
   .typing-text-2 {
     animation: typing 3s steps(40, end) 8s both;
     overflow: hidden;
     white-space: nowrap;
     border-right: 2px solid #60a5fa;
   }
   
   .typing-text-2::after {
     content: '_';
     animation: blink 1s infinite;
     color: #60a5fa;
   }
   
   @keyframes typing {
     from { width: 0; }
     to { width: 100%; }
   }
   
   .terminal-response {
     margin: 12px 0;
     padding-left: 12px;
   }
   
   .response-line {
     margin-bottom: 6px;
     display: flex;
     align-items: center;
     opacity: 0;
     animation: fadeInUp 0.6s ease-out forwards;
     padding: 2px 0;
     border-radius: 4px;
     transition: all 0.3s ease;
   }
   
   .emoji {
     font-size: 16px;
     margin-right: 10px;
     display: inline-block;
     animation: emojiPulse 2s ease-in-out infinite;
   }
   
   @keyframes emojiPulse {
     0%, 100% { transform: scale(1); }
     50% { transform: scale(1.1); }
   }
   
   .ai-analysis {
     animation-delay: 2s;
     color: #60a5fa;
   }
   
   .ai-intent {
     animation-delay: 2.5s;
     color: #a78bfa;
   }
   
   .safety-check {
     animation-delay: 3s;
     color: #4ade80;
   }
   
   .kubectl-command {
     animation-delay: 3.5s;
     color: #fbbf24;
     font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
     font-size: 12px;
     background: rgba(251, 191, 36, 0.1);
     padding: 4px 8px;
     border-radius: 4px;
     border-left: 2px solid #fbbf24;
   }
   
   .deployment-success {
     animation-delay: 4s;
     color: #4ade80;
     font-weight: bold;
   }
   
   .response-line:hover {
     background: rgba(255, 255, 255, 0.05);
     padding-left: 8px;
   }
   
   .response-line:nth-child(1) { animation-delay: 2s; }
   .response-line:nth-child(2) { animation-delay: 2.5s; }
   .response-line:nth-child(3) { animation-delay: 3s; }
   .response-line:nth-child(4) { animation-delay: 3.5s; }
   
   .success-line {
     color: #4ade80;
     font-weight: bold;
   }
   
   .cursor {
     animation: blink 1s infinite;
     color: #60a5fa;
     font-weight: bold;
     text-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
   }
   
   @keyframes blink {
     0%, 50% { opacity: 1; }
     51%, 100% { opacity: 0; }
   }
   
   /* Terminal controls */
   .terminal-controls {
     position: absolute;
     bottom: 12px;
     right: 12px;
     display: flex;
     gap: 8px;
   }
   
   .terminal-controls .btn {
     padding: 4px 8px;
     font-size: 11px;
     border-radius: 4px;
   }
   
   /* Demo prompt */
   .demo-prompt {
     position: absolute;
     bottom: -20px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 3;
   }
   
   .demo-prompt-content {
     background: rgba(255, 255, 255, 0.95);
     padding: 8px 16px;
     border-radius: 20px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     font-size: 12px;
     color: var(--color-text-secondary);
     border: 1px solid var(--color-border);
     animation: promptFloat 3s ease-in-out infinite;
   }
   
   @keyframes promptFloat {
     0%, 100% { transform: translateY(0px); }
     50% { transform: translateY(-5px); }
   }
   
   /* Enhanced Floating Stats */
   .floating-stats {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     pointer-events: none;
     z-index: 3;
   }
   
   .stat-card {
     position: absolute;
     background: white;
     padding: 8px 12px;
     border-radius: 8px;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
     text-align: center;
     border: 1px solid var(--color-border);
     animation: floatStat 4s ease-in-out infinite;
     transition: all 0.3s ease;
     backdrop-filter: blur(10px);
     min-width: 80px;
   }
   
   .stat-card:hover {
     transform: translateY(-5px) scale(1.05);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
   }
   
   .stat-number {
     font-size: 16px;
     font-weight: 700;
     color: var(--k8s-blue);
     line-height: 1;
     margin-bottom: 2px;
   }
   
   .stat-label {
     font-size: 9px;
     color: var(--color-text-muted);
     font-weight: 500;
   }
   
   @keyframes floatStat {
     0%, 100% { transform: translateY(0px) rotate(0deg); }
     50% { transform: translateY(-10px) rotate(1deg); }
   }
   
   /* ===========================
      Setup Section
      =========================== */
   #setup {
     background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
     padding: 5rem 0;
     position: relative;
     overflow: hidden;
     margin-top: 0;
   }
   
   /* Connect hero section with setup section */
   .hero-section::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 100%;
     height: 150px;
     background: linear-gradient(to bottom, rgba(248, 250, 252, 0), rgba(248, 250, 252, 1));
     z-index: 1;
   }
   
   #setup::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" opacity="0.3"/></svg>');
     opacity: 0.4;
     z-index: 0;
   }
   
   #setup .container {
     position: relative;
     z-index: 1;
   }
   
   #setup h2 {
     font-size: 3rem;
     font-weight: 800;
     letter-spacing: -0.03em;
     background: linear-gradient(135deg, var(--k8s-navy), var(--k8s-blue));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 1.5rem;
   }
   
   #setup .lead {
     font-size: 1.25rem;
     line-height: 1.7;
     color: var(--color-text-secondary);
     max-width: 80%;
     margin: 0 auto 3rem;
     font-weight: 400;
   }
   
   .setup-step {
     position: relative;
     padding: 2.5rem 2rem;
     background: white;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     height: 100%;
     border: 1px solid rgba(0, 0, 0, 0.05);
   }
   
   .setup-step:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
   }
   
   .step-number {
     position: absolute;
     top: -20px;
     left: 50%;
     transform: translateX(-50%);
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, var(--k8s-blue), var(--k8s-light-blue));
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 16px;
     box-shadow: 0 5px 15px rgba(50, 108, 229, 0.3);
   }
   
   .step-icon {
     width: 80px;
     height: 80px;
     margin: 0 auto 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(50, 108, 229, 0.1), rgba(30, 58, 138, 0.05));
     border-radius: 20px;
     transition: all 0.3s ease;
   }
   
   .setup-step:hover .step-icon {
     transform: scale(1.05);
   }
   
   .step-icon i {
     font-size: 28px;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
   }
   
   .setup-step h4 {
     font-size: 1.25rem;
     font-weight: 700;
     margin-bottom: 1.25rem;
     color: var(--color-text);
   }
   
   .code-block {
     background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
     padding: 1rem 1.25rem;
     border-radius: 12px;
     margin-top: 1rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
   }
   
   .code-block::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 2px;
     background: linear-gradient(90deg, var(--k8s-blue), var(--k8s-light-blue), var(--k8s-blue));
     opacity: 0.7;
   }
   
   .code-block code {
     color: #4ade80;
     font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
     font-size: 14px;
     display: block;
     width: 100%;
     overflow-x: auto;
   }
   
   .setup-features {
     background: white;
     padding: 2.5rem;
     border-radius: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     border: 1px solid var(--color-border);
     margin-top: 3rem;
   }
   
   .feature-item {
     padding: 1rem 0.5rem;
     transition: all 0.3s ease;
     border-radius: 8px;
   }
   
   .feature-item:hover {
     background: rgba(50, 108, 229, 0.05);
     transform: translateX(5px);
   }
   
   .feature-icon-small {
     width: 48px;
     height: 48px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(50, 108, 229, 0.1), rgba(30, 58, 138, 0.05));
     border-radius: 12px;
     flex-shrink: 0;
     transition: all 0.3s ease;
   }
   
   .feature-item:hover .feature-icon-small {
     transform: scale(1.1);
   }
   
   .feature-icon-small i {
     font-size: 18px;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
   }
   
   .feature-item h6 {
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
     color: var(--color-text);
   }
   
   .feature-item p {
     font-size: 0.95rem;
     line-height: 1.6;
     color: var(--color-text-secondary);
     margin-bottom: 0;
   }
   
   /* ===========================
      Feature Cards
      =========================== */
   .feature-card {
     background: white;
     padding: 32px;
     border-radius: 16px;
     border: 1px solid var(--color-border);
     transition: all 0.3s ease;
     text-align: center;
   }
   
   .feature-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   }
   
   .feature-icon {
     width: 64px;
     height: 64px;
     margin: 0 auto 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--k8s-light-gray);
     border-radius: 16px;
   }
   
   .feature-icon i {
     font-size: 24px;
   }
   
   /* ===========================
      Compliance Section
      =========================== */
   .compliance-item {
     padding: 20px 0;
     border-bottom: 1px solid var(--color-border);
   }
   
   .compliance-item:last-child {
     border-bottom: none;
   }
   
   .compliance-icon {
     width: 48px;
     height: 48px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--k8s-light-gray);
     border-radius: 12px;
   }
   
   .compliance-icon i {
     font-size: 20px;
   }
   
   .compliance-visual {
     display: flex;
     justify-content: center;
     align-items: center;
   }
   
   .audit-dashboard {
     background: white;
     border-radius: 16px;
     padding: 24px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     border: 1px solid var(--color-border);
     max-width: 350px;
     width: 100%;
   }
   
   .dashboard-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
     padding-bottom: 16px;
     border-bottom: 1px solid var(--color-border);
   }
   
   .metric-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 12px 0;
     border-bottom: 1px solid var(--color-border);
   }
   
   .metric-row:last-child {
     border-bottom: none;
   }
   
   .metric-label {
     font-size: 14px;
     color: var(--color-text-secondary);
   }
   
   .metric-value {
     font-weight: 600;
     font-size: 14px;
   }
   
   /* ===========================
      Industry Cards
      =========================== */
   .industry-card {
     background: white;
     padding: 32px;
     border-radius: 16px;
     border: 1px solid var(--color-border);
     transition: all 0.3s ease;
   }
   
   .industry-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   }
   
   .industry-icon {
     width: 64px;
     height: 64px;
     margin-bottom: 24px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--k8s-light-gray);
     border-radius: 16px;
   }
   
   .industry-icon i {
     font-size: 24px;
   }
   
   /* ===========================
      CTA Section
      =========================== */
   .cta-section {
     background: linear-gradient(135deg, var(--k8s-navy) 0%, var(--k8s-blue) 100%);
     position: relative;
     overflow: hidden;
   }
   
   .cta-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
   }
   
   .cta-section .container {
     position: relative;
     z-index: 2;
   }
   
   .text-white-50 {
     color: rgba(255, 255, 255, 0.8) !important;
   }
   
   /* ===========================
      Footer
      =========================== */
   footer {
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     position: relative;
     overflow: hidden;
   }
   
   footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
     opacity: 0.3;
   }
   
   footer .container {
     position: relative;
     z-index: 2;
   }
   
   footer h6 {
     color: var(--color-text) !important;
     font-weight: 600;
     margin-bottom: 1rem;
   }
   
   footer .text-muted {
     color: var(--color-text-muted) !important;
   }
   
   footer a {
     color: var(--color-text-secondary) !important;
     text-decoration: none;
     transition: all 0.2s ease;
   }
   
   footer a:hover {
     color: var(--k8s-blue) !important;
     transform: translateX(4px);
   }
   
   footer hr {
     border-color: var(--color-border);
     margin: 2rem 0;
   }
   
   .social-links a {
     font-size: 18px;
     transition: all 0.2s ease;
     display: inline-block;
   }
   
   .social-links a:hover {
     color: var(--k8s-blue) !important;
     transform: translateY(-2px);
   }
   
   /* ===========================
      Responsive Design
      =========================== */
   
   /* Large Desktop (1200px and up) */
   @media (min-width: 1200px) {
     .container {
       max-width: 1140px;
     }
     
     .hero-title {
       font-size: 44px;
     }
     
     .hero-section {
       min-height: calc(100vh - 80px);
       padding: 2rem 0 2rem 0;
     }
     
     h1 { font-size: 44px; }
     h2 { font-size: 48px; }
     h3 { font-size: 42px; }
   }
   
   /* Desktop (992px to 1199px) */
   @media (max-width: 1199px) and (min-width: 992px) {
     .hero-title { font-size: 40px; }
     h1 { font-size: 40px; }
     h2 { font-size: 42px; }
     h3 { font-size: 36px; }
     
     .hero-section {
       min-height: calc(100vh - 80px);
       padding: 2rem 0 2rem 0;
     }
     
     .feature-card,
     .industry-card {
       padding: 28px;
     }
   }
   
   /* Tablet (768px to 991px) */
   @media (max-width: 991px) and (min-width: 768px) {
     .hero-title { font-size: 36px; }
     h1 { font-size: 32px; }
     h2 { font-size: 28px; }
     h3 { font-size: 24px; }
     
     .hero-section {
       min-height: calc(100vh - 80px);
       padding: 2rem 0 2rem 0;
     }
     
     .hero-content {
       padding-top: 0;
       text-align: center;
     }
     
     .chat-demo-container {
       margin-top: 40px;
     }
     
     
     .navbar-nav {
       text-align: center;
       margin-top: 1rem;
     }
     
     .navbar-nav .btn {
       margin-top: 0.5rem;
     }
     
     .feature-card,
     .industry-card {
       padding: 24px;
       margin-bottom: 2rem;
     }
     
     .compliance-visual {
       margin-top: 40px;
     }
     
     .setup-step {
       padding: 24px 16px;
     }
   }
   
   /* Mobile Large (576px to 767px) */
   @media (max-width: 767px) and (min-width: 576px) {
     .hero-title { font-size: 28px; }
     h1 { font-size: 24px; }
     h2 { font-size: 20px; }
     h3 { font-size: 18px; }
     
     .hero-section {
       min-height: calc(100vh - 80px);
       padding: 2rem 0 2rem 0;
     }
     
     .hero-content {
       padding-top: 0;
       text-align: center;
     }
     
     .chat-demo-container {
       margin-top: 40px;
     }
     
     .floating-elements {
       display: none;
     }
     
     .floating-stats {
       display: none;
     }
     
     .badge-container {
       justify-content: center;
     }
     
     .feature-card,
     .industry-card {
       padding: 20px;
       margin-bottom: 1.5rem;
     }
     
     .compliance-visual {
       margin-top: 40px;
     }
     
     .setup-step {
       padding: 20px 12px;
     }
     
     .terminal-window {
       margin: 0 8px;
     }
     
     .chat-demo-container {
       max-width: 400px;
     }
     
     .navbar-brand {
       font-size: 20px;
     }
     
     .logo-img {
       height: 45px;
       max-width: 150px;
     }
     
     .btn-lg {
       padding: 10px 18px;
       font-size: 16px;
     }
     
        /* Footer adjustments for mobile */
   footer .col-lg-4,
   footer .col-lg-3,
   footer .col-lg-2 {
     margin-bottom: 2rem;
     text-align: center;
   }
   
   footer .d-flex.gap-3 {
     justify-content: center;
   }
   }
   
   /* Mobile Small (up to 575px) */
   @media (max-width: 575px) {
     .hero-title { font-size: 24px; }
     h1 { font-size: 20px; }
     h2 { font-size: 18px; }
     h3 { font-size: 16px; }
     
     .hero-section {
       min-height: calc(100vh - 80px);
       padding: 2rem 0 2rem 0;
     }
     
     .hero-content {
       padding-top: 0;
       text-align: center;
     }
     
     .chat-demo-container {
       margin-top: 30px;
     }
     
     .floating-elements {
       display: none;
     }
     
     .floating-stats {
       display: none;
     }
     
     .badge-container {
       justify-content: center;
       flex-direction: column;
       align-items: center;
     }
     
     .badge {
       margin-bottom: 8px;
     }
     
     .feature-card,
     .industry-card {
       padding: 16px;
       margin-bottom: 1rem;
     }
     
     .compliance-visual {
       margin-top: 30px;
     }
     
     .setup-step {
       padding: 16px 8px;
     }
     
     .terminal-window {
       margin: 0 4px;
     }
     
     .navbar-brand {
       font-size: 18px;
     }
     
     .logo-img {
       height: 40px;
       max-width: 120px;
     }
     
     .footer-logo {
       height: 35px;
       max-width: 120px;
     }
     
     .btn-lg {
       padding: 12px 20px;
       font-size: 16px;
       width: 100%;
       margin-bottom: 8px;
     }
     
     .btn-outline-primary.btn-lg {
       width: 100%;
     }
     
     .setup-highlight {
       margin: 0 -16px;
       padding: 16px;
       border-radius: 0;
     }
     
     .setup-highlight code {
       font-size: 12px;
       word-break: break-all;
     }
     
     /* Footer adjustments for small mobile */
     footer {
       padding: 2rem 0 !important;
     }
     
     footer .col-lg-4,
     footer .col-lg-3,
     footer .col-lg-2 {
       margin-bottom: 1.5rem;
       text-align: center;
     }
     
     footer .d-flex.gap-3 {
       justify-content: center;
     }
     
     footer .row.align-items-center {
       text-align: center;
     }
     
     footer .text-md-end {
       text-align: center !important;
       margin-top: 1rem;
     }
     
     /* Terminal adjustments for very small screens */
     .terminal-content {
       padding: 12px;
       font-size: 12px;
     }
     
     .terminal-header {
       padding: 8px 12px;
     }
     
     .terminal-title {
       font-size: 10px;
     }
   }
   
   /* ===========================
      Animations
      =========================== */
   @keyframes fadeInUp {
     from {
       opacity: 0;
       transform: translateY(30px);
     }
     to {
       opacity: 1;
       transform: translateY(0);
     }
   }
   
   .fade-in-up {
     animation: fadeInUp 0.6s ease-out;
   }
   
   /* Hero animation classes */
   .animate-fade-in {
     animation: fadeIn 0.8s ease-out forwards;
     opacity: 0;
   }
   
   .animate-slide-up {
     animation: slideUp 0.8s ease-out forwards;
     opacity: 0;
     transform: translateY(30px);
   }
   
   @keyframes fadeIn {
     from { opacity: 0; }
     to { opacity: 1; }
   }
   
   @keyframes slideUp {
     from { 
       opacity: 0; 
       transform: translateY(30px); 
     }
     to { 
       opacity: 1; 
       transform: translateY(0); 
     }
   }
   
   /* Smooth scrolling */
   html {
     scroll-behavior: smooth;
   }
   
   /* Focus states for accessibility */
   .btn:focus,
   .nav-link:focus,
   .navbar-toggler:focus {
     outline: 2px solid var(--k8s-blue);
     outline-offset: 2px;
   }
   
   /* Loading animation for demo */
   @keyframes pulse {
     0%, 100% { opacity: 1; }
     50% { opacity: 0.5; }
   }
   
   .loading {
     animation: pulse 2s infinite;
   }
   
   /* Enhanced visual consistency */
   .section-padding {
     padding: 5rem 0;
   }
   
   .card-hover {
     transition: all 0.3s ease;
   }
   
   .card-hover:hover {
     transform: translateY(-4px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
   }
   
   /* Improved button consistency */
   .btn {
     font-weight: 500;
     border-radius: 8px;
     transition: all 0.2s ease;
     position: relative;
     overflow: hidden;
   }
   
   .btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s;
   }
   
   .btn:hover::before {
     left: 100%;
   }
   
   /* Enhanced spacing consistency */
   .mb-section {
     margin-bottom: 5rem;
   }
   
   .mt-section {
     margin-top: 5rem;
   }
   
   /* Improved text hierarchy */
   .text-gradient {
     background: linear-gradient(135deg, var(--k8s-blue), var(--k8s-light-blue));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }
   
   /* Enhanced form elements */
   .form-control:focus {
     border-color: var(--k8s-blue);
     box-shadow: 0 0 0 0.2rem rgba(50, 108, 229, 0.25);
   }
   
   /* Improved scroll behavior */
   html {
     scroll-behavior: smooth;
     scroll-padding-top: 80px;
   }
   
   /* Enhanced accessibility */
   .sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0;
   }
   
   /* Improved image responsiveness */
   img {
     max-width: 100%;
     height: auto;
   }
   
   /* Enhanced link styles */
   a {
     text-decoration: none;
     transition: all 0.2s ease;
   }
   
   a:hover {
     text-decoration: none;
   }
   
   /* Improved list styles */
   .list-unstyled li {
     margin-bottom: 0.5rem;
   }
   
   /* Enhanced badge styles */
   .badge {
     font-weight: 500;
     letter-spacing: 0.025em;
   }
   
   /* Improved code block styles */
   code {
     font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
     font-size: 0.875em;
   }
   
   pre {
     background: #1e1e1e;
     color: #ffffff;
     padding: 1rem;
     border-radius: 8px;
     overflow-x: auto;
   }
   
   /* Enhanced table styles */
   .table {
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   }
   
   .table th {
     background-color: var(--k8s-light-gray);
     font-weight: 600;
     border: none;
   }
   
   /* Improved alert styles */
   .alert {
     border: none;
     border-radius: 8px;
     font-weight: 500;
   }
   
   /* Enhanced modal styles */
   .modal-content {
     border: none;
     border-radius: 12px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
   }
   
   .modal-header {
     border-bottom: 1px solid var(--color-border);
   }
   
   .modal-footer {
     border-top: 1px solid var(--color-border);
   }