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

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

pre, pre code {
    display: block !important;
    white-space: pre !important;
    overflow-x: auto !important;
}

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

header {
    background: #2c3e50;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background: #667eea;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.9rem;
    opacity: 0.9;
}

section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.features {
    background: #f8f9fa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.feature h3 {
    color: #667eea;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #fff;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background: #f8f9fa;
    font-weight: bold;
}

.benchmarks {
    background: #fff;
}

.docs {
    background: #f8f9fa;
}

.doc-section {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.doc-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.doc-section li {
    margin-bottom: 0.5rem;
}

.doc-section code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
}

.install {
    background: #fff;
}

.install-method {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

pre {
    display: block !important;
    background: #2c3e50 !important;
    color: #fff !important;
    padding: 1.5rem !important;
    border-radius: 5px;
    overflow-x: auto;
    margin-top: 1rem;
    font-family: 'Courier New', Consolas, Monaco, monospace !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    white-space: pre !important;
}

pre code {
    display: inline !important;
    background: transparent !important;
    color: #fff !important;
    padding: 0 !important;
    font-family: 'Courier New', Consolas, Monaco, monospace !important;
    font-size: 0.9rem !important;
    white-space: pre !important;
}

code {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 0.9rem;
}

.comparison {
    background: #f8f9fa;
}

.cta-section {
    background: #667eea;
    color: #fff;
    text-align: center;
}

footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #fff;
}

.page-header {
    background: #2c3e50;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.content {
    padding: 3rem 0;
}

.feature-detailed {
    background: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.feature-detailed h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-detailed ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.feature-detailed li {
    margin-bottom: 0.5rem;
}

.doc-nav {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
}

.doc-nav h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.doc-nav ul {
    list-style: none;
}

.doc-nav li {
    margin-bottom: 0.5rem;
}

.doc-nav a {
    color: #667eea;
    text-decoration: none;
}

.doc-nav a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}