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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    width: 100%;
    padding: 2rem;
}

.container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #ff6600;
}

p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #cccccc;
}

.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.download-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ff6600;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.download-btn:hover {
    background-color: #ff7722;
}

footer {
    margin-top: 4rem;
}

.footer-text {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background-color: rgba(255, 102, 0, 0.1);
}

.footer-link:hover {
    color: #ff6600;
    background-color: rgba(255, 102, 0, 0.2);
}

.footer-separator {
    color: #666666;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    .features {
        gap: 2rem;
    }
    
    .feature h3 {
        font-size: 0.85rem;
    }
}