        @font-face {
            font-family: 'SpaceMono';
            src: url('SpaceMono.ttf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        /* Colors */
        :root {
            --neon-green: #97fd00;
            --purple: #5852fb;
            --dark-bg: #000;
            --darker-bg: #000;
            --text-light: #f0f0f0;
            --text-dim: #aaa;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* Style */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            font-family: 'SpaceMono', monospace;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(151, 253, 0, 0.05) 0%, transparent 15%),
                radial-gradient(circle at 90% 80%, rgba(88, 82, 251, 0.05) 0%, transparent 15%);
            pointer-events: none;
            z-index: -1;
        }
        
        a {
          color: var(--purple);
          text-decoration: none;
          transition: color 0.3s ease;
        }

        a:hover {
          color: var(--neon-green);
          text-decoration: underline;
        }     
        
        strong {
          color: var(--purple);
        }   
        
        /* Animation */
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        /* Header and navigation */
        header {
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(5px);
            border-bottom: 1px solid rgba(151, 253, 0, 0.1);
        }
        
        .logo {
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            width: auto;
            display: block;
            animation: neon-pulse-img 3s infinite;
        }

        @keyframes neon-pulse-img {
            0%, 100% { filter: drop-shadow(0 0 5px var(--neon-green)) drop-shadow(0 0 10px var(--neon-green)); }
            50% { filter: drop-shadow(0 0 20px var(--neon-green)) drop-shadow(0 0 30px var(--neon-green)); }
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        
        nav a {
            color: var(--text-light);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            padding: 0.5rem 0;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-green);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        /* Main section */
        .main-section {
            min-height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 6rem 5% 2rem;
            text-align: center;
            position: relative;
        }
        
        .main-section h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            color: var(--neon-green);
            text-shadow: 0 0 10px rgba(151, 253, 0, 0.5);
        }
        
        @keyframes neon-pulse {
            0%, 100% { text-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green); }
            50% { text-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green); }
        }
        
        .main-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 2rem;
            color: var(--text-dim);
        }
        
        .main-section p.main-subtitle {
            font-size: 1.5rem;
            color: var(--purple);
            margin-bottom: 3rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .btn {
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 0.9rem;
            border: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 2.8rem;
            line-height: 1.2;
            margin-top: 1rem;
        }
        
        .btn-primary {
            background: var(--neon-green);
            color: var(--dark-bg);
            box-shadow: 0 0 15px rgba(151, 253, 0, 0.4);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(151, 253, 0, 0.7);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--purple);
            border: 2px solid var(--purple);
            box-shadow: 0 0 15px rgba(88, 82, 251, 0.3);
        }
        
        .btn-secondary:hover {
            background: rgba(88, 82, 251, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(88, 82, 251, 0.5);
        }
        
        /* Terminal */
        .terminal {
            background: var(--darker-bg);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 3rem auto 0;
            max-width: 700px;
            width: 100%;
            text-align: left;
            border: 1px solid rgba(151, 253, 0, 0.1);
            box-shadow: 0 0 20px rgba(151, 253, 0, 0.05);
            line-height: 1.6;
        }
        
        .terminal-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .terminal-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 6px;
        }
        
        .dot-red { background: #ff5f56; }
        .dot-yellow { background: #ffbd2e; }
        .dot-green { background: #27c93f; }
         
        .terminal-content {
            padding: 0;
        }
        
        .terminal-line {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 0;
            align-items: flex-start;
        }
        
        .terminal-prompt-top {
            color: var(--neon-green);
            margin-right: 5px;
            white-space: nowrap;
            line-height: 1.1;
            margin-bottom: -0.05rem;
        }
        
        .terminal-prompt-bottom {
            color: var(--neon-green);
            margin-right: 5px;
            white-space: nowrap;
            line-height: 1.1;
        }
        
        .terminal-user {
            color: var(--purple);
        }
        
        .terminal-host {
            color: var(--neon-green);
        }
        
        .terminal-path {
            color: var(--purple);
        }
        
        .terminal-command {
            color: var(--purple);
            word-break: break-all;
            line-height: 1.1;
        }
        
        .terminal-output {
			font-size: 14px;
            color: var(--text-dim);
            margin-left: 0;
            padding-left: 0;
            white-space: pre-wrap;
            width: 100%;
            margin-top: 0.2rem;
            margin-bottom: 0.8rem;
            line-height: 1.2;
            word-break: break-word;
        }
        
        .terminal-line:has(.terminal-prompt-top) {
            margin-bottom: 0; 
        }
        
        .terminal-line:has(.terminal-prompt-bottom) {
            margin-bottom: 0; 
        }
        
        .welcome-message {
			font-size: 14px;
            color: var(--purple);
            text-align: left;
            margin: 0.5rem 0 0.8rem 9rem;
        }
        
        .cursor {
            display: inline-block;
            width: 8px;
            height: 1em;
            background: var(--neon-green);
            margin-left: 4px;
            animation: blink 1s infinite;
            animation-timing-function: steps(1, jump-end);
            vertical-align: middle;
        }
        
        /* ASCII container */
        .ascii-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 1rem 0 1rem -2rem;
            padding-bottom: 5px;
            width: calc(100% + 2rem);
        }
        
        .ascii-art {
            color: var(--neon-green);
            line-height: 1;
            font-size: 14px;
            white-space: pre;
            display: inline-block;
            min-width: 100%;
            text-align: left;
        }
              
        /* Sections */
        .section {
            padding: 5rem 5%;
            border-top: 1px solid rgba(151, 253, 0, 0.1);
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--neon-green);
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--purple);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
        }
        
        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .feature-card {
            background: var(--darker-bg);
            border-radius: 8px;
            padding: 2rem;
            border: 1px solid rgba(88, 82, 251, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(88, 82, 251, 0.2);
            border: 1px solid rgba(88, 82, 251, 0.3);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--neon-green);
            margin-bottom: 1rem;
        }      
        
        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--purple);
        }
        
        /* Team */
        .team-position {
            color: var(--neon-green);
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .team-bio {
            color: var(--text-dim);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .team-card {
            background: var(--darker-bg);
            border-radius: 4px;
            padding: 1.5rem;
            border: 1px solid rgba(88, 82, 251, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

        .team-photo-container {
            position: relative;
            width: 220px;
            height: 220px;
            margin: 0 auto 1.5rem;
            overflow: hidden;
            border: 1px solid rgba(151, 253, 0, 0.2);
            box-shadow: 0 0 15px rgba(88, 82, 251, 0.3);
        }

        .team-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .team-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(88, 82, 251, 0.1) 0%, rgba(151, 253, 0, 0.05) 100%);
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(88, 82, 251, 0.2);
            border: 1px solid rgba(151, 253, 0, 0.3);
        }

        .team-card:hover .team-photo {
            transform: scale(1.05);
        }

        .team-name {
            color: var(--neon-green);
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }

        .team-position {
            color: var(--purple);
            font-size: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .team-bio {
            color: var(--text-dim);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .security-update {
            color: var(--neon-green);
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        .tool-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(88, 82, 251, 0.1);
        }
        
        .tool-icon {
            font-size: 2rem;
            color: var(--neon-green);
            margin-right: 1.5rem;
            min-width: 40px;
            text-align: center;
        }
        
        .tool-info h3 {
            color: var(--purple);
            margin-bottom: 0.5rem;
        }
        
        .tool-info p {
            color: var(--text-dim);
        }
        
        .faq-item {
            background: var(--darker-bg);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(88, 82, 251, 0.1);
        }
        
        .faq-question {
            color: var(--neon-green);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        
        .faq-answer {
            color: var(--text-dim);
        }
        
        .donate-options {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        
        .donate-option {
            background: var(--darker-bg);
            border-radius: 8px;
            padding: 2rem;
            border: 1px solid rgba(88, 82, 251, 0.1);
            text-align: center;
            min-width: 200px;
            transition: all 0.3s ease;
        }
        
        .donate-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(88, 82, 251, 0.2);
            border: 1px solid rgba(88, 82, 251, 0.3);
        }
        
        .donate-option .feature-icon {
            margin-bottom: 1.5rem;
        }
        
        .docs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .doc-card {
            background: var(--darker-bg);
            border-radius: 8px;
            padding: 2rem;
            border: 1px solid rgba(88, 82, 251, 0.1);
            transition: all 0.3s ease;
        }
        
        .doc-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(88, 82, 251, 0.2);
            border: 1px solid rgba(88, 82, 251, 0.3);
        }
        
        .doc-card h3 {
            color: var(--purple);
            margin-bottom: 1rem;
        }
        
        .doc-card p {
            color: var(--text-dim);
            margin-bottom: 1.5rem;
        }
        
		/* Patches */
		
		.patches-container {
		    max-width: 900px;
		    margin: 0 auto;
		    padding: 0 20px;
		}
		
		.patch-item {
		    display: flex;
		    margin-bottom: 2rem;
		    border-left: 3px solid var(--neon-green);
		    padding-left: 15px;
		}
		
		.patch-number {
		    font-size: 1.2rem;
		    font-weight: bold;
		    color: var(--neon-green);
		    margin-right: 20px;
		    min-width: 40px;
		}
		
		.patch-details {
		    flex: 1;
		}
		
		.patch-header {
		    display: flex;
		    flex-wrap: wrap;
		    gap: 15px;
		    margin-bottom: 10px;
		    align-items: center;
		}
		
		.patch-type {
		    background-color: var(--darker-bg);
		    padding: 3px 10px;
		    border-radius: 4px;
		    font-weight: bold;
		    color: var(--neon-green);
		}
		
		.patch-date {
		    color: var(--text-dim);
		}
		
		.patch-arch {
		    background-color: var(--darker-bg);
		    padding: 3px 10px;
		    border-radius: 4px;
		    font-size: 0.9rem;
		}
		
		.patch-note {
		    background-color: rgba(0, 100, 255, 0.1);
		    padding: 10px;
		    border-left: 3px solid var(--purple);
		    margin-top: 10px;
		    font-size: 0.9rem;
		}
		
		.patch-info-box {
		    max-width: 900px;
		    margin: 3rem auto;
		    padding: 20px;
		    background-color: var(--darker-bg);
		    border-radius: 6px;
		}
		
		.code-block {
		    background-color: var(--darker-bg);
		    padding: 10px;
		    border-radius: 4px;
		    margin: 10px 0;
		    font-family: monospace;
		    display: inline-block;
		}
          
        /* Acknowledgement */
		.acknowledgement-section {
		    margin-bottom: 3rem;
		}
		
		.acknowledgement-section h2 {
		    color: var(--purple);
		    margin-bottom: 1.5rem;
		    font-size: 1.5rem;
		    border-bottom: 1px solid rgba(151, 253, 0, 0.2);
		    padding-bottom: 0.5rem;
		}
		
		.acknowledgement-list {
		    list-style-type: none;
		}
		
		.acknowledgement-list li {
		    margin-bottom: 1rem;
		    padding-left: 1.5rem;
		    position: relative;
		}
		
		.acknowledgement-list li::before {
		    content: '>';
		    position: absolute;
		    left: 0;
		    color: var(--neon-green);
		}
		
		.greets-list {
		    columns: 2;
		    column-gap: 2rem;
		    list-style-type: none;
		}
		
		.greets-list li {
		    margin-bottom: 0.8rem;
		    break-inside: avoid;
		}       
        		
        /* Footer */
        footer {
            background: var(--darker-bg);
            padding: 3rem 5%;
            text-align: center;
            border-top: 1px solid rgba(151, 253, 0, 0.1);
        }
        
        .footer-logo {
            font-size: 2rem;
            color: var(--neon-green);
            margin-bottom: 1.5rem;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-green);
        }
        
        .copyright {
            color: var(--text-dim);
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .main-section h1 {
                font-size: 3rem;
            }
        
            nav ul {
                gap: 1rem;
            }
        
            .cta-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }
        
            .terminal {
                padding: 1.5rem;
            }
            
            .terminal-output {
                font-size: 10px;
            }            
            
            .ascii-art {
                font-size: 10px;
            }
            
            .welcome-message {
				font-size: 12px;
                margin-left: 4rem;
                padding: 0 1rem;                
            }
                
            .team-photo-container {
                width: 180px;
                height: 180px;
            }    
            
		    .greets-list {
		        columns: 1;
		    }  
           	    				                   
		}                
        
        @media (max-width: 480px) {
            .main-section {
                padding-top: 10rem;
            }
                           
            .main-section h1 {
                font-size: 2.2rem;
            }
        
            .main-subtitle {
                font-size: 1.2rem;
            }
        
            header {
                flex-direction: column;
                padding: 1rem 5%;
            }
        
            nav {
                margin-top: 1rem;
            }
        
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .logo img {
                height: 30px;
            }
            
            .terminal-output {
                font-size: 9px;
            }
            
            .ascii-art {
                font-size: 8.5px;
                margin-left: 0rem;
            }
            
            .welcome-message {
                margin-left: 2rem;
                padding: 0 1rem;
            }
            
            .team-photo-container {
                width: 150px;
                height: 150px;
            }
            
            .team-name {
                font-size: 1.2rem;
            }                                                   
		}
