 @import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap');

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

     font-family: "Google Sans Code", monospace;
     font-optical-sizing: auto;
     font-style: normal;
 }

 :root {
     --primary-color: #5500fe;
     --secondary-color: #7722ff;
     --background-dark: #0f0f0f;
     --background-medium: #1a1a1a;
     --background-light: #2a2a2a;
     --text-primary: #ffffff;
     --text-secondary: #e0e0e0;
     --text-muted: #b0b0b0;
     --border-color: #333;
     --success-color: #00ff88;
     --warning-color: #ffaa00;
     --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Georgia, sans-serif;
     background: var(--background-dark);
     color: var(--text-secondary);
     line-height: 1.6;
     scroll-behavior: smooth;
 }

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

 /* Header */
 .header {
     text-align: center;
     padding: 60px 0;
     background: linear-gradient(135deg, var(--background-medium) 0%, var(--background-light) 100%);
     border-radius: 20px;
     margin-bottom: 40px;
     position: relative;
     overflow: hidden;
 }

 .header::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 2px;
     background: var(--gradient-primary);
 }

 .logo {
     margin-bottom: 30px;
 }

 .logo-placeholder {
     width: 80px;
     height: 80px;
     background: var(--gradient-primary);
     border-radius: 16px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     font-weight: bold;
     color: white;
     box-shadow: 0 8px 32px rgba(85, 0, 254, 0.3);
 }

 .title {
     font-size: 2.8rem;
     color: var(--text-primary);
     font-weight: 600;
     margin-bottom: 15px;
     background: var(--gradient-primary);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .subtitle {
     font-size: 1.2rem;
     color: var(--text-muted);
     margin-bottom: 30px;
 }

 .version {
     background: rgba(85, 0, 254, 0.1);
     color: var(--primary-color);
     padding: 8px 20px;
     border-radius: 25px;
     font-size: 0.9rem;
     display: inline-block;
     border: 1px solid rgba(85, 0, 254, 0.3);
     backdrop-filter: blur(10px);
 }

 /* Navigation */
 .nav {
     background: rgba(42, 42, 42, 0.8);
     backdrop-filter: blur(20px);
     padding: 0;
     margin-bottom: 40px;
     border-radius: 15px;
     border: 1px solid var(--border-color);
     position: sticky;
     top: 20px;
     z-index: 100;
 }

 .nav ul {
     list-style: none;
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     padding: 5px;
 }

 .nav li {
     margin: 5px;
 }

 .nav a {
     color: var(--text-secondary);
     text-decoration: none;
     padding: 12px 20px;
     border-radius: 10px;
     transition: all 0.3s ease;
     display: block;
     font-weight: 500;
 }

 .nav a:hover {
     background: var(--gradient-primary);
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 4px 20px rgba(85, 0, 254, 0.4);
 }

 /* Content sections */
 .section {
     margin-bottom: 50px;
     padding: 40px;
     background: rgba(26, 26, 26, 0.8);
     border-radius: 20px;
     border: 1px solid var(--border-color);
     backdrop-filter: blur(10px);
     position: relative;
     overflow: hidden;
 }

 .section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 1px;
     background: var(--gradient-primary);
 }

 .section h2 {
     color: var(--text-primary);
     font-size: 1.8rem;
     margin-bottom: 25px;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .section h2::before {
     content: '';
     width: 4px;
     height: 25px;
     background: var(--gradient-primary);
     border-radius: 2px;
 }

 .section p {
     margin-bottom: 20px;
     color: var(--text-secondary);
     font-size: 1.05rem;
 }

 /* Code blocks */
 .code {
     background: var(--background-dark);
     border: 1px solid rgba(85, 0, 254, 0.2);
     border-radius: 15px;
     padding: 25px;
     margin: 25px 0;
     font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
     font-size: 0.95rem;
     overflow-x: auto;
     position: relative;
 }

 .code::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 1px;
     background: var(--gradient-primary);
 }

 .code .prompt {
     color: var(--primary-color);
     font-weight: 600;
 }

 .code .output {
     color: var(--text-primary);
     margin-left: 10px;
 }

 /* Lists */
 .feature-list {
     list-style: none;
     margin-left: 0;
 }

 .feature-list li {
     margin-bottom: 12px;
     padding: 15px 20px;
     background: rgba(42, 42, 42, 0.5);
     border-radius: 10px;
     border-left: 3px solid var(--primary-color);
 }

 .status-list {
     list-style: none;
     margin-left: 0;
 }

 .status-list li {
     margin-bottom: 10px;
     padding: 10px 15px;
     border-radius: 8px;
     font-weight: 500;
 }

 .completed {
     background: rgba(0, 255, 136, 0.1);
     color: var(--success-color);
     border-left: 3px solid var(--success-color);
 }

 .in-progress {
     background: rgba(255, 170, 0, 0.1);
     color: var(--warning-color);
     border-left: 3px solid var(--warning-color);
 }

 .pending {
     background: rgba(176, 176, 176, 0.1);
     color: var(--text-muted);
     border-left: 3px solid var(--text-muted);
 }

 /* Pipeline steps */
 .pipeline-steps {
     margin: 30px 0;
 }

 .pipeline-steps ol {
     counter-reset: step-counter;
     list-style: none;
 }

 .pipeline-steps li {
     counter-increment: step-counter;
     margin-bottom: 20px;
     padding: 20px;
     background: rgba(42, 42, 42, 0.5);
     border-radius: 12px;
     position: relative;
     padding-left: 60px;
 }

 .pipeline-steps li::before {
     content: counter(step-counter);
     position: absolute;
     left: 20px;
     top: 20px;
     width: 30px;
     height: 30px;
     background: var(--gradient-primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     color: white;
 }

 /* Platforms */
 .platforms {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     gap: 20px;
     margin: 25px 0;
 }

 .platform {
     background: rgba(42, 42, 42, 0.8);
     padding: 20px;
     border-radius: 15px;
     text-align: center;
     font-weight: 600;
     border: 1px solid var(--border-color);
     transition: all 0.3s ease;
 }

 .platform:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }

 .platform.supported {
     color: var(--success-color);
     border-color: var(--success-color);
 }

 .platform.future {
     color: var(--warning-color);
     border-color: var(--warning-color);
 }

 /* Footer */
 .footer {
     margin-top: 60px;
     padding: 40px;
     background: rgba(26, 26, 26, 0.8);
     border-radius: 20px;
     text-align: center;
     font-size: 0.95rem;
     color: var(--text-muted);
     border: 1px solid var(--border-color);
 }

 .footer a {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 500;
 }

 .footer a:hover {
     color: var(--secondary-color);
     text-decoration: underline;
 }

 /* Coming soon notice */
 .coming-soon {
     background: rgba(85, 0, 254, 0.1);
     border: 1px solid rgba(85, 0, 254, 0.3);
     padding: 30px;
     text-align: center;
     border-radius: 15px;
     color: var(--primary-color);
     font-weight: 500;
 }

 /* Scroll animations */
 .section {
     opacity: 0;
     transform: translateY(30px);
     animation: fadeInUp 0.8s ease forwards;
 }

 .section:nth-child(1) {
     animation-delay: 0.1s;
 }

 .section:nth-child(2) {
     animation-delay: 0.2s;
 }

 .section:nth-child(3) {
     animation-delay: 0.3s;
 }

 .section:nth-child(4) {
     animation-delay: 0.4s;
 }

 .section:nth-child(5) {
     animation-delay: 0.5s;
 }

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

 /* Responsive */
 @media (max-width: 768px) {
     .container {
         padding: 15px;
     }

     .title {
         font-size: 2.2rem;
     }

     .section {
         padding: 25px;
         margin-bottom: 30px;
     }

     .nav {
         position: relative;
         top: 0;
     }

     .nav ul {
         flex-direction: column;
         align-items: center;
     }

     .nav li {
         margin: 3px 0;
         width: 100%;
         max-width: 200px;
     }

     .nav a {
         text-align: center;
     }

     .pipeline-steps li {
         padding-left: 20px;
     }

     .pipeline-steps li::before {
         display: none;
     }
 }

 @media (max-width: 480px) {
     .header {
         padding: 40px 20px;
     }

     .title {
         font-size: 1.8rem;
     }

     .section h2 {
         font-size: 1.5rem;
     }

     .platforms {
         grid-template-columns: 1fr;
     }
 }
