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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

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

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

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #1a1a1a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 40px;
    height: 40px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: #e0e0e0;
}

.btn-secondary {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
}

.btn-secondary:hover {
    background: #2a2a2a;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
}

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

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature p {
    color: #888;
    font-size: 0.95rem;
}

.screenshot {
    margin: 60px 0;
    text-align: center;
}

.screenshot img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #1a1a1a;
    margin-top: 60px;
}

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

footer a:hover {
    color: #fff;
}

code {
    background: #1a1a1a;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.install-section {
    background: #0a0a0a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    margin: 40px 0;
}

.install-section h2 {
    margin-bottom: 20px;
}

.install-section pre {
    background: #000;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid #1a1a1a;
}

.install-section code {
    background: transparent;
    padding: 0;
}
