body {
    background-color: #000;
    color: white;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 80px 20px 20px;
    min-height: 100vh;
    letter-spacing: 0.5px;
}

.docs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.doc {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #a8c0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.docs-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.docs-section {
    background: linear-gradient(145deg, rgba(52, 114, 247, 0.15), #0000006e);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.docs-section:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--glow-effect);
}

@media (max-width: 768px) {
    .doc {
        font-size: 2rem;
    }
    
    .docs-content {
        grid-template-columns: 1fr;
    }
}