* {
    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-color: #f8f9fa;
}

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

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

main {
    margin-top: 80px;
    padding: 4rem 0;
}

.docs-hero {
    background: white;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.docs-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.docs-hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.construction-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.construction-notice h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #856404;
}

.construction-notice .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.docs-content {
    background: white;
    padding: 3rem 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 0.5rem;
}

.sidebar a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar a:hover {
    color: #667eea;
}

.content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #333;
}

.content p {
    margin-bottom: 1rem;
    color: #666;
}

.code-block {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.info-box {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    color: #1565c0;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.warning-box {
    background: #fff3e0;
    border: 1px solid #ffcc02;
    color: #f57c00;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.coming-soon {
    background: #f3e5f5;
    border: 1px solid #ce93d8;
    color: #7b1fa2;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.coming-soon h3 {
    margin-bottom: 1rem;
    color: #7b1fa2;
}

footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }
    
    .nav-links {
        display: none;
    }
}
