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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.container {
    max-width: 800px;
    width: 100%;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff1e8d, #8080ff, #fffd63, #00887a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff1e8d 0%, #8080ff 100%);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 30, 141, 0.3);
}

.screenshot {
    width: 100%;
    max-width: 500px;
    margin: 50px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 30, 141, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

.section {
    margin: 50px 0;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.use-case {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ff1e8d;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.use-case h3 {
    color: #ff1e8d;
    margin-bottom: 10px;
    font-size: 1rem;
}

.use-case p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

.specs {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.spec {
    text-align: center;
}

.spec-value {
    font-size: 2rem;
    font-weight: 700;
    color: #fffd63;
}

.spec-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.keyboard {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.keys {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.key {
    display: flex;
    align-items: center;
    gap: 10px;
}

.key kbd {
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px 18px;
    font-family: monospace;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 3px 0 #111;
}

.key span {
    color: #888;
    font-size: 0.9rem;
}

.lab-p {
	text-align: center;
	color: #888;
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto;
}

.java {
	text-align: center; 
	margin-top: 50px;
}

.java-p {
	color: #666; 
	margin-bottom: 15px;
}

.github {
	text-align: center; 
	margin-top: 50px;
}

footer {
    margin-top: 60px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

.footer-p {
	margin-top: 10px;
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: #ff1e8d;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #888;
    margin: 5px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
	
	.cta-button {
		padding: 10px 40px;
	}
	
	.features {
        grid-template-columns: 1fr;
    }
	
	.screenshot {
    	margin: 10px auto;
	}
	
    .tagline {
        font-size: 1.1rem;
    }
    
    .specs {
        gap: 25px;
    }
}